.hc-intro-section {
    padding: 10px 0 40px;
    background: #fff;
}

.hc-intro-text {
    max-width: 860px;
}

.hc-intro-text p {
    font-size: .95rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 12px;
}

.hc-intro-text strong { color: #111; }

/* ── Medal buttons grid ─────────────────────────────────────────────── */
.hc-medals-section {
    background: #fff;
    padding: 24px 0 24px;
}

.hc-medals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.hc-medal-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 10%;
    outline: none;
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;
    width: 100%;
    opacity: .75;
    position: relative;
}

.hc-medal-btn img {
    width: 100%;
    height: auto;
    border-radius: 10%;
    display: block;
    transition: transform .25s ease;
}

/* Active / hover state */
.hc-medal-btn:hover {
    opacity: 1;
    transform: translateY(-6px);
}

.hc-medal-btn--active {
    opacity: 1;
    transform: translateY(-6px);
    filter: drop-shadow(0 12px 32px rgba(0,0,0,.22));
}

/* Active ring indicator */
.hc-medal-btn--active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    pointer-events: none;
}

/* Fallback if no image uploaded */
.hc-medal-fallback {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 24px;
    line-height: 1.3;
}

.hc-medal-fallback--gold   { background: radial-gradient(circle at 35% 35%, #ffe066, #c8960c); }
.hc-medal-fallback--silver { background: radial-gradient(circle at 35% 35%, #e8e8e8, #9e9e9e); color: #444; }
.hc-medal-fallback--bronze { background: radial-gradient(circle at 35% 35%, #f0a868, #b5651d); }

/* ── Tab panels ─────────────────────────────────────────────────────── */
.hc-tabs-section {
    background: #fff;
    padding: 0 0 80px;
    border-top: 1px solid #f0f0f0;
}

.hc-tab-panel {
    display: none;
    padding-top: 56px;
    animation: hc-fade-in .3s ease;
}

.hc-tab-panel--active { display: block; }

@keyframes hc-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tab title */
.hc-tab-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Gold / Silver / Bronze accent colours on title */
.hc-tab-title--gold   { color: #b8860b; }
.hc-tab-title--silver { color: #6b7280; }
.hc-tab-title--bronze { color: #b5651d; }

/* Text blocks */
.hc-tab-text {
    max-width: 900px;
    margin-bottom: 36px;
}

.hc-tab-text p {
    font-size: .95rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px;
}

.hc-tab-text--bottom {
    margin-top: 28px;
    margin-bottom: 0;
}

/* ── Coverage table ─────────────────────────────────────────────────── */
.hc-table-wrap {
    max-width: 760px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.hc-coverage-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.hc-coverage-table tr { border-bottom: 1px solid #e8e8e8; }
.hc-coverage-table tr:last-child { border-bottom: none; }

.hc-row-even { background: #f8f8f8; }
.hc-row-odd  { background: #fff; }

.hc-col-component {
    padding: 14px 20px;
    color: #555;
    font-weight: 400;
    width: 70%;
}

.hc-col-period {
    padding: 14px 20px;
    color: #555;
    font-weight: 500;
    width: 30%;
    border-left: 1px solid #e8e8e8;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hc-medals-grid {
        gap: 20px;
        max-width: 480px;
    }

    .hc-tab-title { font-size: 1.6rem; }

    .hc-col-component { width: 60%; }
    .hc-col-period    { width: 40%; }
}

@media (max-width: 480px) {
    .hc-medals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hc-coverage-table { font-size: .82rem; }

    .hc-col-component,
    .hc-col-period { padding: 10px 12px; }
}