/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  font-family: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #f5f5f2;
  color: #111111;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

main:focus {
  outline: none;
}

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  z-index: 99999;
  padding: 0.75rem 1.25rem;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.25);
  transition: top 0.15s ease-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid #2e4d25;
  outline-offset: 2px;
}

/* Base focus indicator for interactive elements */
:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

img, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header,
.news-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 242, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header__inner,
.news-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #111111;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  display: block;
  border-radius: 0.75rem;
}

.brand-text {
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: opacity 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 0.8;
}

.main-nav a:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
  border-radius: 4px;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Navigation Dropdowns */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #111111;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown.is-open .nav-dropdown__toggle {
  opacity: 0.8;
}

.nav-dropdown__toggle:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 195px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 0.85rem;
    padding: 0.45rem;
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.12), 0 2px 6px rgba(17, 17, 17, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 200;
  }

  /* Hover bridge so moving mouse to dropdown doesn't close it */
  .nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -0.6rem;
    left: 0;
    right: 0;
    height: 0.6rem;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown__menu a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 0.55rem;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .nav-dropdown__menu a::after {
    display: none !important;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    background-color: rgba(17, 17, 17, 0.06);
    opacity: 1;
  }
}

/* Active Navigation State (decent & light) */
.main-nav a.is-active::after,
.nav-dropdown.is-active > .nav-dropdown__toggle::after {
  transform: scaleX(1);
  background: #111111;
  opacity: 0.65;
}

.main-nav a.is-active,
.nav-dropdown.is-active > .nav-dropdown__toggle {
  color: #000000;
}

.nav-dropdown__menu a.is-active {
  background-color: rgba(17, 17, 17, 0.07);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  color: #111111;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0.18rem 0;
}

/* ==========================================================================
   Footer & Sponsors & Social
   ========================================================================== */
.site-footer,
.home-footer {
  margin-top: auto;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 3rem 1.5rem 2.5rem;
  background: rgba(235, 235, 230, 0.5);
}

.site-footer__inner,
.home-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__social,
.home-social {
  margin-bottom: 1.75rem;
}

.site-footer__label,
.home-footer__label,
.home-social__label {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.68);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.12);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.sponsor-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sponsor-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
}

.sponsor-card img {
  height: 48px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.site-footer__note,
.home-footer__note {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.75);
}

.site-footer__subnote {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.72);
}

.site-footer__subnote a,
.home-footer__note a {
  color: inherit;
  text-decoration: underline;
}


/* ==========================================================================
   Home Page Styles
   ========================================================================== */
.home-hero {
    position: relative;
    padding: 3rem 1.5rem 2rem;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner {
    position: relative;
    width: min(1100px, 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
  }

  .hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 4px 12px rgba(0, 0, 0, 1), 0 8px 24px rgba(0, 0, 0, 1), 0 16px 48px rgba(0, 0, 0, 1), 0 24px 72px rgba(0, 0, 0, 1), 0 0 120px rgba(0, 0, 0, 1);
  }

  .hero-copy p {
    margin: 0 auto;
    max-width: 620px;
    font-size: clamp(1.1rem, 1.4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 4px 12px rgba(0, 0, 0, 1), 0 8px 24px rgba(0, 0, 0, 1), 0 16px 48px rgba(0, 0, 0, 1), 0 24px 72px rgba(0, 0, 0, 1), 0 0 120px rgba(0, 0, 0, 1);
  }

  .home-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .home-media img {
    display: block;
    width: min(92vw, 850px);
    height: 520px;
    max-height: 520px;
    aspect-ratio: 850 / 520;
    object-fit: cover;
    border-radius: 28px;
    background-color: #1e2c1e;
    opacity: 1;
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.2), 0 12px 28px rgba(17, 17, 17, 0.12);
  }

  .page-bubbles {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: transparent;
  }

  .home-news {
    background: #f5f5f2;
    padding: 0 1.5rem 2rem;
  }

  .home-new-web-notice {
    max-width: 720px;
    width: 100%;
    margin: 1.5rem auto 2.25rem;
    padding: 0 20px;
    color: rgba(17, 17, 17, 0.78);
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
  }

  .home-new-web-notice p {
    margin: 0;
    font: inherit;
  }

  .home-news__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
  }

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

  .home-news__label {
    margin: 0 0 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.7);
    text-align: center;
  }

  .home-news h2,
  .home-important h2 {
    margin: 0 0 1.2rem;
    font-size: clamp(1.8rem, 2.2vw, 2.8rem);
    text-align: center;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 360px));
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .news-item {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .news-list .news-item:first-child:last-child,
  .important-grid .important-item:first-child:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }

  .news-item:hover,
  .news-item:has(.news-item__link:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
  }

  .news-item__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    border-radius: inherit;
  }

  .news-item__link:focus-visible {
    outline: 3px solid #111111;
    outline-offset: -3px;
  }

  .news-item__link img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eae6df;
  }

  .news-item__content {
    padding: 1.2rem 1.15rem 1.4rem;
  }

  .news-item__content time {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
  }

  .news-item__content h3 {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #111111;
  }

  .news-item__content p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.8);
  }

  .news-item__cta {
    color: #111111;
    font-weight: 800;
  }

  .news-empty {
    margin: 0;
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.8);
  }

  .home-important {
    background: #f5f5f2;
    padding: 0 1.5rem 2.5rem;
  }

  .home-important__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
  }

  .important-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 360px));
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .home-calendar {
    background: #f5f5f2;
    padding: 0 1.5rem 3rem;
  }

  .home-calendar__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
  }

  .events-table-wrapper {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: left;
  }

  .events-table-container {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.04);
  }

  .events-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .events-table thead {
    background: rgba(17, 17, 17, 0.04);
    border-bottom: 2px solid rgba(17, 17, 17, 0.08);
  }

  .events-table th {
    padding: 0.9rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
    border: none;
    text-align: left;
  }

  .events-table th.col-date,
  .events-table td.col-date {
    text-align: right;
    white-space: nowrap;
    width: 38%;
  }

  .events-table td {
    padding: 0.75rem 1.25rem;
    border: none;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    color: #111111;
    font-weight: 600;
    transition: background 0.15s ease;
  }

  .events-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.95);
  }

  .events-table td.col-date {
    font-weight: 700;
    color: rgba(17, 17, 17, 0.68);
    font-variant-numeric: tabular-nums;
  }

  .calendar-frame {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.04);
  }

  .calendar-frame iframe {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .important-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.04);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .important-item:hover,
  .important-item:has(.important-item__link:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
  }

  .important-item a,
  .important-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 1.05rem;
    color: inherit;
    text-decoration: none;
    border-radius: inherit;
  }

  .important-item__link:focus-visible {
    outline: 3px solid #111111;
    outline-offset: -3px;
  }

  .important-item h3 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: left;
  }

  .important-item p {
    margin: 0 0 1rem;
    color: rgba(17, 17, 17, 0.8);
    line-height: 1.55;
    text-align: left;
  }

  .important-item__cta {
    margin-top: auto;
    color: #111111;
    font-weight: 800;
  }

  .important-empty {
    margin: 0;
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.8);
  }

  .home-content {
    background: #f5f5f2;
    padding: 0 1.5rem 3rem;
  }

  .home-content__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
  }

  .home-content h2,
  .home-section h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 2vw, 2.8rem);
    text-align: center;
  }

  .home-content p,
  .home-section p {
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    max-width: 48rem;
    text-align: center;
    line-height: 1.7;
  }

  .home-content__extra {
    margin-top: 1.5rem;
  }

  .home-section {
    position: relative;
    z-index: 1;
    background: #f5f5f2;
    padding: 1rem 1.5rem 2rem;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
  }

/* ==========================================================================
   Leaders (Vedoucí) Styles
   ========================================================================== */
.leaders-main {
    padding: 4rem 1.5rem 5rem;
  }

  .leaders-wrap {
    max-width: 1180px;
    margin: 0 auto;
  }

  .leaders-wrap h1 {
    margin: 0 0 1.25rem;
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.04em;
  }

  .leaders-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.65;
  }

  .leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 1.5rem;
    justify-content: center;
  }

  .leader-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .leader-card:hover,
  .leader-card:has(.leader-card__link:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.1);
  }

  .leader-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: inherit;
  }

  .leader-card__link:focus-visible {
    outline: 3px solid #111111;
    outline-offset: -3px;
  }

  .leader-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #f0ede8;
  }

  .leader-card__content {
    padding: 1rem 1.1rem 1.2rem;
  }

  .leader-role {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
  }

  .leader-card h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .leaders-empty {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.75);
  }

/* ==========================================================================
   Leader Detail Styles
   ========================================================================== */
.leader-detail-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
  }

  .leader-detail-wrap {
    position: relative;
  }

  .leader-back {
    margin-bottom: 1.5rem;
  }

  .leader-back a {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
  }

  .leader-profile {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.06);
  }

  .leader-profile__image {
    width: 100%;
  }

  .leader-profile__image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1.2rem;
    background: #ece7e0;
  }

  .leader-profile__content {
    min-width: 0;
  }

  .leader-profile__role {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(17, 17, 17, 0.75);
  }

  .leader-profile h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 3.2vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .leader-profile__nickname {
    font-weight: 500;
    color: rgba(17, 17, 17, 0.68);
    font-size: 0.85em;
    margin-left: 0.35rem;
  }

  .leader-section-title {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.01em;
  }

  .leader-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.6rem 1.25rem;
    margin: 0 0 1.25rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 0.85rem;
  }

  .leader-facts__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .leader-facts__item dt {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(17, 17, 17, 0.68);
    margin: 0;
  }

  .leader-facts__item dd {
    font-size: 0.96rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
  }

  .leader-courses {
    margin: 0 0 1.25rem;
  }

  .leader-courses__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .leader-courses__list li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.88);
  }

  .leader-courses__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2b5329;
    font-weight: 700;
    font-size: 0.9rem;
  }

  .leader-profile__bio {
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.82);
  }

  .leader-profile__bio p {
    margin: 0 0 0.75rem;
  }

  .leader-profile__bio p:last-child {
    margin-bottom: 0;
  }

  .leader-profile__contacts {
    display: grid;
    gap: 0.35rem;
    font-size: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .leader-profile__contacts p {
    margin: 0;
  }

  .leader-profile__contacts a {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
  }


/* ==========================================================================
   Meetings (Schůzky) Styles
   ========================================================================== */
.meetings-main {
    padding: 4rem 1.5rem 5rem;
  }

  .meetings-wrap {
    max-width: 980px;
    margin: 0 auto;
  }

  .meetings-wrap h1 {
    margin: 0 0 2rem;
    text-align: left;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .meetings-intro {
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
  }

  .schedule-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  }

  .schedule-day {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 700;
  }

  .schedule-label {
    font-size: 1.1rem;
  }

  .schedule-hours {
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.8);
  }

  .schedule-leader a {
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
  }

  .meetings-note {
    margin: 0 0 2rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .equipment-box,
  .registration-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  }

  @media (min-width: 640px) {
    .equipment-box,
    .registration-box {
      padding: 2.25rem 2rem;
    }
  }

  .equipment-box {
    margin-bottom: 1.75rem;
  }

  .equipment-box__header {
    text-align: center;
    margin-bottom: 1.75rem;
  }

  .equipment-box h2,
  .registration-box h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
    color: #111111;
  }

  .equipment-box__subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.5;
  }

  .equipment-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  @media (min-width: 560px) {
    .equipment-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 820px) {
    .equipment-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .equipment-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.15rem;
    border-radius: 0.85rem;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    font-weight: 600;
    font-size: 1.02rem;
    color: #111111;
    text-align: left;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.02);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }

  .equipment-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(17, 17, 17, 0.06);
    border-color: rgba(17, 17, 17, 0.16);
  }

  .equipment-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #eaf2e8;
    color: #276221;
    flex-shrink: 0;
  }

  .equipment-item__name {
    flex: 1;
    line-height: 1.35;
  }

  .equipment-box__note {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(17, 17, 17, 0.12);
    font-size: 0.95rem;
    color: rgba(17, 17, 17, 0.7);
    text-align: center;
  }

  .equipment-box__note p {
    margin: 0;
  }

  .registration-box p {
    margin: 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
  }

/* ==========================================================================
   News (Novinky) Styles
   ========================================================================== */
.news-main {
    padding: 4rem 1.5rem 5rem;
  }

  .news-wrap {
    max-width: 1180px;
    margin: 0 auto;
  }

  .news-wrap h1 {
    margin: 0 0 2rem;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 600px) {
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 900px) {
    .news-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .news-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .news-card:hover,
  .news-card:has(.news-card__link:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
  }

  .news-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    border-radius: inherit;
  }

  .news-card__link:focus-visible {
    outline: 3px solid #111111;
    outline-offset: -3px;
  }

  .news-card__link img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eae6df;
  }

  .news-card__content {
    padding: 1.2rem 1.15rem 1.4rem;
  }

  .news-card__content time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
    margin-bottom: 0.75rem;
  }

  .news-card__content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  .news-card__content p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.8);
  }

  .news-card__cta {
    color: #111111;
    font-weight: 800;
  }

  .news-empty {
    font-size: 1.1rem;
    color: rgba(17, 17, 17, 0.75);
  }

/* ==========================================================================
   Unified Article & Camp Detail Card Styles
   ========================================================================== */
.article-page-main,
.news-item-main,
.camp-item-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  width: 100%;
}

.article-page-shell {
  width: 100%;
}

.article-back-link {
  margin-bottom: 1.25rem;
}

.article-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #111111;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-back-link a:hover,
.article-back-link a:focus-visible {
  opacity: 0.7;
  transform: translateX(-3px);
}

.article-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.article-card__image {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.03);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
}

.article-card__body {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.article-card__meta {
  margin-bottom: 0.85rem;
}

.article-card__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.68);
  background: rgba(17, 17, 17, 0.05);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.article-card__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #111111;
}

.article-card__lede {
  margin: 0 0 1.75rem;
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.82);
  font-weight: 600;
}

.article-card__action {
  margin: 1.25rem 0 2rem;
}

.article-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: #111111;
  color: #ffffff;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.article-card__btn:hover,
.article-card__btn:focus-visible {
  transform: translateY(-2px);
  opacity: 0.88;
}

.article-card__content {
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.9);
}

.article-card__content p,
.article-card__content ul,
.article-card__content ol {
  margin: 0 0 1.25rem;
}

.article-card__content h2,
.article-card__content h3 {
  margin: 2rem 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111111;
}

.article-card__content h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.article-card__content h3 {
  font-size: 1.25rem;
}

.article-card__content a {
  color: #111111;
  text-decoration-thickness: 2px;
}

.article-card__content strong {
  font-weight: 800;
}

.article-card__form {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.article-form-embed {
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(245, 245, 242, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.06);
  padding: 0.5rem;
}

.article-form-embed iframe {
  width: 100% !important;
  min-height: 600px;
  border: 0;
  border-radius: 0.75rem;
  display: block;
}

.article-form-link-wrap {
  text-align: center;
  margin: 1.5rem 0 0.5rem;
}

/* ==========================================================================
   Camps (Tábory) Styles
   ========================================================================== */
.camps-main {
    padding: 4rem 1.5rem 5rem;
  }

  .camps-wrap {
    max-width: 980px;
    margin: 0 auto;
  }

  .camps-wrap h1 {
    margin: 0 0 2rem;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: left;
  }

  .camps-content {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.9);
  }

  .camps-content h2,
  .camps-content h3,
  .camps-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
  }

  .camps-content h2 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }

  .camps-content p,
  .camps-content li {
    margin: 0 0 0.9rem;
  }

  .camps-content ul,
  .camps-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
  }

  .camps-content a {
    color: #111111;
    text-decoration-thickness: 2px;
  }

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

  .camp-photo {
      min-height: 220px;
      border-radius: 1rem;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: linear-gradient(135deg, #e5dcc7 0%, #cfc2a0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 700;
      color: rgba(17, 17, 17, 0.7);
      box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  }

  .camp-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.25rem;
    margin-top: 2.25rem;
  }

  .camp-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .camp-card:hover,
  .camp-card:has(.camp-card__link:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
    border-color: rgba(17, 17, 17, 0.16);
  }

  .camp-card__link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    padding: 1.35rem 1.35rem 1.4rem;
    color: inherit;
    text-decoration: none;
    border-radius: inherit;
  }

  .camp-card__link:focus-visible {
    outline: 3px solid #111111;
    outline-offset: -3px;
  }

  .camp-card__meta {
    margin-bottom: 0.65rem;
  }

  .camp-card__year {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.75);
    background: rgba(17, 17, 17, 0.06);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
  }

  .camp-card h2 {
    font-size: clamp(1.25rem, 1.6vw, 1.45rem);
    line-height: 1.25;
    margin: 0 0 0.5rem;
    letter-spacing: -0.03em;
    color: #111111;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .camp-card__subtitle {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(17, 17, 17, 0.72);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .camp-card__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .camp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    transition: transform 0.15s ease, color 0.15s ease;
  }

  .camp-card:hover .camp-card__cta,
  .camp-card:has(.camp-card__link:focus-visible) .camp-card__cta {
    transform: translateX(3px);
  }


/* ==========================================================================
   Campsite Meziboří Styles
   ========================================================================== */
.camp-main {
    padding: 4rem 1.5rem 5rem;
  }

  .camp-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }

  .camp-header {
    margin-bottom: 2rem;
  }

  .camp-header h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
  }

  .camp-hero-image,
  .camp-gallery-image {
    margin: 0 0 2rem;
    width: min(780px, 100%);
    border-radius: 1.2rem;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.03);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.06);
  }

  .camp-hero-image img,
  .camp-gallery-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
  }

  .camp-content {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .camp-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 2.5vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
  }

  .camp-content h3 {
    margin: 0 0 0.85rem;
    font-size: 1.45rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }

  .camp-section {
    margin-bottom: 2rem;
  }

  .camp-section p,
  .camp-section li {
    margin: 0 0 0.9rem;
  }

  .camp-section ul,
  .camp-section ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
  }

  .camp-section a,
  .camp-contact a {
    color: #111111;
    text-decoration-thickness: 2px;
  }

  .camp-contact p {
    margin: 0 0 0.5rem;
  }

  .camp-grants__intro {
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .grant-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .grant-item {
    background: rgba(255, 255, 255, 0.52);
    padding: 1rem 1rem 0.75rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    box-shadow: 0 12px 18px rgba(17, 17, 17, 0.04);
  }

  .grant-head {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
  }

  .grant-item p {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0 0 0.5rem;
  }

  .grant-item span {
    color: rgba(17, 17, 17, 0.75);
  }

  .grant-note {
    margin-top: 0.5rem;
    font-style: italic;
  }

/* ==========================================================================
   For Kids (Pro děti) Styles
   ========================================================================== */
.kids-main {
    padding: 4rem 1.5rem 5rem;
  }

  .kids-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* Centered Header without photo */
  .kids-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
  }

  .kids-header h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
  }

  .kids-header__text {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.78);
    margin: 0 auto;
  }

  .kids-header__text p {
    margin: 0;
  }

  /* Section Filter Tabs */
  .kids-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 auto 3.5rem;
  }

  .kids-filter__btn {
    background: rgba(17, 17, 17, 0.05);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #111111;
    padding: 0.65rem 1.35rem;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .kids-filter__btn:hover,
  .kids-filter__btn:focus-visible {
    background: rgba(17, 17, 17, 0.1);
  }

  .kids-filter__btn:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
  }

  .kids-filter__btn.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.15);
  }

  .kids-filter__btn.is-active:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
  }

  .kids-section {
    margin-bottom: 4rem;
    transition: opacity 0.2s ease;
  }

  .kids-section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
  }

  .kids-text {
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 760px;
    white-space: normal;
    text-align: left;
  }

  .kids-text ul,
  .kids-text ol {
    margin: 0.5rem 0 1rem 1.5rem;
  }

  .kids-image {
    margin: 1.5rem 0 0;
    width: min(440px, 100%);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    box-shadow: 0 14px 26px rgba(17, 17, 17, 0.04);
  }

  .kids-image--small {
    width: min(320px, 100%);
  }

  .kids-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 0.75rem;
  }

  .morse-table-wrap {
    overflow-x: auto;
    margin-top: 1.25rem;
  }

  .morse-table {
    width: min(920px, 100%);
    max-width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(17, 17, 17, 0.03);
    margin: 0 auto;
    table-layout: fixed;
  }

  .morse-table th,
  .morse-table td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    text-align: left;
    vertical-align: middle;
    font-size: 0.96rem;
  }

  .morse-table th {
    
    font-weight: 800;
  }

  .morse-table td:nth-child(2),
  .morse-table th:nth-child(2) {
    width: 22%;
  }

  .morse-table td:nth-child(3),
  .morse-table th:nth-child(3) {
    width: 44%;
  }

/* ==========================================================================
   About Us (O nás) Styles
   ========================================================================== */
.about-main {
    padding: 4rem 1.5rem 5rem;
  }

  .about-wrap {
    max-width: 980px;
    margin: 0 auto;
  }

  .about-wrap h1 {
    margin: 0 0 2rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .about-content {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .about-content h2,
  .about-content h3,
  .about-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
  }

  .about-content h2 {
    font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  }

  .about-content h3 {
    font-size: 1.35rem;
  }

  .about-content p,
  .about-content li {
    margin: 0 0 0.9rem;
  }

  .about-content ul,
  .about-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
  }

  .about-content a {
    color: #111111;
    text-decoration-thickness: 2px;
  }

  .about-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.05);
  }

  .about-content blockquote h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .about-content blockquote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.85);
  }

/* ==========================================================================
   Contact (Kontakt) Styles
   ========================================================================== */
.contact-main {
    padding: 4rem 1.5rem 5rem;
  }

  .contact-wrap {
    max-width: 1120px;
    margin: 0 auto;
  }

  .contact-wrap h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .contact-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.65;
  }

  .contact-stack {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .contact-block {
    width: min(100%, 680px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.03);
    text-align: center;
  }

  .contact-block h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .contact-block p {
    margin: 0 0 0.6rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.9);
    text-align: center;
  }

  .contact-list p:last-child,
  .contact-block p:last-child {
    margin-bottom: 0;
  }

  .contact-block a {
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
  }

  .contact-block a:hover,
  .contact-block a:focus-visible {
    opacity: 0.7;
  }

  .contact-map-wrap {
    margin: 0.85rem 0 0 !important;
  }

  .contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.12);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-map-btn:hover,
  .contact-map-btn:focus-visible {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.18);
  }

  .contact-club-image {
    margin: 1.5rem auto 0;
    max-width: 560px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    background: #ffffff;
  }

  .contact-club-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
  }

  .contact-club-image__caption {
    font-size: 0.88rem !important;
    color: rgba(17, 17, 17, 0.68) !important;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 0 !important;
    text-align: center;
  }

  strong {
    font-weight: 800;
  }


/* ==========================================================================
   Error Page (404)
   ========================================================================== */
.error-main {
  padding: 5rem 1.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.error-badge {
  display: inline-block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(17, 17, 17, 0.25);
  margin-bottom: 0.5rem;
}

.error-wrap h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.error-wrap p {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.75);
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111111;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.error-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ==========================================================================
   Default Page Styles
   ========================================================================== */
.default-page {
  min-height: 70vh;
}

.default-main {
  padding: 4rem 1.5rem 5rem;
}

.default-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.default-wrap h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.default-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.85);
}

.default-content p {
  margin: 0 0 1.2rem;
}

/* ==========================================================================
   Fotogalerie Styles
   ========================================================================== */
.gallery-page {
  min-height: 80vh;
}

.gallery-main {
  padding: 3.5rem 1.5rem 6rem;
}

.gallery-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.gallery-header__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.68);
}

.gallery-header h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gallery-header__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.78);
  margin-bottom: 1.5rem;
}

.gallery-header__text p {
  margin: 0;
}

.gallery-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111111;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.15);
}

.gallery-profile-btn:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.25);
  color: #ffffff;
}

/* Filter buttons */
.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto 3.5rem;
}

.gallery-filter__btn {
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: #111111;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter__btn:hover,
.gallery-filter__btn:focus-visible {
  background: rgba(17, 17, 17, 0.1);
}

.gallery-filter__btn:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.gallery-filter__btn.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.15);
}

.gallery-filter__btn.is-active:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

/* Sections */
.gallery-section {
  margin-bottom: 4.5rem;
}

.gallery-section__header {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gallery-section__title-group {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.gallery-section__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  letter-spacing: -0.03em;
}

.gallery-section__count {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.68);
}

.gallery-section__intro {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.72);
  max-width: 700px;
}

/* Cards Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08), 0 2px 6px rgba(17, 17, 17, 0.04);
}

.gallery-card:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 2px;
}

.gallery-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #eae6df;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card__media img,
.gallery-card:focus-visible .gallery-card__media img {
  transform: scale(1.04);
}

.gallery-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 17, 0.3);
}

.gallery-card__placeholder--camp {
  background: linear-gradient(135deg, #e8ede3 0%, #d5e0cd 100%);
  color: #4a6741;
}

.gallery-card__placeholder--event {
  background: linear-gradient(135deg, #edeae3 0%, #e0d8cd 100%);
  color: #725e42;
}

.gallery-card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111111;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gallery-card__theme,
.gallery-card__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.68);
}

.gallery-card__note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.72);
}

.gallery-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111111;
  transition: gap 0.2s ease;
}

.gallery-card:hover .gallery-card__cta,
.gallery-card:focus-visible .gallery-card__cta {
  gap: 0.6rem;
}

.gallery-empty {
  text-align: center;
  padding: 2.5rem;
  background: rgba(17, 17, 17, 0.03);
  border-radius: 1rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .site-header__inner,
  .news-header__inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    gap: 0.85rem;
  }

  .brand {
    min-width: 0;
    flex-shrink: 0;
    gap: 0.85rem;
  }

  .brand-logo {
    width: 3rem;
    height: 3rem;
  }

  .brand-text {
    font-size: 1.12rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 3.1rem;
    height: 3.1rem;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #f5f5f2;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    gap: 0.35rem;
    display: none;
    z-index: 100;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.75rem 0.85rem;
    min-height: 48px;
    border-radius: 0.5rem;
    box-sizing: border-box;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(17, 17, 17, 0.05);
    opacity: 1;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: 0.75rem 0.85rem;
    min-height: 48px;
    border-radius: 0.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .nav-dropdown__toggle:hover,
  .nav-dropdown__toggle:focus-visible {
    background: rgba(17, 17, 17, 0.05);
    opacity: 1;
  }

  .nav-dropdown__toggle::after {
    display: none;
  }

  .nav-dropdown__arrow {
    width: 12px;
    height: 8px;
    transition: transform 0.2s ease;
  }

  .nav-dropdown.is-open .nav-dropdown__arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown__menu {
    position: static;
    transform: none !important;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin: 0.15rem 0 0.35rem 0;
    box-shadow: none;
    display: none;
    flex-direction: column;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    gap: 0.25rem;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: flex;
  }

  .nav-dropdown__menu a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    min-height: 44px;
    font-size: 0.96rem;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.75);
    white-space: normal;
    background: transparent;
    border-radius: 0.5rem;
    transition: color 0.15s ease, background-color 0.15s ease;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:active,
  .nav-dropdown__menu a:focus-visible {
    background: rgba(17, 17, 17, 0.05);
    color: #111111;
  }

  .nav-dropdown__menu a.is-active {
    background: rgba(17, 17, 17, 0.07);
    color: #111111;
    font-weight: 700;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 3.4rem);
  }

  .hero-copy p {
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }

  .home-media img {
    opacity: 1;
  }

  .home-important h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .default-wrap p {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .social-link {
    width: 3.25rem;
    height: 3.25rem;
  }

  .leader-detail-main {
    padding: 2rem 1.25rem 3.5rem;
  }

  .leader-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .leader-profile__image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .leader-profile__image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 1.1rem;
  }

  .leader-profile__content {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .home-page {
    line-height: 1.45;
  }

  .home-hero {
    min-height: 0;
    padding: 1.5rem 1.25rem 1rem;
  }

  .hero-inner {
    min-height: 290px;
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
    background-color: #1e2c1e;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 6.5vw, 2.4rem);
    margin-bottom: 0.5rem;
  }

  .hero-copy p {
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
    max-width: 440px;
  }

  .home-media {
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    overflow: hidden;
  }

  .home-media::after {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
  }

  .home-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 1.25rem;
    background-color: #1e2c1e;
    opacity: 1;
    filter: brightness(0.88) contrast(1.05) saturate(1.08);
  }

  .home-content {
    padding: 3rem 1.25rem;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

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

  .news-item__content {
    padding: 1.25rem 1rem 1.4rem;
  }

  .sponsor-grid {
    gap: 1.5rem;
  }

  .sponsor-card img {
    height: 40px;
  }

  .calendar-frame iframe {
    height: 480px;
  }

  .events-table th,
  .events-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .events-table th.col-date,
  .events-table td.col-date {
    font-size: 0.85rem;
    white-space: normal;
    width: 44%;
    text-align: right;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .leader-detail-main {
    padding: 1.5rem 1rem 3rem;
  }

  .leader-profile {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    border-radius: 1.25rem;
  }

  .leader-profile__image {
    max-width: 240px;
  }

  .leader-profile h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.3rem);
    margin-bottom: 0.65rem;
  }

  .leader-profile__bio {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
  }

  .leader-profile__contacts {
    font-size: 0.94rem;
    gap: 0.45rem;
  }

  .gallery-main {
    padding: 2.2rem 1.25rem 4rem;
  }

  .gallery-header {
    margin-bottom: 2rem;
  }

  .gallery-header h1 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .gallery-filter,
  .kids-filter {
    margin-bottom: 2.5rem;
    gap: 0.4rem;
  }

  .gallery-filter__btn,
  .kids-filter__btn {
    font-size: 0.88rem;
    padding: 0.55rem 0.95rem;
  }

  .kids-header {
    margin-bottom: 2rem;
  }

  .kids-header h1 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-section {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 540px) {
  .site-header__inner,
  .news-header__inner {
    padding: 0.75rem 0.9rem;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 2.85rem;
    height: 2.85rem;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .nav-toggle {
    width: 2.9rem;
    height: 2.9rem;
  }

  .main-nav {
    padding: 0.85rem 1rem;
    gap: 0.25rem;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 0.7rem 0.75rem;
    min-height: 44px;
  }

  .nav-dropdown__toggle {
    font-size: 1rem;
    padding: 0.7rem 0.75rem;
    min-height: 44px;
  }

  .home-hero {
    min-height: 0;
    padding: 1rem 0.85rem;
  }

  .hero-inner {
    min-height: 250px;
    padding: 1.6rem 1rem;
  }

  .home-new-web-notice {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    margin-bottom: 0.4rem;
  }

  .hero-copy p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .home-important h2 {
    font-size: 1.7rem;
  }

  .default-wrap p {
    font-size: 1rem;
  }

  .camp-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .camp-list {
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .camp-card__link {
    padding: 1.15rem 1rem 1.2rem;
  }

  .camp-card h2 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Unified Subpage Intro / Perex Text
   ========================================================================== */
/* Shared introductory paragraph style below h1 on inner pages */
.meetings-intro,
.contact-intro,
.leaders-intro,
.news-wrap > p,
.about-wrap > p:first-of-type,
.kids-wrap > p:first-of-type {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.65;
}
