:root {
    --innhealth-navy: #18228C;
    --innhealth-blue: #09599A;
    --innhealth-teal: #68DED2;
    --innhealth-yellow: #FFD000;
    --innhealth-rust: #A03622;
    --innhealth-font-heading: 'Source Sans Pro', Arial, sans-serif;
    --innhealth-font-body: 'Roboto', Arial, sans-serif;
}

/* ---------- Session header (Session No. – Name  +  Time) ---------- */
.innhealth-session-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 48px 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--innhealth-teal);
}

.innhealth-session-heading {
    font-family: var(--innhealth-font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--innhealth-navy);
    margin: 0;
}

.innhealth-session-time {
    font-family: var(--innhealth-font-body);
    font-weight: 500;
    font-size: 17px;
    color: var(--innhealth-blue);
    white-space: nowrap;
}

/* ---------- Speaker Grid (listing page) ---------- */
.innhealth-speaker-grid {
    display: grid;
    grid-template-columns: repeat(var(--innhealth-columns, 4), 1fr);
    gap: 32px 24px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .innhealth-speaker-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .innhealth-speaker-grid { grid-template-columns: 1fr; }
}

.innhealth-speaker-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.15s ease;
}

.innhealth-speaker-card:hover {
    transform: translateY(-4px);
}

.innhealth-role-badge {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(70px);
    background: var(--innhealth-teal);
    color: var(--innhealth-navy);
    font-family: var(--innhealth-font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
}

.innhealth-speaker-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
}

.innhealth-speaker-photo img,
.innhealth-speaker-photo-placeholder {
    width: 160px !important;
    height: 160px !important;
    max-width: 160px !important;
    max-height: 160px !important;
}

.innhealth-speaker-photo img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(24, 34, 140, 0.15);
    margin-bottom: 0 !important;
    display: block;
}

.innhealth-speaker-photo-placeholder {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-bottom: 14px;
    background: var(--innhealth-teal);
    color: var(--innhealth-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--innhealth-font-heading);
    font-size: 2.4em;
    font-weight: 700;
}

.innhealth-speaker-name {
    font-family: var(--innhealth-font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--innhealth-blue);
    margin: 8px 0 4px;
}

.innhealth-speaker-designation {
    font-family: var(--innhealth-font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    margin: 0;
}

/* ---------- Single Speaker (bio page) ---------- */
.innhealth-single-speaker-wrap {
    background: var(--innhealth-navy);
    padding: 60px 20px 80px;
}

.innhealth-single-speaker {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.innhealth-single-speaker-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.innhealth-single-speaker-photo img {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
    border: 6px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
    display: block;
}

.innhealth-single-speaker-name {
    font-family: var(--innhealth-font-heading);
    font-weight: 800;
    font-size: 34px;
    color: var(--innhealth-rust);
    margin: 28px 0 0;
}

.innhealth-single-speaker-bio {
    margin-top: 32px;
    font-family: var(--innhealth-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
}

.innhealth-back-link {
    margin-top: 36px;
}

.innhealth-back-link a {
    display: inline-block;
    background: var(--innhealth-rust);
    color: #ffffff;
    font-family: var(--innhealth-font-body);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: background 0.15s ease;
}

.innhealth-back-link a:hover {
    background: #8a2c1c;
}
