:root{
    --bg:#f7f9fc;
    --surface:#fff;
    --surface-alt:#eef3f8;
    --line:#dbe3ec;
    --text:#142033;
    --muted:#5d6d82;
    --brand:#c1121f;
    --dark:#07111f;
    --radius:22px;
    --max:1120px;
    --shadow:0 18px 50px rgba(7,17,31,.12);
}
*{box-sizing:border-box}
body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
}
a{text-decoration:none;color:#0b6bcb}
img{max-width:100%;display:block}
.site-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:10;
}
.brand{font-weight:800;color:var(--text)}
.main-nav{display:flex;gap:18px;flex-wrap:wrap}
.main-nav a{color:var(--text);font-weight:700}
.hero-inner{max-width:900px;margin:auto}
.hero h1{font-size:clamp(38px,6vw,72px);margin:0 0 18px}
.eyebrow{
    display:inline-block;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:999px;
    margin-bottom:18px;
    font-size:13px;
    font-weight:800;
}
.page-shell{
    width:min(var(--max),calc(100% - 32px));
    margin:auto;
    padding:40px 0 70px;
}
.toc,.content-section,.cta{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px;
    margin-bottom:28px;
}
.toc ul{padding-left:20px}
.content-section h2{margin-top:0;font-size:34px}
.content-section h3{margin-top:26px}
figure{
    margin:24px 0;
    border-radius:18px;
    overflow:hidden;
    background:#f1f5f9;
}
figcaption{
    padding:12px 14px;
    font-size:14px;
    color:var(--muted);
}
table{
    width:100%;
    border-collapse:collapse;
    overflow:auto;
    display:block;
}
th,td{
    padding:12px;
    border:1px solid var(--line);
    text-align:left;
}
th{
    background:var(--dark);
    color:#fff;
}
.cta{
    background:linear-gradient(135deg,#07111f,#12365c);
    color:#fff;
}
.button{
    display:inline-block;
    padding:12px 18px;
    background:var(--brand);
    color:#fff;
    border-radius:999px;
    font-weight:800;
    margin-top:10px;
}


@media(max-width:860px){
    .site-header{flex-direction:column;align-items:flex-start;gap:12px}
    .main-nav{gap:12px}
    .hero{min-height:auto;padding:50px 18px}
    .hero h1{font-size:38px}
    .page-shell{width:calc(100% - 20px)}
    .content-section h2{font-size:28px}
}
blockquote{
    margin:24px 0;
    padding:18px 22px;
    border-left:5px solid var(--brand);
    background:#fff5f5;
    border-radius:14px;
    color:var(--text);
}
.content-section p strong{
    color:var(--dark);
}


/* Breadcrumbs for team, group and host-city pages */
.breadcrumbs {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 22px;
    font-size: 14px;
    color: var(--muted);
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs li + li::before {
    content: "›";
    color: #9aa8b8;
    font-weight: 800;
}
.breadcrumbs a {
    color: var(--text);
    font-weight: 800;
}
.breadcrumbs [aria-current="page"] {
    color: var(--brand);
    font-weight: 800;
}
