/* ============================================================
   Liga de Judo de Boyacá — Exact USA Judo Aesthetic
   Colores: Navy #1B2A4A | Rojo #CC0000 | Blanco #FFFFFF
   ============================================================ */
:root {
    --navy: #1B2A4A;
    --red: #CC0000;
    --red-dark: #9E0000;
    --white: #FFFFFF;
    --gray-bg: #F5F7FA;
    --gray-mid: #DDE1E7;
    --gray-txt: #5A6475;
    --black: #111111;
    --font-head: Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
    --pill: 50px;
    --ease: 0.2s ease;
    --max: 1200px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
}

/* ── Reset ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease);
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ── Container ─────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════════════════ */
.announce-bar {
    background: #1750A4;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    line-height: 1.4;
}

.announce-bar a {
    color: #fff;
    text-decoration: underline;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: box-shadow var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 70px;
    padding: 0 20px;
    max-width: var(--max);
    margin: 0 auto;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    flex-shrink: 0;
}

/* Logo */
.logo-link {
    flex-shrink: 0;
    line-height: 0;
}

.logo-link img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    margin-left: 8px;
}

.main-nav>li {
    position: relative;
}

.main-nav>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    height: 70px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    transition: color var(--ease);
}

.main-nav>li>a:hover,
.main-nav>li>a.active {
    color: var(--red);
}

.caret {
    font-size: 10px;
    opacity: 0.55;
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-membership {
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--ease);
    display: inline-block;
}

.btn-membership:hover {
    background: var(--red-dark);
    color: var(--white);
}

.btn-shop,
.btn-donate {
    background: none;
    border: 2px solid var(--gray-mid);
    color: var(--navy);
    padding: 7px 14px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--ease);
    display: inline-block;
}

.btn-shop:hover,
.btn-donate:hover {
    border-color: var(--navy);
}

.btn-search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--navy);
    padding: 6px;
    flex-shrink: 0;
}

/* ── Mobile nav overlay ─────────────────────── */
.main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    overflow-y: auto;
    border-top: 2px solid var(--red);
    z-index: 999;
    gap: 0;
    padding-bottom: 30px;
}

.main-nav.open>li>a {
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-mid);
}

/* ══════════════════════════════════════════════
   FOR: BAR
══════════════════════════════════════════════ */
.for-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
}

.for-bar-inner {
    display: flex;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    height: 44px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.for-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-txt);
    margin-right: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.for-links {
    display: flex;
}

.for-links a {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    padding: 0 16px;
    height: 44px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--gray-mid);
    white-space: nowrap;
    transition: background var(--ease), color var(--ease);
}

.for-links a:first-child {
    border-left: 1px solid var(--gray-mid);
}

.for-links a:hover {
    background: var(--red);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.hero-dim {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 40, 0.58);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 14px rgba(0, 0, 0, 0.75);
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.hero-pills a {
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--pill);
    transition: background var(--ease);
    white-space: nowrap;
}

.hero-pills a:hover {
    background: var(--red-dark);
}

/* ══════════════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════════════ */
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-title-underline {
    width: 50px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 32px;
}

/* ══════════════════════════════════════════════
   NEWS SECTION
══════════════════════════════════════════════ */
.news-section {
    padding: 56px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    border: 1px solid var(--gray-mid);
}

.news-card-body {
    padding: 12px 0;
}

.news-card-title a {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
}

.news-card-title a:hover {
    color: var(--red-dark);
}

.news-card-date {
    font-size: 12px;
    color: var(--gray-txt);
}

.view-all-wrap {
    text-align: center;
    margin-top: 36px;
}

/* ══════════════════════════════════════════════
   PILL BUTTONS
══════════════════════════════════════════════ */
.btn-pill-outline {
    border: 2px solid var(--red);
    color: var(--red);
    background: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border-radius: var(--pill);
    cursor: pointer;
    transition: all var(--ease);
    text-transform: uppercase;
    display: inline-block;
}

.btn-pill-outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn-pill-outline.icon::after {
    content: ' ↗';
}

/* ══════════════════════════════════════════════
   EVENTS SECTION
══════════════════════════════════════════════ */
.events-section {
    padding: 56px 0;
    background: var(--gray-bg);
    border-top: 1px solid var(--gray-mid);
}

.event-row-usajudo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-mid);
    flex-wrap: wrap;
}

.event-row-usajudo:first-of-type {
    border-top: 1px solid var(--gray-mid);
}

.event-logo-placeholder {
    width: 82px;
    height: 82px;
    min-width: 82px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    line-height: 1.3;
}

.event-logo {
    width: 82px;
    height: 82px;
    min-width: 82px;
    object-fit: contain;
}

.event-info {
    flex: 1;
    min-width: 200px;
}

.event-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.3;
}

.event-meta {
    font-size: 13px;
    color: var(--gray-txt);
    line-height: 1.7;
}

.event-meta .sep {
    margin: 0 6px;
}

.event-meta a {
    color: var(--red);
    text-decoration: underline;
}

.event-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-event-page {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    padding: 9px 18px;
    border-radius: var(--pill);
    border: none;
    cursor: pointer;
    transition: background var(--ease);
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-event-page:hover {
    background: var(--red-dark);
    color: var(--white);
}

.btn-calendar {
    background: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: var(--pill);
    border: 2px solid var(--gray-mid);
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-calendar:hover {
    border-color: var(--navy);
}

/* ══════════════════════════════════════════════
   ATHLETE STRIP
══════════════════════════════════════════════ */
.athlete-strip {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.athlete-strip-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    opacity: 0.6;
}

.athlete-strip-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px 40px;
    z-index: 2;
}

.athlete-tag {
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.athlete-name {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--white);
    font-weight: 700;
}

/* ══════════════════════════════════════════════
   BENEFITS OF MEMBERSHIP
══════════════════════════════════════════════ */
.benefits-section {
    padding: 60px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    border: 1px solid var(--gray-mid);
    padding: 32px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow var(--ease);
}

.benefit-card:hover {
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--red);
}

.benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.benefit-desc {
    font-size: 13px;
    color: var(--gray-txt);
    line-height: 1.65;
    flex: 1;
}

.btn-benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: var(--pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    width: fit-content;
    transition: all var(--ease);
}

.btn-benefit-link:hover {
    background: var(--red);
    color: var(--white);
}

.btn-benefit-link::after {
    content: '↗';
}

/* ══════════════════════════════════════════════
   PARTNERS BAR
══════════════════════════════════════════════ */
.partners-section {
    background: var(--gray-bg);
    border-top: 1px solid var(--gray-mid);
    padding: 36px 0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    justify-content: center;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-txt);
}

.partner-item i {
    font-size: 2rem;
    color: var(--navy);
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 15px;
    color: #A8B8D0;
    margin-bottom: 30px;
    padding: 0 20px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--red);
    color: var(--white);
    padding: 13px 30px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--pill);
    border: none;
    cursor: pointer;
    transition: background var(--ease);
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--red-dark);
    color: var(--white);
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--pill);
    background: none;
    cursor: pointer;
    transition: all var(--ease);
    display: inline-block;
}

.btn-cta-outline:hover {
    border-color: var(--white);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: #0D1B2F;
    color: #A8B8D0;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.f-logo-col img {
    height: 54px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.f-tagline {
    font-size: 13px;
    line-height: 1.7;
    color: #A8B8D0;
    margin-bottom: 20px;
}

.f-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.f-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A8B8D0;
    font-size: 14px;
    transition: background var(--ease), color var(--ease);
}

.f-socials a:hover {
    background: var(--red);
    color: var(--white);
}

.f-col-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col ul li a {
    font-size: 13px;
    color: #A8B8D0;
}

.f-col ul li a:hover {
    color: var(--white);
}

.f-contact li {
    font-size: 13px;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.f-contact i {
    color: var(--red);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #A8B8D0;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ══════════════════════════════════════════════
   INNER PAGES
══════════════════════════════════════════════ */
.page-hero {
    height: 280px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 36px;
    overflow: hidden;
    background: var(--navy);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero-dim {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 40, 0.64);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
}

.breadcrumb-bar {
    background: var(--gray-bg);
    border-bottom: 1px solid var(--gray-mid);
    padding: 10px 0;
}

.breadcrumb-bar .container {
    display: flex;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-txt);
    flex-wrap: wrap;
}

.breadcrumb-bar a {
    color: var(--red);
}

/* Two column page layout */
.page-body {
    padding: 48px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.article-body {
    font-size: 15px;
    line-height: 1.8;
    color: #2E3848;
}

.article-body h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--navy);
    margin: 32px 0 14px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-mid);
}

.article-body h2:first-child {
    border-top: none;
    margin-top: 0;
}

.article-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 8px;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ol,
.article-body ul {
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 8px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--gray-bg);
    border: 1px solid var(--gray-mid);
    padding: 22px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy);
    border-bottom: 2px solid var(--red);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.sidebar-link-list li {
    border-bottom: 1px solid var(--gray-mid);
    padding: 10px 0;
}

.sidebar-link-list li:last-child {
    border-bottom: none;
}

.sidebar-link-list a {
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
}

.sidebar-link-list a:hover {
    color: var(--red);
}

/* Board members */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.board-card {
    border: 1px solid var(--gray-mid);
    padding: 28px 18px;
    text-align: center;
}

.board-avatar {
    width: 80px;
    height: 80px;
    background: var(--gray-mid);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.board-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.board-role {
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.board-email {
    font-size: 12px;
    color: var(--gray-txt);
}

.board-email a {
    color: var(--red);
}

/* Contact form */
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    border: 1px solid var(--gray-mid);
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 3px;
    transition: border-color var(--ease);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--navy);
}

textarea.form-input {
    height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.btn-submit {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 13px 36px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--ease);
    border-radius: var(--pill);
}

.btn-submit:hover {
    background: var(--red-dark);
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 24px 0;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
══════════════════════════════════════════════ */
@media (max-width: 960px) {

    /* Hide desktop nav and right buttons */
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-shop,
    .btn-donate {
        display: none;
    }

    /* News: 2 columns */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Benefits: 2 columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer: 2 columns */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Page two-col: single col */
    .two-col {
        grid-template-columns: 1fr;
    }

    /* Photo grid: 2 cols */
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Event btns: stack on narrow screens */
    .event-btns {
        width: 100%;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Announce bar smaller */
    .announce-bar {
        font-size: 11px;
        padding: 7px 12px;
    }

    /* Logo smaller */
    .logo-link img {
        height: 40px;
    }

    /* Hero shorter */
    .hero {
        height: 300px;
    }

    .hero-pills a {
        font-size: 10px;
        padding: 8px 16px;
    }

    /* News: 1 column */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits: 1 column */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Footer: 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Form row: 1 col */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Photo grid: 1 col */
    .photo-grid {
        grid-template-columns: 1fr;
    }

    /* Page hero smaller */
    .page-hero {
        height: 200px;
        padding-bottom: 20px;
    }

    /* Events: stack everything */
    .event-row-usajudo {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-event-page,
    .btn-calendar {
        text-align: center;
        width: 100%;
    }

    /* Board grid: 1 col */
    .board-grid {
        grid-template-columns: 1fr;
    }

    /* For bar: hide label on tiny screens */
    .for-label {
        display: none;
    }
}