/* clinical-trial.css — additive only, reuses second-opinion.css + visa.css + app.css */

.section-wrap {
    padding-block: clamp(36px, 5vw, 64px);
}
.so-pair-row {
    gap: clamp(32px, 4vw, 56px);
}
.gold-rule {
    margin: 14px 0 20px;
}
.hosp-directory-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

/* ── Recruitment steps (simple numbered list, distinct from timeline/zigzag) ── */
.ct-steps {
    display: grid;
    gap: 16px;
}
.ct-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ct-step-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green-deep);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1rem;
}
.ct-step strong {
    display: block;
    font-size: 14.5px;
    color: var(--green-dark);
    margin-bottom: 3px;
}
.ct-step p {
    font-size: 13px;
    color: var(--cream-text);
    margin: 0;
    line-height: 1.5;
}

/* ── Clinical trial data table ── */
.ct-table-wrap {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.ct-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: var(--white);
}
.ct-table th,
.ct-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-cream);
    font-size: 13.5px;
}
.ct-table thead th {
    background: var(--green-deep);
    color: var(--cream);
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
}
.ct-table tbody tr:nth-child(odd) {
    background: var(--cream);
}
.ct-table tbody tr:hover {
    background: rgba(184, 149, 106, 0.08);
}
.ct-trial-name {
    font-weight: 600;
    color: var(--green-dark);
}
.ct-rate {
    color: var(--gold);
    font-weight: 700;
}
.ct-table-note {
    max-width: 1400px;
    margin: 16px auto 0;
    font-size: 12px;
    color: var(--cream-text);
    text-align: center;
}
