:root {
--white:      #ffffff;
--off-white:  #f6f7f5;
--light:      #e4e8e2;
--mid:        #9aaa96;
--text:       #1a2018;
--text-light: #5a6858;
--accent:     #1e4d2b;
--accent-mid: #2d6e3e;
--gold:       #b8943a;
--gold-light: #d4ae5c;
--nav-h:      64px;
} *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
font-family: 'DM Sans', sans-serif;
color: var(--text);
background: var(--white);
font-weight: 300;
line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }  #navbar {
position: fixed; top: 0; left: 0; right: 0;
height: var(--nav-h); z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 0 20px;
transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
background: rgba(255,255,255,0.97);
box-shadow: 0 1px 20px rgba(0,0,0,0.08);
backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
width: 38px; height: 38px; object-fit: cover; border-radius: 50%;
border: 1.5px solid rgba(255,255,255,0.5); transition: border-color .3s;
}
#navbar.scrolled .nav-logo img { border-color: rgba(30,77,43,0.3); }
.nav-logo-text {
font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600;
color: white; line-height: 1.15; text-shadow: 0 1px 4px rgba(0,0,0,0.3);
transition: color .3s, text-shadow .3s;
}
.nav-logo-sub {
display: block; font-family: 'DM Sans', sans-serif;
font-size: 8px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
color: rgba(255,255,255,0.75); transition: color .3s;
}
#navbar.scrolled .nav-logo-text { color: var(--text); text-shadow: none; }
#navbar.scrolled .nav-logo-sub  { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; gap: 3px; }
.lang-switch button {
background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
cursor: pointer; color: rgba(255,255,255,0.85);
font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
letter-spacing: .1em; text-transform: uppercase;
padding: 5px 9px; border-radius: 2px; transition: all .2s;
}
.lang-switch button.active { background: var(--gold); color: white; border-color: var(--gold); }
#navbar.scrolled .lang-switch button { background: var(--off-white); border-color: var(--light); color: var(--text-light); }
#navbar.scrolled .lang-switch button.active { background: var(--accent); color: white; border-color: var(--accent); }
.nav-hamburger {
display: flex; flex-direction: column; gap: 5px;
cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
display: block; width: 22px; height: 2px; background: white;
border-radius: 2px; transition: background .3s, transform .3s, opacity .3s;
}
#navbar.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links-desktop { display: none; gap: 26px; list-style: none; }
.nav-links-desktop a {
font-size: 11px; font-weight: 400; letter-spacing: .13em; text-transform: uppercase;
color: rgba(255,255,255,0.8); text-decoration: none; transition: color .2s;
text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.nav-links-desktop a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links-desktop a { color: var(--text-light); text-shadow: none; }
#navbar.scrolled .nav-links-desktop a:hover { color: var(--accent); }
.mobile-menu {
display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
background: white; z-index: 190; flex-direction: column;
border-bottom: 1px solid var(--light); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
padding: 16px 24px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
color: var(--text); text-decoration: none; border-bottom: 1px solid var(--light);
transition: background .15s;
}
.mobile-menu a:hover { background: var(--off-white); color: var(--accent); }
@media(min-width: 768px) {
.nav-links-desktop { display: flex; }
.nav-hamburger { display: none; }
#navbar { padding: 0 40px; }
} .hero {
height: 100svh; min-height: 500px;
position: relative; overflow: hidden;
}
.carousel-slide {
position: absolute; inset: 0;
opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
position: absolute; inset: -20%;
background-size: cover; background-position: center;
will-change: transform;
}
.slide-dim {
position: absolute; inset: 0;
background: linear-gradient(to bottom, rgba(10,22,14,0.35) 0%, rgba(10,22,14,0.15) 35%, rgba(10,22,14,0.72) 100%);
}
.hero-content {
position: absolute; inset: 0;
display: flex; flex-direction: column; justify-content: flex-end;
padding: 0 24px 72px; z-index: 2;
}
.hero-eyebrow {
font-size: 10px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
color: var(--gold-light); margin-bottom: 14px;
display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-light); }
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(44px, 10vw, 86px); font-weight: 300; line-height: 1.0;
color: white; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title .u24-tag {
font-family: 'DM Sans', sans-serif; font-size: .32em; font-weight: 500;
letter-spacing: .18em; background: var(--gold); color: white;
padding: 4px 10px; border-radius: 3px; vertical-align: middle;
margin-left: 6px; position: relative; top: -6px;
}
.hero-sub {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(15px, 3vw, 20px); font-style: italic;
color: rgba(255,255,255,0.72); margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-gold {
background: var(--gold); color: white; padding: 14px 28px; border-radius: 3px;
text-decoration: none; font-size: 11px; font-weight: 500;
letter-spacing: .14em; text-transform: uppercase; transition: background .2s; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.9);
padding: 14px 28px; border-radius: 3px; text-decoration: none;
font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.carousel-prev, .carousel-next {
position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
color: white; width: 42px; height: 42px; border-radius: 50%;
cursor: pointer; font-size: 18px;
display: flex; align-items: center; justify-content: center;
backdrop-filter: blur(4px); transition: background .2s;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,0.22); }
.carousel-dots {
position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
display: flex; gap: 8px; z-index: 10;
}
.dot {
width: 7px; height: 7px; border-radius: 50%;
background: rgba(255,255,255,0.3); border: none;
cursor: pointer; transition: background .3s, transform .2s; padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
@media(min-width: 768px) {
.hero-content { padding: 0 56px 80px; max-width: 640px; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
} .section { padding: 80px 0; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-dark { background: var(--accent); color: white; }
.section-off { background: var(--off-white); }
.eyebrow {
font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
color: var(--gold); margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--gold-light); }
.sec-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(32px, 6vw, 52px); font-weight: 300; line-height: 1.1;
margin-bottom: 32px;
}
.sec-title em { font-style: italic; color: var(--accent); }
.section-dark .sec-title em { color: var(--gold-light); } .onas-text p { max-width: 680px; margin-bottom: 16px; line-height: 1.75; color: var(--text-light); }
.info-cards { display: grid; gap: 12px; margin-top: 32px; }
@media(min-width: 640px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
border: 1px solid var(--light); border-radius: 8px; padding: 20px;
cursor: pointer; transition: border-color .2s, box-shadow .2s; background: white;
}
.info-card:hover, .info-card.open { border-color: var(--accent); box-shadow: 0 4px 20px rgba(30,77,43,0.1); }
.info-card-header { display: flex; align-items: center; gap: 14px; }
.info-card-icon { font-size: 24px; }
.info-card-title { font-weight: 500; font-size: 14px; }
.info-card-sub { font-size: 11px; color: var(--text-light); }
.info-card-body { display: none; margin-top: 14px; font-size: 13px; line-height: 1.6; color: var(--text-light); }
.info-card.open .info-card-body { display: block; }
.info-card-left { display: flex; align-items: center; gap: 14px; flex: 1; } .team-grid { display: grid; gap: 24px; margin-top: 40px; }
@media(min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
background: white; border-radius: 10px; overflow: hidden;
border: 1px solid var(--light); transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(30,77,43,0.12); transform: translateY(-3px); }
.team-card-img {
width: 100%; aspect-ratio: 3/4; object-fit: cover;
background: var(--light); }
.team-card-body { padding: 20px; }
.team-card-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; }
.team-card-role { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 4px 0 10px; }
.team-card-bio { font-size: 13px; line-height: 1.65; color: var(--text-light); } .team-card.captain .team-card-role::before { content: '★ '; } .countdown-block {
display: flex; gap: 24px; flex-wrap: wrap; margin: 40px 0;
}
.cd-unit { text-align: center; }
.cd-num {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 8vw, 80px); font-weight: 300; line-height: 1;
color: white;
}
.cd-label {
font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
color: rgba(255,255,255,0.55); margin-top: 4px;
}
.cd-sep {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(40px, 7vw, 70px); color: var(--gold); align-self: flex-start; margin-top: 4px;
}
.mission-text { max-width: 640px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; } .results-grid { display: grid; gap: 20px; margin-top: 32px; }
@media(min-width: 640px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
.result-card {
background: white; border: 1px solid var(--light); border-radius: 8px; padding: 24px;
transition: border-color .2s;
}
.result-card:hover { border-color: var(--accent); }
.result-medal { font-size: 32px; margin-bottom: 12px; }
.result-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.result-event { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.result-desc { font-size: 13px; line-height: 1.6; color: var(--text-light); } .news-grid { display: grid; gap: 24px; margin-top: 36px; }
@media(min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
background: white; border-radius: 10px; overflow: hidden;
border: 1px solid var(--light); text-decoration: none; color: inherit;
transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--light); }
.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.news-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; line-height: 1.25; margin-bottom: 8px; }
.news-card-excerpt { font-size: 13px; line-height: 1.65; color: var(--text-light); flex: 1; }
.news-card-more { margin-top: 14px; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); } .sponsors-intro { max-width: 620px; margin-bottom: 48px; line-height: 1.75; color: var(--text-light); }
.sponsors-tiers { display: flex; flex-direction: column; gap: 48px; }
.tier-label {
font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
color: var(--mid); margin-bottom: 20px; padding-bottom: 10px;
border-bottom: 1px solid var(--light);
}
.sponsors-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }
.sponsor-logo-wrap { opacity: 0.7; transition: opacity .2s; }
.sponsor-logo-wrap:hover { opacity: 1; }
.sponsor-logo-wrap img { max-height: 50px; max-width: 140px; object-fit: contain; }
.sponsor-logo-wrap.tier-main img { max-height: 70px; max-width: 200px; }
.sponsor-logo-wrap.tier-partner img { max-height: 40px; } .cta-banner {
background: var(--accent); color: white;
padding: 72px 24px; text-align: center;
}
.cta-banner-inner { max-width: 680px; margin: 0 auto; }
.cta-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 5vw, 44px); font-weight: 300; margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
background: white; color: var(--accent); padding: 14px 28px; border-radius: 3px;
text-decoration: none; font-size: 11px; font-weight: 500;
letter-spacing: .14em; text-transform: uppercase; transition: background .2s;
}
.btn-white:hover { background: var(--off-white); }
.btn-ghost-white {
border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.85);
padding: 14px 28px; border-radius: 3px; text-decoration: none;
font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
transition: all .2s;
}
.btn-ghost-white:hover { border-color: var(--gold-light); color: var(--gold-light); } .site-footer { background: var(--text); color: white; padding: 56px 0 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.15); }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; }
.footer-logo-sub { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer-desc { max-width: 400px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.footer-links a { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
font-size: 11px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); } .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.visible { opacity: 1; transform: none; } .single-post-wrap { max-width: 760px; margin: 120px auto 80px; padding: 0 24px; }
.single-post-header { margin-bottom: 36px; }
.single-post-date { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.single-post-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 48px); font-weight: 300; line-height: 1.15; }
.single-post-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 36px; }
.single-post-content { font-size: 16px; line-height: 1.8; color: var(--text-light); }
.single-post-content h2, .single-post-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--text); font-weight: 400; margin: 28px 0 12px; }
.single-post-content p { margin-bottom: 16px; }
.single-post-back { display: inline-block; margin-bottom: 20px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); text-decoration: none; } .wp-block-image { margin: 24px 0; }
.wp-caption-text, figcaption { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.aligncenter { text-align: center; }
.alignright { float: right; margin-left: 20px; }
.alignleft { float: left; margin-right: 20px; }
.wp-block-separator { border: none; border-top: 1px solid var(--light); margin: 32px 0; } .support-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
@media (min-width: 640px) {
.support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
.support-grid { grid-template-columns: repeat(4, 1fr); }
}
.support-card {
background: var(--white, #fff);
border-radius: 12px;
padding: 32px 28px;
box-shadow: 0 2px 20px rgba(0,0,0,.06);
display: flex;
flex-direction: column;
gap: 14px;
transition: box-shadow .2s, transform .2s;
}
.support-card:hover {
box-shadow: 0 8px 32px rgba(0,0,0,.1);
transform: translateY(-3px);
}
.support-card-icon { font-size: 2.2rem; line-height: 1; }
.support-card-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.35rem;
font-weight: 400;
color: var(--text);
margin: 0;
}
.support-card-desc {
font-size: .93rem;
color: var(--text-light);
line-height: 1.6;
margin: 0;
flex-grow: 1;
} .support-qr-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
margin-top: 4px;
}
.support-qr-img {
width: 170px;
height: 170px;
object-fit: contain;
border-radius: 10px;
border: 1px solid var(--light, #eee);
padding: 8px;
background: #fff;
}
.support-qr-label {
font-size: .78rem;
color: var(--mid, #999);
text-align: center;
margin: 0;
}
.support-qr-placeholder {
width: 170px;
height: 170px;
border-radius: 10px;
border: 2px dashed var(--light, #ddd);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 6px;
color: var(--mid, #aaa);
font-size: .82rem;
text-align: center;
padding: 12px;
} .support-members-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.support-member-row {
display: flex;
align-items: center;
gap: 12px;
padding: 9px 12px;
border-radius: 8px;
background: var(--bg-off, #f7f5f2);
text-decoration: none;
color: inherit;
transition: background .15s;
}
.support-member-row:hover { background: #ede9e3; }
.support-member-avatar {
width: 38px;
height: 38px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.support-member-name {
font-size: .92rem;
font-weight: 500;
flex-grow: 1;
color: var(--text);
}
.support-member-badge {
font-size: .72rem;
background: var(--gold, #b8963c);
color: #fff;
padding: 2px 9px;
border-radius: 20px;
white-space: nowrap;
font-weight: 500;
}
.support-member-arrow {
color: var(--mid, #aaa);
font-size: .9rem;
} .support-btn {
display: inline-block;
padding: 11px 22px;
border-radius: 6px;
font-size: .88rem;
font-weight: 600;
text-align: center;
text-decoration: none;
margin-top: auto;
transition: opacity .2s;
}
.support-btn:hover { opacity: .85; } .social-links-wrap {
display: flex;
flex-direction: column;
gap: 16px;
max-width: 640px;
margin: 0 auto;
}
@media (min-width: 560px) {
.social-links-wrap { flex-direction: row; }
}
.social-link-card {
display: flex;
align-items: center;
gap: 18px;
padding: 22px 24px;
border-radius: 14px;
text-decoration: none;
color: #fff;
flex: 1;
transition: opacity .2s, transform .2s;
}
.social-link-card:hover {
opacity: .92;
transform: translateY(-2px);
}
.social-link-card--fb  { background: #1877f2; }
.social-link-card--ig  { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-link-icon { flex-shrink: 0; opacity: .95; }
.social-link-icon svg { display: block; }
.social-link-text {
display: flex;
flex-direction: column;
gap: 3px;
flex-grow: 1;
}
.social-link-text strong { font-size: 1rem; font-weight: 700; }
.social-link-text span   { font-size: .83rem; opacity: .85; }
.social-link-arrow { font-size: 1.3rem; opacity: .7; } .member-qr-block {
margin-top: 8px;
display: flex;
flex-direction: column;
gap: 10px;
}
.member-qr-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
font-weight: 400;
color: var(--text);
margin: 0;
}
.member-qr-desc {
font-size: .92rem;
color: var(--text-light);
line-height: 1.55;
margin: 0;
}
.member-qr-img {
width: 180px;
height: 180px;
object-fit: contain;
border-radius: 12px;
border: 1px solid var(--light, #eee);
padding: 8px;
background: #fff;
}
.member-qr-note {
font-size: .78rem;
color: var(--mid, #999);
margin: 0;
} a.team-card {
display: block;
text-decoration: none;
color: inherit;
cursor: pointer;
}
a.team-card:hover .team-card-more {
color: var(--gold);
}
.team-card-more {
font-size: 11px;
font-weight: 500;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--accent, var(--gold));
margin-top: 12px;
transition: color .2s;
}