/* ── Award Card ── */
    .award-card {
      background: #fff;
      border: 1px solid var(--stone-200);
      border-radius: 4px;
      padding: 40px 36px;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .award-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .award-card.accent-award::before { background: var(--accent); }
    .award-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.09);
      border-color: var(--gold-light);
    }
    .award-card.accent-award:hover { border-color: var(--accent-light); }
    .award-card:hover::before { width: 100%; }

    .award-icon {
      width: 60px; height: 60px;
      background: var(--stone-100);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      transition: background 0.35s;
    }
    .award-card:hover .award-icon { background: var(--gold-light); }
    .award-card.accent-award:hover .award-icon { background: var(--accent-light); }
    .award-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
    .award-card.accent-award .award-icon svg { stroke: var(--accent); }

    .award-year {
      display: inline-block;
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold-dark);
      background: var(--stone-100);
      padding: 4px 14px; border-radius: 30px;
      margin-bottom: 14px;
    }
    .award-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700;
      color: #1A1410;
      margin-bottom: 10px; line-height: 1.35;
    }
    .award-body {
      font-size: 0.88rem; color: var(--stone-600);
      line-height: 1.75;
    }

    /* ── Credential Badge ── */
    .cert-badge {
      background: #fff;
      border: 1.5px solid var(--stone-200);
      border-radius: 4px;
      padding: 28px 24px;
      text-align: center;
      transition: all 0.3s;
    }
    .cert-badge:hover {
      border-color: var(--gold);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .cert-logo {
      width: 64px; height: 64px;
      background: var(--stone-100);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .cert-logo svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .cert-name {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem; font-weight: 700;
      color: #1A1410; margin-bottom: 6px;
    }
    .cert-body { font-size: 0.8rem; color: var(--stone-500); line-height: 1.65; }

    /* ── Timeline ── */
    .milestone-timeline {
      position: relative;
      padding-left: 32px;
    }
    .milestone-timeline::before {
      content: '';
      position: absolute; left: 0; top: 8px; bottom: 8px;
      width: 1.5px;
      background: linear-gradient(to bottom, var(--gold), var(--stone-200));
    }
    .milestone-item {
      position: relative;
      padding: 0 0 36px 24px;
    }
    .milestone-item::before {
      content: '';
      position: absolute; left: -6px; top: 8px;
      width: 13px; height: 13px;
      background: var(--gold);
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px var(--gold);
    }
    .milestone-year {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold-dark);
      margin-bottom: 4px;
    }
    .milestone-text {
      font-size: 0.9rem; color: var(--stone-700); line-height: 1.7;
    }
    .milestone-text strong { color: #1A1410; }

    /* ── Trophy Photo Card ── */
    .trophy-photo-card {
      background: #fff;
      border: 1px solid var(--stone-200);
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.35s ease;
      position: relative;
    }
    .trophy-photo-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .trophy-photo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border-color: var(--gold-light);
    }
    .trophy-photo-card:hover::before { width: 100%; }
    .trophy-photo-img {
      width: 100%;
      height: 340px;
      object-fit: contain;
      background: var(--stone-100);
      display: block;
      padding: 20px;
    }
    .trophy-photo-body {
      padding: 28px 32px 32px;
    }
    .trophy-photo-issuer {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-dark);
      background: var(--stone-100);
      padding: 4px 14px;
      border-radius: 30px;
      margin-bottom: 14px;
    }
    .trophy-photo-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #1A1410;
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .trophy-photo-desc {
      font-size: 0.88rem;
      color: var(--stone-600);
      line-height: 1.75;
      margin: 0;
    }

    @media (max-width: 575px) {
      .award-card { padding: 30px 24px; }
      .trophy-photo-img { height: 260px; }
    }
