/* =========================
   SPEAKING SECTION
   ========================= */

   .speaking {
    background: var(--bg);
    padding: 64px 56px;
  }
  
  /* Keep section visually compact */
  .speaking-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* =========================
     HEADER
     ========================= */
  
  .speaking-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .speaking-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .speaking-header p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
  }
  
  /* =========================
     PINBOARD (HORIZONTAL STRIP)
     ========================= */
  
     .pinboard {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* exactly 5 images in one row */
        gap: 32px;
      
        margin-top: 32px;
      }
  
  
  
  /* Hide scrollbar (optional polish) */
  .pinboard::-webkit-scrollbar {
    height: 8px;
  }
  .pinboard::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.18);
    border-radius: 8px;
  }
  
  /* =========================
     PIN CARD
     ========================= */
  
/* PIN (NO SHADOW HERE) */
.pin {
    background: transparent;
  }
  
/* CARD */
.pin-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
  
    box-shadow: 0 10px 26px rgba(0,0,0,0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  
    display: flex;
    flex-direction: column;
  }
  
  /* IMAGE WRAPPER — THIS IS THE KEY */
  .pin-media {
    border-radius: 14px;
    overflow: hidden;   /* ✅ clips background perfectly */
  }
  
  /* IMAGE */
  .pin-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.35s ease;
  }
  
  /* CAPTION */
  .pin-inner figcaption {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
  }
  
  /* HOVER */

  
  
  /* =========================
     REMOVE TILTS (OPTIONAL)
     ========================= */
  /* Comment these back in ONLY if you really want tilt */
  /*
  .tilt-1 { transform: rotate(-2deg); }
  .tilt-2 { transform: rotate(1.5deg); }
  .tilt-3 { transform: rotate(-1deg); }
  .tilt-4 { transform: rotate(2deg); }
  .tilt-5 { transform: rotate(-1.5deg); }
  */
  
  
  /* =========================
     TILTS
     ========================= */
  
  .tilt-1 { transform: rotate(-2deg); }
  .tilt-2 { transform: rotate(1.5deg); }
  .tilt-3 { transform: rotate(-1deg); }
  .tilt-4 { transform: rotate(2deg); }
  .tilt-5 { transform: rotate(-1.5deg); }
  
  /* HOVER */
  .pin:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.18);
    border-radius: 18px;
  }

  .pin-inner:hover  {
    transform: scale(1.25);
  }
  