/* ══ YORUMLAR (MARQUEE) ══ */
.notes-section {
    padding: 120px 0;
    background:white;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
  }
  .notes-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem,4.5vw,4rem);
    color: var(--text); font-weight: 300; margin-bottom: 60px;
  }
  .notes-section h2 em { color: var(--coral); font-style: italic; }
  
  .notes-track {
    display: flex; gap: 28px; width: max-content;
    animation: notesDrift 40s linear infinite;
    padding: 0 5vw; position: relative; z-index: 2;
  }
  .notes-track:hover { animation-play-state: paused; }
  @keyframes notesDrift { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  
  .note-card {
    background: var(--bg2); padding: 34px; width: 380px;
    border-radius: 16px; border-top: 3px solid var(--teal);
    flex-shrink: 0;
    transition: transform .4s ease, box-shadow .4s ease;
    position: relative; z-index: 2;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .note-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
  
  .note-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .note-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal); }
  .note-info { display: flex; flex-direction: column; gap: 4px; }
  .note-author {
    font-family: 'Space Mono', monospace; font-size: .6rem;
    letter-spacing: .2em; color: var(--text); font-weight: 700;
  }
  .note-stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }
  .note-card p { font-size: 1rem; line-height: 1.82; color: var(--muted); font-weight: 300; font-style: italic; }
  
  /* ══ MOBİL UYUMLULUK: YORUMLAR ══ */
@media (max-width: 768px) {
    .notes-section { padding: 60px 0; }
    .notes-section h2 { padding: 0 5vw; font-size: 2.5rem; }
    
    .note-card { 
      min-width: 85vw; /* Kart genişliği telefon ekranının %85'i olsun */
      padding: 24px;
      margin: 0 10px; 
    }
    .note-card p { font-size: 1.1rem; }
  }
/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .notes-track { gap: 16px; padding: 0 4vw; }
  .note-card { min-width: 260px; }
}
/* KÜÇÜK MOBİL */
@media (max-width: 480px) {
  .note-card { min-width: 88vw; padding: 20px; }
  .notes-section h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
}
