  :root {
    --bg: #f5f5f2;
    --surface: #ffffff;
    --border: #e0dfd9;
    --accent: #347cb9;
    --accent-dim: rgba(42, 92, 184, 0.08);
    --accent-glow: rgba(42, 92, 184, 0.15);
    --text-primary: #1a1a24;
    --text-secondary: #9a9aa8;
    --blue-line: linear-gradient(90deg, transparent, #2a5cb8, transparent);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  #organization {padding:1rem 0 3rem; width: 90%; max-width: 850px; margin:0 auto;}

  .header-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.75;
  }

  .header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    line-height: 1.2;
  }

  .divider {
    width: 120px;
    height: 1px;
    background: var(--blue-line);
    margin: 24px auto 0;
  }

  /* Card */
  .card {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    background: #ffffff75;
    border: 1px solid var(--border);
    padding: 2rem 2rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.6s ease both;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--blue-line);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card:hover {
    border-color: rgba(42, 92, 184, 0.25);
    box-shadow: 0 4px 15px 2px rgb(80 132 227 / 17%), 0 1px 8px rgb(60 60 60 / 30%);
  }

  .card:hover::before { opacity: 1; }

  /* President card — featured */
  .card-president {
    border-color: rgba(42, 92, 184, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #90b2ff52 100%);
    padding: 2rem;
  }

  .card-president::before { opacity: 0.5; }
  .card-president:hover::before { opacity: 1; }

  .role {
    font-size: .9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
  }

  .role::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(42, 92, 184, 0.15);
  }

  .name {
    font-weight: 600;
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--text-primary);
    line-height: 1;
  }

  .country {
    font-size: .75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 8px; font-weight: 600;
    text-transform: uppercase;
  }

  /* Grid layouts */
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  /* Committee section */
  .section-block {
    margin-bottom: 3rem;
  }

  .committee-card {
    padding: 2rem;
  }

  .committee-members {
    display: flex;
    gap:3rem;
  }

  .member-row {
    align-items: baseline;
    gap: 16px;
  }

  .member-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .member-name {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600;
    color: var(--text-primary);
  }

  .member-country {
    font-size: .75rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary); font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* Corner decoration */
  .card::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid rgba(42, 92, 184, 0.15);
    border-right: 1px solid rgba(42, 92, 184, 0.15);
    border-radius: 0 0 1px 0;
    transition: border-color 0.3s;
  }

  .card:hover::after {
    border-color: rgba(42, 92, 184, 0.4);
  }

  /* Animations */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.2s; }
  .card:nth-child(3) { animation-delay: 0.3s; }
  .card:nth-child(4) { animation-delay: 0.4s; }

  /* Responsive */
  @media (max-width: 648px) {
    .grid-2 { grid-template-columns: 1fr; }
    .member-row {flex-direction: column; gap: 6px;}
    .committee-members {flex-direction: column; gap:1rem;}
  }



@media screen and (min-width: 768px) and (max-width: 1200px){
  #organization {width: 100%;}
  .card, .card-president {padding: 1.5rem;}
  .committee-members {gap: 2.7rem;}
}

@media screen and (min-width: 649px) and (max-width: 767px){
#organization {width: 100% !important; margin: 2rem auto -2rem;}
.member-row {padding-bottom: .6rem;}
.committee-members {flex-wrap: wrap; gap: 1rem 3rem;}
  }


  @media screen and (min-width: 782px) and (max-width: 959px){
  .name {font-size: 1.6rem;}
  }