/* CSS Reset & Variables */
:root {
    --navy-primary: #101028;
    --navy-hover: #283870;
    --navy-muted: #1F2A44;
    --teal-primary: #0F766E;
    --teal-hover: #115E59;
    --teal-soft: #D1FAE5;
    --bg-page: #eff4f8;
    --bg-card: #FFFFFF;
    --border-light: #E2E8F0;
    --text-primary: #0B1220;
    --text-secondary: #475569;
    --text-inverse: #FFFFFF;
    /* Legacy aliases */
    --primary: var(--navy-primary);
    --primary-hover: var(--navy-hover);
    --secondary: var(--border-light);
    --dark: var(--navy-primary);
    --slate: var(--navy-muted);
    --light: var(--bg-page);
    --white: var(--bg-card);
    --gray: var(--text-secondary);
    --text-main: var(--text-primary);
    --text-muted: var(--text-secondary);
    --font-family: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.3s ease;
	--side-spacing:10%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 3rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { font-size: 1.0rem; margin-bottom: 1rem; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white p { color: var(--white); }
.text-sm { font-size: 0.875rem; }
.text-gray { color: var(--gray); }

.tagline {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: var(--teal-primary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.kicker { color: #e1a332; font-size: 1.25rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light { background-color: var(--light); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark); }
.bg-brand { background-color: var(--primary); }
.bg-slate { background-color: var(--slate); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--teal-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--teal-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-teal {
    background-color: transparent;
    color: var(--teal-primary);
    border-color: var(--teal-primary);
}

.btn-outline-teal:hover {
    background-color: var(--teal-hover);
    color: var(--white);
}


.btn-invert {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-invert:hover {
    background-color: #27283d;
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}
.btn-light:hover {
    background-color: var(--light);
}

.actions {
    display: flex;
    gap: 1rem;
    justify-content: left;
    flex-wrap: wrap;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    padding: 1rem var(--side-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo strong {
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
}

.logo span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li:nth-last-child(2) {
    margin-right: calc(1rem - 2rem);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
}

.hero .container {
    margin: 0;
    padding: 0 var(--side-spacing);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-inverse);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.3rem;
    color: #E5E7EB;
    margin-bottom: 1.5rem;
    left: 2.3rem;
}

.hero-sub {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-inverse);
    margin-bottom: 2rem;
}

.hero-date-location {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-pill {
    display: inline-block;
    background: #27283d;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.3rem 1.0rem;
    border-radius: 999px;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}
.hero-meta span{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 18px;
  border-radius:14px;
  background:rgba(104,111,155,.26);
  border:1px solid rgba(255,255,255,.10);
  color:#E5E7EB;
  font-size:18px;
  font-weight:500;
}


.sponsor-pill {
    display: inline-block;
    background: #27283d80;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.3rem 1.0rem;
    border-radius: 10px;
    border:1px solid var(--gray);
    width: 300px;
}

.sponsor-pill-number {
    font-size: 1.25rem;
    font-weight:bold;
}

.faculty-pill {
    display: inline-block;
    background: #27283d80;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.3rem 1.0rem;
    border-radius: 10px;
    border:1px solid var(--gray);
    width: 200px;
}

.faculty-pill-number {
    font-size: 1.25rem;
    font-weight:bold;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section headers */
.section-header {
    max-width: 1000px;
}

/* Accountability footer card */
.accountability-footer {
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--secondary);
    width: 100%;
    text-align: left;
}

.accountability-footer p {
    color: var(--gray);
    font-size: 0.95rem;
}

.accountability-footer .actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Accountability section */
.accountability-container {
    margin: 0;
    padding-left: var(--side-spacing);
    padding-right: var(--side-spacing);
    max-width: none;
    color:var(--dark);
}

/* final section */
.final-container {
    margin: 0;
    padding-left: var(--side-spacing);
    padding-right: var(--side-spacing);
    color:#fff;
}

.final-container p {
    color:#fff;
}

.final-container h2 {
    color:#fff;
}


/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--secondary);
}

.card-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
}

.card-dark h3 {
    color: var(--white);
    margin-bottom: 1rem;
}



.icon-card {
    text-align: left;
}

.icon-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.icon-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.icon-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-card h3 {
    color: var(--primary);
}

/* Venue cards 3-column grid (venue.php) */
.venue-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Signature formats 3-column grid (index.php) */
.formats-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Why OVBC + Signature Formats combined section */
.why-formats-container {
    margin: 0;
    padding-left: var(--side-spacing);
    padding-right: var(--side-spacing);
    max-width: none;
}

.why-formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.why-ovbc-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 2rem;
}

.why-ovbc-card h2 {
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
}

.why-ovbc-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}


.why-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.why-item:last-child {
    border-bottom: none;
}

.why-item h4 {
    color: var(--text-inverse);
    margin-bottom: 0.4rem;
}

.why-item p {
    color: #fcfcfc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.why-ovbc-footer {
    color: #fcfcfc;
    font-size: 0.9rem;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.formats-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 2rem;
}

.formats-card h2 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

.formats-inner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.formats-inner-grid .feature-card {
    border-radius: 12px;
    padding: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.formats-inner-grid .feature-card h3 {
    color: var(--navy-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.formats-inner-grid .feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* List Items */
.list-item h4 {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Audience tags — inside dark card */
.audience-tags {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex: 1;
    margin-bottom: 0;
}

.audience-tag {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    color: var(--text-inverse);
    margin-bottom: 0;
}

/* Sponsor feature tags */
.sponsor-tag {
    display: inline-block;
    background: #00000009;
    border:1px solid #999;
    border-radius: 10px;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
	width:100%;
}

/* Faculty filter bar */
.faculty-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.faculty-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    border: 2px solid var(--teal-primary);
    transition: var(--transition);
}

.faculty-filter-active {
    background: var(--teal-primary);
    color: #fff;
}

.faculty-filter-ghost {
    background: transparent;
	border: 2px solid var(--navy-primary);
    color: var(--navy-primary);
}

.faculty-filter-ghost:hover {
    background: var(--teal-primary);
	border: 2px solid var(--teal-primary);
    color: #fff;
}

/* Faculty Grid */
.faculty-grid {
    align-items: stretch;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    background: #D1FAE5;
    color: #115E59;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ── Registration Form ───────────────────────────────── */

#regForm {
    max-width: 820px;
    margin: 2rem auto 0;
}

.gb-form .registration-form-container {
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    padding: 2.5rem;
}

/* Two-column rows */
.gb-form .row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.gb-form .col-md-6,
.gb-form .name-input,
.gb-form .oname-input,
.gb-form .otype-input {
    flex: 1;
    min-width: 0;
}

.gb-form .col-md-12 {
    flex: 0 0 100%;
    width: 100%;
}

/* Labels */
.gb-form .label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

/* Inputs and selects */
.gb-form .form-control {
    display: block;
    width: 100%;
    height: 52px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.gb-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 53, 117, 0.1);
}

.gb-form select.form-control {
    appearance: auto;
    cursor: pointer;
}

.gb-form input[disabled].form-control {
    background: #f0f0f0;
    cursor: not-allowed;
    color: #aaa;
}

/* Submit / Pay button */
.gb-form .btn.button-register {
    display: inline-block;
    background-image: linear-gradient(-90deg, #2C3575, #5769e8);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gb-form .btn.button-register:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(44, 53, 117, 0.35);
}

/* Form section header spacing */
.gb-form .form-section-header {
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
    color: var(--dark);
}

/* Total row */
.gb-form table {
    width: 100%;
    font-size: 0.9rem;
}

.gb-form table td {
    padding: 0.3rem 0;
}

/* Mobile */
@media (max-width: 768px) {
    .gb-form .row {
        flex-direction: column;
        gap: 0;
    }

    .gb-form .registration-form-container {
        padding: 1.5rem;
    }
}

/* ── End Registration Form ────────────────────────────── */

/* ── Agenda ──────────────────────────────────────────── */

.agenda-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.agenda-tab-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--secondary);
    border-radius: 2rem;
    background: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.agenda-tab-btn.active,
.agenda-tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.schedule-section-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--secondary);
}

.schedule-track-header {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 1.25rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.schedule-row {
    display: flex;
    gap: 1.5rem;
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--secondary);
    align-items: flex-start;
}

.schedule-row.schedule-break {
    background: var(--bg-light, #f8f9fa);
}

.schedule-time {
    min-width: 150px;
    flex-shrink: 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-top: 0.15rem;
}

.schedule-content {
    flex: 1;
}

.schedule-track {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.schedule-title {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.schedule-speakers {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.concurrent-section {
    margin-top: 1.25rem;
}

.concurrent-header {
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr);
    gap: 1rem;
    padding: 0.75rem;
    border-bottom: 2px solid var(--primary);
    align-items: start;
}

.concurrent-track-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.concurrent-row {
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr);
    gap: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--secondary);
    align-items: start;
}

.concurrent-col .schedule-title {
    font-size: 0.85rem;
}

.concurrent-col .schedule-speakers {
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .concurrent-header,
    .concurrent-row {
        grid-template-columns: 1fr;
    }

    .concurrent-header .schedule-time {
        display: none;
    }

    .schedule-time {
        min-width: 90px;
    }
}

/* ── End Agenda ──────────────────────────────────────── */

/* Register card */
.reg-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.reg-card p {
    font-size: 1rem;
    font-weight: normal;
}

/* Register info table */
.reg-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--light);
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 0.75rem 0;
    border: 1px solid var(--secondary);
	font-size: 0.8rem;
}

.reg-info-table td {
    padding: 0.5rem 0.75rem;
}

/* Stay section: text left, cards right */
.stay-inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
	padding:50px;
	border-radius: 20px;
}

.stay-text {
    flex-shrink: 0;
}

.stay-cards {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.stay-cards .faculty-card {
    flex: 1;
}

@media (max-width: 768px) {
    .stay-inner {
        flex-direction: column;
    }

    .stay-cards {
        flex-direction: column;
    }
}

/* Gray square placeholder at top of cards */
.card-img-placeholder {
    width: calc(100% + 3rem);
    aspect-ratio: 1.5;
    background-color: #e0e0e0;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
}

.time-cell{
	font-size:14px;
}
.title-cell{
	font-size:14px;
}
.talk-title{
	font-size:14px;
}
.speaker-cell{
	font-size:14px;
}


.gb-schedules{
	margin-top:70px
}

.scheduleTab1_1 {
	width: 100%; 
}

.scheduleTab1_2 {
	display: none;
}

@media screen and (max-width: 960px) {

.scheduleTab1_1 { 
	width: 100%;
}
.scheduleTab1_2 { 
	display: none;
}

.gb-schedules{
	margin-top:0px
}

}

.hoverlink{
	color:#4472c4;
	text-decoration:underline;
}

/* Faculty card — vertical layout, equal height */
.faculty-card {
    display: flex;
    flex-direction: column;
}

.room-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faculty-card:has(.room-avatar) {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.faculty-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    width: 100%;
}

/* Subgrid: align faculty-name, faculty-title, faculty-desc, and button
   across all cards in each row of the faculty grid */
.faculty-grid > .faculty-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    align-content: start;
}

.faculty-grid > .faculty-card > .faculty-member {
    display: contents;
}

.faculty-grid > .faculty-card .btn {
    align-self: end;
    margin-top: auto;
}

.faculty-grid .feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card .faculty-member {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 1rem;
    align-items: start;
}

.faculty-grid .feature-card .faculty-member {
    flex: 1;
    grid-template-rows: auto auto auto 1fr;
}

.feature-card .faculty-member .avatar {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: var(--navy-primary);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 0;
}

.feature-card .faculty-member h4 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

.feature-card .faculty-member p {
    grid-column: 1 / -1;
    margin: 0.25rem 0 0;
}

.feature-card .faculty-member .badge {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.faculty-grid .feature-card .faculty-member .badge {
    align-self: end;
}

.faculty-member .avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.faculty-member .faculty-avatar {
    width: 80%;
	aspect-ratio: 1;
    flex-shrink: 0;
    background-color: var(--secondary);
    border-radius: 10px;
    margin: 1rem auto;
}

.faculty-name {
	font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-primary);
}

.faculty-title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.faculty-label {
    font-size: 0.8rem;
	font-weight:bold;
	width:100%;
	text-align: center;
	text-transform: uppercase;
    color: var(--teal-primary);
    margin-bottom: 0.75rem;
}

.faculty-desc {
    font-size: 0.8rem;
    color: var(--navy-primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.faculty-bio-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-primary);
    text-decoration: none;
    margin-top: auto;
}

.faculty-bio-link:hover {
    color: var(--teal-hover);
    text-decoration: underline;
}

/* Split Section */
.split-section {
    display: flex;
    padding: 0px 0px 50px 0px;
}

.split-half {
    flex: 1;
    padding: 5rem 3rem;
}

.split-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    color: var(--white);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.footer .logo strong {
    color: var(--white);
}

.footer .logo span {
    color: var(--gray);
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}



.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Faculty bio panel */
.faculty-card {
    position: relative;
}

.faculty-bio {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
}

.faculty-bio.bio-open {
    display: block;
}

.faculty-bio-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text-secondary);
    padding: 0;
}

.faculty-bio-close:hover {
    color: var(--navy-primary);
}

.faculty-bio p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    padding-right: 1rem;
}

/* Review text box */
.review-text {
    background: var(--white);
    border: 1px solid #c8d5e2;
    border-radius: var(--radius);
    padding: 20px;
}

.review-text .btn {
    margin-right: 0.75rem;
    margin-top: 0.75rem;
    display: inline-block;
}

/* Pendry section layout */
.pendry-layout {
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.pendry-text {
    flex: 1;
    min-width: 0;
}

.pendry-image-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    width: 40%;
}

.pendry-exterior-img {
    width: 100%;
    border-radius: 1rem;
    display: block;
    object-fit: cover;
}

/* Media Queries (Mobile Responsiveness) */

/* Tablet: 768px–1024px */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .hero .container {
        padding: 0 2rem;
    }

    .accountability-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .why-formats-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .why-formats-grid {
        grid-template-columns: 1fr;
    }

    .formats-grid-3col {
        grid-template-columns: 1fr;
    }

    .venue-cards-grid {
        grid-template-columns: 1fr;
    }

    .formats-inner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-5 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-footer {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
    .audience-tags {
        gap: 0.6rem;
    }

    /* Pendry layout: stack image below text */
    .pendry-layout {
        flex-direction: column;
    }

    .pendry-image-wrap {
        width: 100%;
    }

    .pendry-exterior-img {
        width:100%;
    }

    /* Nav */
    .nav-container {
        padding: 1rem 1.25rem;
    }

    .logo img {
        width: 200px !important;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .nav-links li:nth-last-child(2) {
        margin-right: 0;
    }

    .nav-links .btn {
        display: inline-block;
        margin-top: 0.25rem;
    }

    /* Hamburger animation */
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero {
        padding: 3rem 0;
        background-size: cover;
    }

    .hero .container {
        padding: 0 1.25rem;
    }

    h2 { font-size: 1.5rem; }
    h3 { font-size: 0.95rem; }
    h4 { font-size: 0.825rem; }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-date-location {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
	


    /* Sections: reset heavy padding */
    .accountability-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .why-formats-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Grids: single column */
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-5 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Why + Formats combined */
    .why-formats-grid {
        grid-template-columns: 1fr;
    }

    .formats-grid-3col {
        grid-template-columns: 1fr;
    }

    .venue-cards-grid {
        grid-template-columns: 1fr;
    }

    .formats-inner-grid {
        grid-template-columns: 1fr;
    }

    /* Faculty */
    .faculty-grid {
        grid-template-columns: 1fr;
    }

    /* Section header max-width: full on mobile */
    .section-header {
        max-width: 100%;
    }

    /* Tagline pill */
    .tagline {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }

    /* Buttons: full width in action groups */
    .actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer .logo {
        justify-content: center;
    }

    /* Final CTA */
    .final-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
    .logo img {
        width: 160px !important;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .why-ovbc-card,
    .formats-card {
        padding: 1.5rem 1.25rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
}

/* Credit designation: stack images below text on mobile */
@media (max-width: 768px) {
    .credit-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .credit-logos {
        align-items: center !important;
        width: 100%;
        flex-direction: row !important;
        justify-content: center;
        gap: 1.5rem !important;
        margin-top: 1.5rem;
    }

    .credit-logos img {
        width: 40vw !important;
        max-width: 180px;
    }
}
