:root {
    --smc-blue: #013050;
    --smc-blue-2: #0b4f80;
    --smc-accent: #6f5cff;
    --smc-teal: #0f8b8d;
    --smc-sky: #2b7fff;
    --smc-gold: #8f7dff;
    --smc-bg: #f3f6fa;
    --smc-card: #ffffff;
    --smc-text: #1a1f2b;
    --smc-muted: #4d5b74;
    --smc-border: #d8deef;
    --smc-purple: #5748d6;
    --smc-surface: #ffffff;
    --smc-shadow: 0 14px 34px rgba(17, 34, 68, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--smc-text);
    background:
        radial-gradient(circle at top left, rgba(111, 92, 255, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(43, 127, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #eef3ff 0%, #f9fbff 32%, #ffffff 100%);
    line-height: 1.65;
}

a {
    color: var(--smc-blue-2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--smc-border);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
}

.logo-left img {
    width: 320px;
    max-width: 100%;
    display: block;
}

.main-nav {
    background: var(--smc-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 2px solid var(--smc-accent);
}

.nav-wrap {
    position: relative;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav li {
    flex: 1 1 auto;
}

.main-nav a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.85rem 0.65rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav li:last-child a {
    border-right: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.main-nav a.active {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 -3px 0 0 var(--smc-accent);
}

.home-nav-section {
    background: rgba(21, 55, 111, 0.48);
    border-bottom: 2px solid var(--smc-accent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(9, 26, 61, 0.16);
}

.home-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-nav-item {
    position: relative;
}

.home-nav a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.72rem 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.home-nav li:last-child a {
    border-right: 0;
}

.home-nav a:hover,
.home-nav a.active {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
}

.home-nav-item.has-children > a::after {
    content: " ▾";
    font-size: 0.75em;
}

.home-subnav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(15, 44, 92, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: none;
    z-index: 20;
    box-shadow: 0 12px 30px rgba(9, 26, 61, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-subnav a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
    padding: 0.58rem 0.7rem;
    font-size: 0.84rem;
}

.home-subnav li:last-child a {
    border-bottom: 0;
}

.home-nav-item.has-children:hover .home-subnav,
.home-nav-item.has-children:focus-within .home-subnav {
    display: block;
}

.home-subnav[hidden] {
    display: none !important;
}

.nav-toggle {
    display: none;
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    padding: 0.8rem 0;
}

.hero {
    background: url("/assets/img/hero-bg.svg") center/cover no-repeat;
    min-height: 360px;
}

.hero-home {
    position: relative;
    min-height: 410px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: city-rotate 18s infinite;
}

.hero-slide-1 {
    background-image: url("/assets/img/home/city-1.jpg");
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url("/assets/img/home/city-2.jpg");
    animation-delay: 6s;
}

.hero-slide-3 {
    background-image: url("/assets/img/home/city-3.jpg");
    animation-delay: 12s;
}

@keyframes city-rotate {
    0% { opacity: 0; }
    8% { opacity: 1; }
    30% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(1, 48, 80, 0.9) 0%, rgba(1, 48, 80, 0.72) 55%, rgba(1, 48, 80, 0.48) 100%);
    min-height: 360px;
    display: flex;
    align-items: center;
}

.hero-overlay-home {
    position: relative;
    z-index: 1;
    min-height: 410px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(6, 24, 58, 0.84) 0%, rgba(18, 57, 110, 0.66) 55%, rgba(87, 72, 214, 0.38) 100%);
}

.hero-content {
    padding: 3.25rem 0;
    color: #fff;
    text-align: center;
}

.hero-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
    padding-top: 0;
}

.hero-subpage .hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3.9rem;
}

.hero-logo-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.hero-logo-card img {
    display: block;
    width: 100%;
    height: auto;
}

.city-indicator {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    color: #eaf5ff;
    font-size: 0.95rem;
    padding-bottom: 1rem;
}

.city-indicator strong {
    color: #fff;
}

.eyebrow {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    text-transform: uppercase;
    opacity: 0.95;
}

.year-focus {
    color: #ffd98b;
    font-weight: 800;
    margin-right: 0.2rem;
}

.hero h1 {
    margin: 0.4rem 0 0;
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    line-height: 1.15;
}

.subtitle {
    margin: 0.55rem 0 0;
    font-size: 1.08rem;
    color: #e2edf8;
}

.hero-meta {
    margin: 0.5rem 0 0;
    color: #f4f9ff;
    font-size: 1.03rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-meta-icon {
    margin-right: 0.35rem;
}

.hero-emphasis-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 780px;
}

.hero-emphasis-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 14, 34, 0.24);
}

.hero-emphasis-label {
    margin: 0;
    color: #35506c;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.hero-emphasis-value {
    margin: 0.2rem 0 0;
    color: #072f52;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.deadline-alert {
    margin: 0.95rem 0 0;
    color: #ffd98b;
    padding: 0;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 0.72rem 1.08rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(14, 33, 76, 0.08);
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--smc-accent) 0%, var(--smc-purple) 100%);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6653ff 0%, #4d3ed1 100%);
}

.btn-light {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--smc-blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section {
    padding: 3rem 0;
}

.section h2 {
    margin: 0 0 0.9rem;
    color: var(--smc-blue);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    letter-spacing: -0.01em;
}

.section h3 {
    margin: 0 0 0.45rem;
    color: var(--smc-blue-2);
    font-size: 1.2rem;
}

.section p {
    margin: 0.52rem 0;
}

.section-alt {
    background: linear-gradient(180deg, #f6f8ff 0%, #eef4ff 100%);
    border-top: 1px solid var(--smc-border);
    border-bottom: 1px solid var(--smc-border);
}

.page-inner .section-alt {
    background: #fff;
    border-top: 0;
    border-bottom: 0;
}

.page-inner .section {
    padding: 2rem 0;
}

.page-inner .section h2 {
    margin-bottom: 0.6rem;
}

.page-inner .info-pills {
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.page-inner .pill-icon {
    display: none;
}

.page-inner .pill-card {
    background: #fff;
    color: var(--smc-text);
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--smc-border);
    border-radius: 0;
    padding: 0.15rem 0 0.75rem;
}

.page-inner .pill-card h3 {
    color: var(--smc-blue);
}

.page-inner .pill-card p {
    color: #42556f;
}

.home-centered {
    text-align: center;
}

.home-section {
    width: min(900px, 100%);
    margin: 0 auto;
}

.home-conference-section {
    text-align: left;
}

.home-section-wide {
    width: min(1100px, 100%);
    padding: 0;
}

.conference-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2.2rem;
    align-items: start;
}

.conference-two-col > div {
    border-top: 1px solid var(--smc-border);
    padding-top: 1rem;
}

.conference-two-col h3 {
    margin-top: 0;
}

.clean-list-wide {
    max-width: 980px;
}

.objectives-grid-refined {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-top: 1rem;
}

.objective-item {
    padding: 1rem 0 0.4rem;
    border-top: 1px solid var(--smc-border);
}

.objective-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    line-height: 1.35;
}

.objective-item p {
    margin: 0;
    color: #43556e;
}

.objective-item-full {
    grid-column: 1 / -1;
}

.home-contact-panel {
    border-top: 0;
    padding-top: 1.4rem;
}

.home-section p {
    margin: 0.6rem 0;
}

.clean-list {
    margin: 0.8rem auto 0;
    padding-left: 1.2rem;
    text-align: left;
    width: min(760px, 100%);
}

.clean-list li {
    margin: 0.35rem 0;
}

.supporter-logos {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.supporter-logo-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-logos img {
    width: min(360px, 100%);
    height: auto;
    display: block;
}

.supporter-logos-compact img {
    width: min(220px, 100%);
}

.home-organizers-footer {
    border-top: 1px solid var(--smc-border);
    background: linear-gradient(180deg, #fbfcff 0%, #f2f6ff 100%);
    padding: 1.2rem 0 1.4rem;
}

.home-organizers-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.home-cta-center {
    justify-content: center;
}

.home-deadline-band {
    background: linear-gradient(90deg, #0b4f80 0%, #0f8b8d 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.deadline-band-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    padding: 0.75rem 0;
    font-size: 0.92rem;
}

.deadline-band-content p {
    margin: 0;
}

.info-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.pill-card {
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: 0 6px 16px rgba(8, 35, 64, 0.2);
}

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pill-kicker {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.pill-card h3 {
    margin: 0.2rem 0 0.35rem;
    color: #fff;
    font-size: 1.08rem;
}

.pill-card p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.95);
}

.pill-card-blue {
    background: linear-gradient(135deg, #0b4f80 0%, #2b7fff 100%);
}

.pill-card-orange {
    background: linear-gradient(135deg, #d86333 0%, #ef9d32 100%);
}

.pill-card-teal {
    background: linear-gradient(135deg, #0e6d7c 0%, #15a5a8 100%);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #eaf3fd;
    font-size: 0.9rem;
    vertical-align: middle;
}

.home-cta-panel {
    border-left-color: var(--smc-sky);
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.color-panel {
    border-left-color: var(--smc-teal);
    background: linear-gradient(180deg, #f7feff 0%, #ffffff 100%);
}

.color-panel-2 {
    border-left-color: var(--smc-gold);
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.timeline-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-item {
    background: #fff;
    border: 1px solid var(--smc-border);
    border-top: 4px solid var(--smc-sky);
    border-radius: 8px;
    padding: 1rem;
}

.timeline-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.03rem;
}

.timeline-item p {
    margin: 0;
    color: #44556f;
}

.topic-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.topic-chip {
    background: #fff;
    border: 1px solid #cfe1f0;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    color: #1f4c72;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.sponsor-strip {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.sponsor-card {
    background: #fff;
    border: 1px solid var(--smc-border);
    border-radius: 10px;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-card img {
    max-width: min(100%, 420px);
    height: auto;
    display: block;
}

.cta-inline {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.text-link {
    font-weight: 700;
    color: var(--smc-blue);
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.card,
.content-block {
    background: var(--smc-card);
    border: 1px solid var(--smc-border);
    border-left: 0;
    border-radius: 0;
    padding: 1rem 0;
    margin-top: 0.9rem;
    box-shadow: none;
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--smc-border);
    border-left: 0;
}

.page-inner .card,
.page-inner .content-block {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.85rem 0;
    margin-top: 0.65rem;
    box-shadow: none;
    border-bottom: 1px solid var(--smc-border);
}

.page-inner .grid-two {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.page-inner .member-grid {
    gap: 0.65rem;
}

.page-inner .member-card {
    background: transparent;
    border: 0;
    border-bottom: 1px dashed var(--smc-border);
    border-radius: 0;
    box-shadow: none;
    padding: 0.65rem 0;
    margin: 0;
}

.cfp-page {
    max-width: 980px;
}

.cfp-lead {
    color: #35506d;
    margin-bottom: 1rem;
}

.cfp-block {
    border-top: 0;
    padding-top: 0.85rem;
    margin-top: 0.9rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.9rem 0;
    box-shadow: none;
    border-bottom: 1px solid var(--smc-border);
}

.cfp-block h3 {
    color: var(--smc-blue);
    font-size: 1.18rem;
    margin-bottom: 0.45rem;
}

.cfp-note {
    margin-top: 0.6rem;
    color: #5a6b82;
    font-size: 0.9rem;
}

.venue-image-wrap {
    border: 1px solid var(--smc-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.venue-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.airport-image-wrap {
    max-width: 520px;
}

.airport-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.manual-carousel {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 0.75rem;
    align-items: center;
}

.manual-carousel-viewport {
    overflow: hidden;
    border: 1px solid var(--smc-border);
    border-radius: 8px;
    background: #fff;
}

.manual-carousel-track {
    display: flex;
    transition: transform 0.35s ease;
}

.manual-carousel-track img {
    width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--smc-border);
    background: #fff;
    color: var(--smc-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.carousel-btn:hover {
    background: #f4f8fc;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hotel-card {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--smc-border);
}

.hotel-card img {
    width: 100%;
    aspect-ratio: 14 / 9;
    object-fit: cover;
    display: block;
}

.hotel-card h4 {
    margin: 0.6rem 0.7rem 0.2rem;
    color: var(--smc-blue);
    font-size: 1rem;
}

.hotel-card p {
    margin: 0.28rem 0.7rem 0.65rem;
}

.chair-card {
    border-left-color: var(--smc-accent);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 162px;
    height: 162px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d9e0ea;
    box-shadow: 0 6px 14px rgba(1, 48, 80, 0.16);
    flex: 0 0 auto;
    background: #fff;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(140deg, var(--smc-blue-2), #195f93);
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.member-card {
    background: #fff;
    border: 1px solid var(--smc-border);
    border-radius: 6px;
    padding: 1rem;
    border-top: 3px solid var(--smc-blue-2);
    box-shadow: 0 4px 10px rgba(5, 36, 68, 0.07);
}

.profile-avatar-sm {
    width: 124px;
    height: 124px;
    margin-bottom: 0.75rem;
}

.member-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.06rem;
}

.member-card p {
    margin: 0.28rem 0;
    color: #3f4f68;
}

.content-block ul {
    margin: 0;
    padding-left: 1.2rem;
}

.content-block li {
    margin: 0.24rem 0;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--smc-border);
}

.map-embed {
    border: 1px solid var(--smc-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
    background: #fff;
}

thead th {
    text-align: left;
    background: var(--smc-blue);
    color: #fff;
    padding: 0.85rem;
    font-size: 0.92rem;
}

tbody td {
    padding: 0.82rem 0.85rem;
    border-top: 1px solid #e4eaf2;
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background: #f7f9fc;
}

.site-footer {
    margin-top: 0.7rem;
    background: rgba(21, 55, 111, 0.48);
    border-top: 2px solid var(--smc-accent);
    color: #d9e7f7;
    padding: 0;
    font-size: 0.9rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.72rem 0;
    min-height: 48px;
}

.site-footer a {
    color: #fff;
}

.divider {
    margin: 0 0.5rem;
    opacity: 0.75;
}

@media (max-width: 900px) {
    .grid-two {
        grid-template-columns: 1fr;
    }

    .info-pills,
    .timeline-list,
    .home-intro-grid {
        grid-template-columns: 1fr;
    }

    .home-editorial-grid,
    .conference-two-col {
        grid-template-columns: 1fr;
    }

    .objectives-grid-refined {
        grid-template-columns: 1fr;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .manual-carousel {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .topic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .supporter-logos {
        grid-template-columns: 1fr;
    }

    .home-organizers-footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-home-layout {
        grid-template-columns: 1fr;
    }

    .home-nav > ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-logo-card {
        max-width: 420px;
    }

    .member-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0.55rem 0;
    }

    .logo-left img {
        width: 250px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }

    .main-nav ul.is-open {
        display: flex;
    }

    .main-nav a {
        text-align: left;
        padding: 0.72rem 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        font-size: 0.88rem;
    }

    .home-nav > ul {
        grid-template-columns: 1fr 1fr;
    }

    .home-nav a {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .home-subnav {
        position: static;
        min-width: 0;
        border: 0;
        background: rgba(4, 25, 42, 0.28);
    }

    .home-nav-item.has-children:hover .home-subnav,
    .home-nav-item.has-children:focus-within .home-subnav {
        display: none;
    }

    .home-nav-item.has-children.is-open .home-subnav {
        display: block;
    }

    .home-subnav a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-left: 1rem;
    }

    .member-grid {
        grid-template-columns: 1fr;
    }

    .topic-grid {
        grid-template-columns: 1fr;
    }

    .profile-head {
        align-items: flex-start;
    }

    .profile-avatar {
        width: 132px;
        height: 132px;
    }

    .hero,
    .hero-overlay {
        min-height: 300px;
    }

    .hero-home,
    .hero-overlay-home {
        min-height: 380px;
    }

    .hero-content {
        padding: 2.1rem 0;
    }

    .subtitle {
        font-size: 0.98rem;
    }

    .hero-emphasis-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 0;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}
