/*
Theme Name: Cary Camp
Description: Custom WordPress theme for Franklin L. Cary Camp, based on BSA branding standards and modern design principles.
Author: Rob
Version: 1.0
Text Domain: cary-camp
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800&family=Roboto+Condensed:wght@300;400;500;600;700;800&family=Amatic+SC:wght@400;700&family=Kalam:wght@300;400;700&family=Caveat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #232528;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #232528;
  margin-bottom: 1rem;
}
h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
  margin-top: 2rem;
}

h1 {
  font-size: clamp(2.25rem, 2rem + 2vw, 3rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
}

h4 {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #003f87;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #003366;
}
a:focus {
  outline: 2px solid #ce1126;
  outline-offset: 2px;
}

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

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid--4-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.flex {
  display: flex;
}
.flex--column {
  flex-direction: column;
}
.flex--center {
  align-items: center;
  justify-content: center;
}
.flex--between {
  justify-content: space-between;
}
.flex--wrap {
  flex-wrap: wrap;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.section {
  padding: 4rem 0;
}
.section--small {
  padding: 3rem 0;
}
.section--large {
  padding: 6rem 0;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e9e9e4;
  position: sticky;
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .header .container {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header .container {
    padding: 1.5rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.logo__image {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .logo__image {
    height: 56px;
    width: 56px;
  }
}
@media (min-width: 1024px) {
  .logo__image {
    height: 64px;
    width: 64px;
  }
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo__title {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #003f87;
  line-height: 1.2;
}
.logo__tagline {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.875rem);
  color: #515354;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .logo__tagline {
    display: none;
  }
}
.logo:hover .logo__title {
  color: #003366;
}
.logo:hover .logo__image {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.nav {
  display: none;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  margin: 0;
  padding: 0;
  position: relative;
}
.nav__list li.menu-item-has-children:hover .sub-menu, .nav__list li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__list li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 0.7em;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
.nav__list li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9e9e4;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
}
.nav__list .sub-menu li {
  margin: 0;
  padding: 0;
}
.nav__list .sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #232528;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}
.nav__list .sub-menu li a:hover, .nav__list .sub-menu li a:focus {
  color: #003f87;
  background-color: rgba(154, 179, 213, 0.1);
}
.nav__link, .nav__list a {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #232528;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.nav__link:hover, .nav__link:focus, .nav__list a:hover, .nav__list a:focus {
  color: #003f87;
  background-color: rgba(154, 179, 213, 0.1);
}
.nav__link--active, .current-menu-item .nav__link, .nav__list a--active, .current-menu-item .nav__list a {
  color: #003f87;
  background-color: rgba(154, 179, 213, 0.15);
}
.nav__link--dropdown, .nav__list a--dropdown {
  cursor: pointer;
}
.nav__cta {
  background: #ce1126;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(206, 17, 38, 0.3);
}
.nav__cta:hover {
  background: #003366;
  color: #ffffff;
}
.nav__cta:active {
  transform: translateY(0);
}

.mobile-nav {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.mobile-nav__toggle:hover, .mobile-nav__toggle:focus {
  background-color: #e9e9e4;
  outline: none;
}
.mobile-nav__toggle.is-active .mobile-nav__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-nav__toggle.is-active .mobile-nav__bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.mobile-nav__toggle.is-active .mobile-nav__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav__bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #232528;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.mobile-nav__menu.is-open {
  right: 0;
}
.mobile-nav__menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e9e9e4;
}
.mobile-nav__menu-header .mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.mobile-nav__menu-header .mobile-nav__logo img {
  width: 32px;
  height: 32px;
}
.mobile-nav__menu-header .mobile-nav__logo .mobile-nav__title {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-weight: 700;
  color: #003f87;
  font-size: 1.1rem;
  line-height: 1.2;
}
.mobile-nav__menu-header .mobile-nav__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #515354;
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-nav__menu-header .mobile-nav__close:hover {
  color: #232528;
}
.mobile-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__menu ul li {
  margin: 0;
}
.mobile-nav__menu ul li.menu-item-has-children > a {
  font-weight: 600;
  color: #003f87;
}
.mobile-nav__menu ul li.menu-item-has-children > a::after {
  content: "";
  display: none;
}
.mobile-nav__menu ul li.menu-item-has-children .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0 0 0 1rem;
  margin-top: 0.5rem;
}
.mobile-nav__menu ul li.menu-item-has-children .sub-menu li a {
  font-size: 0.9rem;
  color: #515354;
  font-weight: 400;
  text-transform: none;
  padding: 0.5rem 0.75rem;
}
.mobile-nav__menu ul li.menu-item-has-children .sub-menu li a::before {
  content: "•";
  margin-right: 0.5rem;
  color: #003f87;
}
.mobile-nav__menu ul li.menu-item-has-children .sub-menu li a:hover {
  color: #003f87;
  background-color: rgba(154, 179, 213, 0.1);
}
.mobile-nav__menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #232528;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 500;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.mobile-nav__menu ul li a:hover, .mobile-nav__menu ul li a:focus {
  background-color: rgba(154, 179, 213, 0.1);
  color: #003f87;
}
.mobile-nav__menu ul li a.current-menu-item {
  color: #003f87;
  background-color: rgba(154, 179, 213, 0.15);
}
.mobile-nav__menu .mobile-nav__cta {
  display: block;
  background: #ce1126;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.mobile-nav__menu .mobile-nav__cta:hover {
  background: rgb(182.4439461883, 15.0560538117, 33.6547085202);
}
.mobile-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.mobile-nav__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #232528;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
}
.footer .container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer .container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.footer__section--logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer__section--logo {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.footer__section h3 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  color: #fdc116;
  margin-bottom: 1rem;
}
.footer__section p {
  color: #e9e9e4;
  line-height: 1.6;
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.footer__section ul {
  list-style: none;
  padding: 0;
}
.footer__section ul li {
  margin-bottom: 0.5rem;
}
.footer__section a {
  color: #e9e9e4;
  transition: color 0.2s ease;
  font-weight: bold;
}
.footer__section a:hover {
  color: #fdc116;
}
.footer__bottom {
  border-top: 1px solid #e9e9e4;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #e9e9e4;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
}
.footer__bottom p {
  margin-bottom: 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.footer__logo {
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 6px;
}
.footer__logo img {
  max-width: 120px;
  height: auto;
  display: block;
}
@media (min-width: 640px) {
  .footer__logo img {
    max-width: 150px;
  }
}
.footer__content {
  flex: 1;
}
.footer__content h3 {
  margin-bottom: 1rem;
}
.footer__content p {
  margin-bottom: 0;
}

.footer__section.contact-info {
  border-radius: 0;
  border: 0;
  padding: 0;
}
.footer__section.contact-info address {
  font-style: normal;
  line-height: 1.6;
}
.footer__section.contact-info address strong {
  display: block;
  color: #fdc116;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer__section.contact-info address a {
  color: #e9e9e4;
  transition: color 0.2s ease;
  font-weight: bold;
}
.footer__section.contact-info address a:hover {
  color: #fdc116;
}
.footer__section.contact-info address {
  color: #e9e9e4;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.footer__bottom a {
  color: #ffffff;
}
.footer__bottom a:hover {
  color: #fdc116;
}

.footer__bottom--icon {
  color: #ce1126;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero--diagonal {
  position: relative;
  display: flex;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--diagonal .hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero--diagonal .hero__content {
    flex: 0 0 58%;
    padding: 4rem 3rem 4rem 2rem;
    padding-right: calc(3rem + 220px);
  }
}
@media (min-width: 1024px) {
  .hero--diagonal .hero__content {
    padding: 5rem 3rem 5rem 3rem;
    padding-right: calc(3rem + 250px);
  }
}
.hero--diagonal .hero__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(219, 206, 189, 0.9);
  z-index: -1;
}
@media (min-width: 768px) {
  .hero--diagonal .hero__content::before {
    right: -20px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  }
}
@media (min-width: 1024px) {
  .hero--diagonal .hero__content::before {
    right: -50px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 150px) 100%, 0 100%);
  }
}
.hero--diagonal .hero__image {
  display: none;
}
@media (min-width: 768px) {
  .hero--diagonal .hero__image {
    flex: 0 0 42%;
    position: relative;
  }
}
@media (max-width: 767px) {
  .hero--diagonal {
    min-height: 80vh;
  }
  .hero--diagonal .hero__content::before {
    background: rgba(219, 206, 189, 0.9);
    clip-path: none;
    right: 0;
  }
  .hero--diagonal::after {
    display: none;
  }
}
.hero h1 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ce1126;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero__motto {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #003f87;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__description {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #232528;
  max-width: 480px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #003366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.375rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  width: fit-content;
  flex-shrink: 0;
}
.hero__cta-icon {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}
.hero__cta:hover {
  background: #ce1126;
  color: #ffffff;
}
.hero__cta:hover .hero__cta-icon {
  transform: translateX(2px);
}
.hero__cta:active {
  transform: translateY(0);
}
.hero__cta:focus {
  outline: 3px solid rgba(206, 17, 38, 0.3);
  outline-offset: 2px;
}

.page-hero {
  position: relative;
}
.page-hero .page-hero__image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-hero .page-hero__image img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.page-hero .page-hero__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-hero .page-hero__image.blue:after {
  background-color: rgba(0, 63, 135, 0.45);
}
.page-hero .page-hero__image.gray:after {
  background-color: rgba(81, 83, 84, 0.75);
}
.page-hero .page-hero__image.tan:after {
  background-color: rgba(219, 206, 189, 0.4);
}
.page-hero .page-hero__overlay {
  position: relative;
  padding: 5rem 9rem 5rem 9rem;
}
.page-hero .page-hero__overlay .page-hero__content {
  width: 60%;
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  gap: 1rem;
  justify-content: center;
  height: 100%;
  z-index: 2;
  position: relative;
  max-width: 800px;
  min-height: 500px;
}
.page-hero .page-hero__overlay .page-hero__content h1 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.page-hero .page-hero__overlay .page-hero__content p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
}
@media (max-width: 768px) {
  .page-hero .page-hero__overlay {
    padding: 3rem 4rem 3rem 4rem;
  }
  .page-hero .page-hero__overlay .page-hero__content {
    width: 100%;
  }
  .page-hero .page-hero__overlay .page-hero__content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

.card, .facility-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e9e9e4;
}
.card:hover, .facility-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .card__image {
    height: 240px;
  }
}
.card__content {
  padding: 1.5rem;
}
.card__title {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: 600;
  color: #232528;
  margin-bottom: 0.75rem;
}
.card__title a {
  color: inherit;
  text-decoration: none;
}
.card__title a:hover {
  color: #003f87;
}
.card__description {
  color: #515354;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.card__link {
  color: #003f87;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card__link:hover {
  color: #003366;
}
.card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.card__link:hover::after {
  transform: translateX(2px);
}

.content-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.facility-card h3 {
  margin-bottom: 1rem;
}
.facility-card h3 a {
  color: #003f87;
  text-decoration: none;
  font-weight: 600;
}
.facility-card h3 a:hover {
  color: #003366;
}
.facility-card p {
  color: #515354;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}
.btn:focus {
  outline: 2px solid #ce1126;
  outline-offset: 2px;
}
.btn--primary {
  background-color: #003f87;
  color: #ffffff;
}
.btn--primary:hover:not(:disabled) {
  background-color: #003366;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary {
  background-color: transparent;
  color: #ce1126;
  border: 2px solid #ce1126;
}
.btn--secondary:hover:not(:disabled) {
  background-color: #ce1126;
  color: #ffffff;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  border-radius: 0.75rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: 2px solid;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: fit-content;
  flex-shrink: 0;
}
.cta-button:focus {
  outline: 3px solid #dbcebd;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px #dbcebd;
}
.cta-button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.cta-button:focus-visible {
  outline: 3px solid #dbcebd;
  outline-offset: 2px;
}
.cta-button:disabled, .cta-button[aria-disabled=true] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (prefers-contrast: high) {
  .cta-button {
    border-width: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-button {
    transition: none;
  }
  .cta-button:hover {
    transform: none;
  }
}
.cta-button--small {
  padding: 0.5rem 1rem;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  min-height: 36px;
}
.cta-button--large {
  padding: 1.5rem 2rem;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  min-height: 52px;
}
.cta-button--primary {
  background-color: #ce1126;
  border-color: #ce1126;
  color: #ffffff;
}
.cta-button--primary:hover:not(:disabled) {
  background-color: transparent;
  border-color: #ce1126;
  color: #ce1126;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--primary:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--secondary {
  background-color: #003366;
  border-color: #003366;
  color: #ffffff;
}
.cta-button--secondary:hover:not(:disabled) {
  background-color: #ce1126;
  border-color: #ce1126;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--secondary:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--danger {
  background-color: #ce1126;
  border-color: #ce1126;
  color: #ffffff;
}
.cta-button--danger:hover:not(:disabled) {
  background-color: rgb(185.4, 15.3, 34.2);
  border-color: rgb(185.4, 15.3, 34.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--danger:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--success {
  background-color: #006b3f;
  border-color: #006b3f;
  color: #ffffff;
}
.cta-button--success:hover:not(:disabled) {
  background-color: rgb(0, 96.3, 56.7);
  border-color: rgb(0, 96.3, 56.7);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--success:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--outline {
  background-color: transparent;
  border-color: #515354;
  color: #232528;
}
.cta-button--outline:hover:not(:disabled) {
  background-color: #515354;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--outline:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--download {
  background-color: #ce1126;
  border-color: #ce1126;
  color: #ffffff;
}
.cta-button--download:hover:not(:disabled) {
  background-color: transparent;
  border-color: #ce1126;
  color: #ce1126;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--download:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--external {
  background-color: #9ab3d5;
  border-color: #9ab3d5;
  color: #003366;
}
.cta-button--external:hover:not(:disabled) {
  background-color: rgb(102.158041958, 139.9902097902, 191.441958042);
  border-color: rgb(102.158041958, 139.9902097902, 191.441958042);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--external:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cta-button--info {
  background-color: #003f87;
  border-color: #003f87;
  color: #ffffff;
}
.cta-button--info:hover:not(:disabled) {
  background-color: #003366;
  border-color: #003366;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button--contact {
  background-color: #006b3f;
  border-color: #006b3f;
  color: #ffffff;
}
.cta-button--contact:hover:not(:disabled) {
  background-color: rgb(0, 96.3, 56.7);
  border-color: rgb(0, 96.3, 56.7);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cta-button .cta-button__icon {
  flex-shrink: 0;
  font-size: 1.1em;
  line-height: 1;
}
.cta-button .cta-button__icon--left {
  margin-right: 0.5rem;
}
.cta-button .cta-button__icon--right {
  margin-left: 0.5rem;
}
.cta-button--download .cta-button__icon {
  color: inherit;
}
.cta-button--external .cta-button__icon {
  color: inherit;
  font-size: 0.9em;
}
.cta-button--loading {
  pointer-events: none;
}
.cta-button--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}
.cta-button--loading .cta-button__text {
  visibility: hidden;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.cta-button-group--center {
  justify-content: center;
}
.cta-button-group--right {
  justify-content: flex-end;
}
.cta-button-group--stack {
  flex-direction: column;
  align-items: stretch;
}
.cta-button-group--stack .cta-button {
  width: 100%;
}
@media (max-width: 640px) {
  .cta-button-group {
    flex-direction: column;
  }
  .cta-button-group .cta-button {
    width: 100%;
  }
}

@keyframes button-loading-spinner {
  to {
    transform: rotate(360deg);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-weight: 500;
  color: #232528;
  margin-bottom: 0.5rem;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #858787;
  border-radius: 0.5rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: 16px;
  color: #232528;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #003f87;
  box-shadow: 0 0 0 3px rgba(0, 63, 135, 0.1);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #858787;
}
.form__input:invalid, .form__textarea:invalid {
  border-color: #dc3545;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__error {
  color: #dc3545;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  margin-top: 0.5rem;
}
.form__help {
  color: #858787;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  margin-top: 0.5rem;
}

.page-content {
  padding: 3rem 0;
}
.page-content .container {
  max-width: 1920px;
}
.page-content article {
  max-width: 1920px;
  margin: 0 auto;
}
.page-content article > h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003f87;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2.25rem, 2rem + 2vw, 3rem);
  text-transform: uppercase;
}
.page-content article section h2 {
  color: #232528;
  border-bottom: 3px solid #fdc116;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
}
.page-content article section h3 {
  color: #003f87;
  margin-top: 2rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
}
.page-content article img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(233, 233, 228, 0.3);
  margin: 1.5rem 0;
}
.page-content article figure {
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9e9e4;
}
.page-content article figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.page-content article figure figcaption {
  padding: 1rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  background-color: #ad9d7b;
  background-blend-mode: multiply;
  background-image: url("/wp-content/themes/cary-camp-theme/assets/images/texture/woodgrain.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid #ad9d7b;
  margin: 0;
  position: relative;
  font-weight: 700;
}
.page-content article figure figcaption span {
  position: relative;
  z-index: 2;
}
.page-content article figure figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.page-content .contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .page-content .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .page-content .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.page-content .contact-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-content .contact-section h2 {
  color: #003f87;
  border-bottom: 3px solid #dbcebd;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.page-content .contact-section .ranger-info,
.page-content .contact-section address,
.page-content .contact-section .rangers-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-content address {
  font-style: normal;
  background-color: #e9e9e4;
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid #003f87;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.page-content address strong {
  display: block;
  color: #003f87;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  margin-bottom: 1rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
}
.page-content address a {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
}
.page-content address a:hover {
  color: #003f87;
  text-decoration: underline;
}
.page-content .ranger-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #dbcebd;
  padding: 2rem;
  border-radius: 0.75rem;
  height: 100%;
}
.page-content .ranger-info img {
  border-radius: 0.75rem;
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 3px solid #ffffff;
}
.page-content .ranger-info .ranger-details {
  text-align: center;
}
.page-content .ranger-info .ranger-details h3 {
  color: #003366;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}
.page-content .ranger-info .ranger-details p {
  line-height: 1.6;
  color: #232528;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.page-content .ranger-info .ranger-details p a {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
}
.page-content .ranger-info .ranger-details p a:hover {
  color: #003f87;
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .page-content .ranger-info {
    flex-direction: row;
    gap: 2rem;
  }
  .page-content .ranger-info img {
    max-width: 140px;
    margin: 0;
    align-self: flex-start;
  }
  .page-content .ranger-info .ranger-details {
    text-align: left;
    flex: 1;
  }
}
.page-content .rangers-list {
  background-color: #e9e9e4;
  padding: 2rem;
  border-radius: 0.75rem;
  height: 100%;
}
.page-content .rangers-list img {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin: 0 auto 1.5rem auto;
  display: block;
  max-width: 100%;
  height: auto;
  border: 2px solid #ffffff;
}
.page-content .rangers-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.page-content .rangers-list ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(219, 206, 189, 0.5);
  color: #232528;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  transition: all 0.2s ease;
}
.page-content .rangers-list ul li:last-child {
  border-bottom: none;
}
.page-content .rangers-list ul li:first-child {
  font-weight: 700;
  color: #003f87;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  padding-top: 0;
}
.page-content .rangers-list ul li:hover {
  color: #003f87;
  padding-left: 0.5rem;
}

.facilities-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.texture-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.texture-bg--overlay::before, .content-with-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(154, 179, 213, 0.85);
  z-index: 1;
}
.texture-bg--diagonal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(72deg, #9ab3d5 0%, rgba(154, 179, 213, 0.85) 60%, transparent 100%);
  z-index: 1;
}
.texture-bg--diagonal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: #ce1126;
  transform: skew(72deg);
  transform-origin: top left;
  z-index: 2;
}
.texture-bg--diagonal-up::before {
  background: linear-gradient(-72deg, #9ab3d5 0%, rgba(154, 179, 213, 0.85) 60%, transparent 100%);
}
.texture-bg--diagonal-up::after {
  transform: skew(-72deg);
  transform-origin: top right;
  left: auto;
  right: 0;
}
.texture-bg .content {
  position: relative;
  z-index: 3;
}

.texture-bg-overlay--blue {
  background-color: #003f87;
  background-blend-mode: multiply;
}

.texture-bg-overlay--pale-blue {
  background-color: #9ab3d5;
  background-blend-mode: multiply;
}

.texture-bg-overlay--dark-blue {
  background-color: #003366;
  background-blend-mode: multiply;
}

.texture-bg-overlay--warm-gray {
  background-color: #515354;
  background-blend-mode: multiply;
}

.texture-bg-overlay--pale-gray {
  background-color: #858787;
  background-blend-mode: multiply;
}

.texture-bg-overlay--dark-gray {
  background-color: #232528;
  background-blend-mode: multiply;
}

.texture-bg-overlay--tan {
  background-color: #dbcebd;
  background-blend-mode: multiply;
}

.texture-bg-overlay--light-tan {
  background-color: #e9e9e4;
  background-blend-mode: multiply;
}

.texture-bg-overlay--dark-tan {
  background-color: #ad9d7b;
  background-blend-mode: multiply;
}

.texture-tree-rings, .content-with-texture.tree-rings {
  background-image: url("/wp-content/themes/cary-camp-theme/assets/images/texture/tree-rings-bwg.jpg");
}

.content-band {
  padding: 3rem 0;
  position: relative;
}
.content-band__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.content-band__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.content-band__grid--two-col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .content-band__grid--two-col {
    grid-template-columns: 1fr;
  }
}
.content-band__grid--three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .content-band__grid--three-col {
    grid-template-columns: 1fr;
  }
}
.content-band__grid--feature {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 768px) {
  .content-band__grid--feature {
    grid-template-columns: 1fr;
  }
}
.content-band--primary {
  background-color: #ffffff;
  color: #232528;
}
.content-band--secondary {
  background-color: #e9e9e4;
  color: #232528;
}
.content-band--accent {
  background-color: #003f87;
  color: #ffffff;
}
.content-band--feature {
  background: linear-gradient(135deg, #9ab3d5 0%, #003f87 100%);
  color: #ffffff;
}
.content-band--testimonial {
  background-color: #dbcebd;
  color: #232528;
  text-align: center;
}
.content-band--stats {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.band-content__title {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
}
.band-content__subtitle {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: inherit;
  opacity: 0.9;
}
.band-content__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: inherit;
}
.band-content__text:last-child {
  margin-bottom: 0;
}
.band-content__cta {
  margin-top: 1.5rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stats-band__item {
  text-align: center;
  padding: 1rem;
}
.stats-band__number {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2.25rem, 2rem + 2vw, 3rem);
  font-weight: 700;
  color: #fdc116;
  display: block;
  margin-bottom: 0.5rem;
}
.stats-band__label {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: 16px;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.feature-list__item::before {
  content: "✓";
  color: #006b3f;
  font-weight: bold;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list__item:last-child {
  margin-bottom: 0;
}
.feature-list__text {
  font-size: 16px;
  line-height: 1.5;
  color: inherit;
}

.bsa-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .bsa-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .bsa-grid {
    gap: 2rem;
  }
}

.gallery-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-band__item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #e9e9e4;
}
.gallery-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-band__item:hover img {
  transform: scale(1.05);
}
.gallery-band__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(35, 37, 40, 0.8));
  color: #ffffff;
  padding: 1rem;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
}

.testimonial-band {
  text-align: center;
}
.testimonial-band__quote {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-band__quote::before, .testimonial-band__quote::after {
  content: '"';
  font-size: 3rem;
  color: #003f87;
  position: absolute;
  top: -1rem;
}
.testimonial-band__quote::before {
  left: -1.5rem;
}
.testimonial-band__quote::after {
  right: -1.5rem;
  top: auto;
  bottom: -1.5rem;
}
.testimonial-band__author {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 500;
  color: #003f87;
  margin-bottom: 0.5rem;
}
.testimonial-band__role {
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  color: #858787;
}

.schedule-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.schedule-band__day {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  border: 2px solid #e9e9e4;
}
.schedule-band__day:hover {
  border-color: #003f87;
  box-shadow: 0 4px 8px rgba(0, 63, 135, 0.1);
}
.schedule-band__day-title {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: #003f87;
  margin-bottom: 0.75rem;
  text-align: center;
}
.schedule-band__activity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9e9e4;
}
.schedule-band__activity:last-child {
  border-bottom: none;
}
.schedule-band__time {
  font-weight: 500;
  color: #ce1126;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
}
.schedule-band__name {
  font-size: 16px;
  color: #232528;
}

.faq-band__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-band__item {
  border: 1px solid #e9e9e4;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-band__question {
  width: 100%;
  background: #e9e9e4;
  border: none;
  padding: 1rem;
  text-align: left;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #232528;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-band__question:hover {
  background-color: rgb(221.5510204082, 221.5510204082, 213.9489795918);
}
.faq-band__question::after {
  content: "+";
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  color: #003f87;
  transition: transform 0.3s ease;
}
.faq-band__question[aria-expanded=true]::after {
  transform: rotate(45deg);
}
.faq-band__answer {
  padding: 1rem;
  background-color: #ffffff;
  color: #232528;
  line-height: 1.6;
  display: none;
}
.faq-band__answer--open {
  display: block;
}

.contact-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.contact-band__item {
  text-align: center;
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 2px solid #e9e9e4;
}
.contact-band__icon {
  width: 60px;
  height: 60px;
  background-color: #003f87;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
}
.contact-band__title {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-weight: 700;
  color: #003f87;
  margin-bottom: 0.5rem;
}
.contact-band__details {
  font-size: 16px;
  color: #232528;
  line-height: 1.5;
}
.contact-band__link {
  color: #003f87;
  text-decoration: none;
}
.contact-band__link:hover {
  color: #003366;
  text-decoration: underline;
}

.staff-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.staff-band__member {
  text-align: center;
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 63, 135, 0.1);
}
.staff-band__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: #e9e9e4;
  background-size: cover;
  background-position: center;
  border: 4px solid #003f87;
}
.staff-band__name {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-weight: 700;
  color: #003f87;
  margin-bottom: 0.5rem;
}
.staff-band__role {
  font-size: 16px;
  color: #ce1126;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.staff-band__bio {
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  color: #232528;
  line-height: 1.5;
}

.camp-map {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9e9e4;
  margin: 2rem 0;
}
.camp-map__container {
  position: relative;
  background: linear-gradient(135deg, #e9e9e4 0%, #ffffff 100%);
  padding: 1.5rem;
}
.camp-map__image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.camp-map__svg {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
.camp-map__marker {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.camp-map__marker:hover .camp-map__marker-dot {
  transform: scale(1.2);
  background: #ce1126;
}
.camp-map__marker--active .camp-map__marker-dot {
  background: #ce1126;
  transform: scale(1.3);
}
.camp-map__marker--active .camp-map__marker-pulse {
  animation: camp-map-pulse 1.5s infinite;
}
.camp-map__marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #003f87;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.camp-map__marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 63, 135, 0.3);
  z-index: 1;
}
.camp-map__legend {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid #e9e9e4;
}
.camp-map__legend h4 {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  font-weight: 700;
  color: #003f87;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.camp-map__legend-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}
.camp-map__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #232528;
}
.camp-map__legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}
.camp-map__legend-line {
  width: 16px;
  height: 2px;
  background: #515354;
  border-radius: 1px;
  position: relative;
  flex-shrink: 0;
}
.camp-map__legend-line::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(to right, #515354 0, #515354 3px, transparent 3px, transparent 6px);
}
.camp-map__info {
  background: #9ab3d5;
  padding: 1.5rem;
  border-top: 4px solid #003f87;
}
.camp-map__info-content {
  max-width: 600px;
  margin: 0 auto;
}
.camp-map__info-content h3 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.75rem;
}
.camp-map__info-content p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.camp-map__info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #003f87;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.camp-map__info-link:hover {
  background: #003366;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .camp-map {
    margin: 1.5rem 0;
  }
  .camp-map__container {
    padding: 1rem;
  }
  .camp-map__legend-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .camp-map__info {
    padding: 1rem;
  }
  .camp-map__marker-dot {
    width: 20px;
    height: 20px;
  }
  .camp-map__marker-pulse {
    width: 20px;
    height: 20px;
  }
}

@keyframes camp-map-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.page-content.seamless-bottom {
  padding-bottom: 0;
}

.page-wrapper:has(.seamless-bottom) {
  min-height: auto;
}

.page-wrapper:has(.seamless-bottom) .main-content {
  flex: none;
}

.about-intro,
.about-current {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  min-height: 400px;
}
@media (max-width: 768px) {
  .about-intro,
  .about-current {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: auto;
  }
}

.about-current {
  grid-template-columns: 0.8fr 1.2fr;
}
@media (max-width: 768px) {
  .about-current {
    grid-template-columns: 1fr;
  }
}

.about-image figure {
  margin: 0;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9e9e4;
  height: 350px;
  position: relative;
}
@media (max-width: 768px) {
  .about-image figure {
    height: 250px;
    margin-bottom: 1rem;
  }
}
.about-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image figure img.clickable-image {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.about-image figure img.clickable-image:hover {
  transform: scale(1.02);
}
.about-image figure figcaption {
  padding: 0.75rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: 0.75rem;
  color: #003366;
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e9e9e4;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  backdrop-filter: blur(5px);
}

.about-text {
  padding: 1rem;
}
.about-text h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-text p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 16px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.svg-map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #dbcebd;
}
.svg-map-section .svg-map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.svg-map-section .camp-svg-map {
  box-shadow: none;
  margin: 0;
  border-radius: 0;
}

.card-feed {
  padding: 3rem 6rem;
  display: flex;
  flex-flow: row wrap;
  gap: 4rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .card-feed {
    padding: 2rem 3rem;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .card-feed {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .card-feed {
    padding: 1rem 0.5rem;
    gap: 1.5rem;
  }
}

.card-feed-header {
  text-align: center;
}

.card-feed__item {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  min-height: 400px;
  position: relative;
}
@media (max-width: 768px) {
  .card-feed__item {
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    display: block;
  }
}
.card-feed__item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.card-feed__item__image img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0.7);
}
@media (max-width: 768px) {
  .card-feed__item__image {
    position: relative !important;
    width: 100% !important;
    height: 250px;
    left: 0 !important;
    right: 0 !important;
  }
  .card-feed__item__image img {
    filter: brightness(1);
    border-radius: 0;
  }
}
@media (max-width: 640px) {
  .card-feed__item__image {
    height: 200px;
  }
}
.card-feed__item__content {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  background: rgba(0, 51, 102, 0.95);
  color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 2;
}
@media (max-width: 768px) {
  .card-feed__item__content {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    background: #ffffff;
    color: #003366;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    text-align: center !important;
    display: block;
    z-index: auto;
  }
}
@media (max-width: 640px) {
  .card-feed__item__content {
    padding: 1rem;
  }
}
.card-feed__item__content h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .card-feed__item__content h2 {
    color: #003366;
    font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 640px) {
  .card-feed__item__content h2 {
    font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
    margin-bottom: 0.5rem;
  }
}
.card-feed__item__content p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .card-feed__item__content p {
    color: #515354;
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .card-feed__item__content p {
    font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
    margin-bottom: 0.75rem;
  }
}
.card-feed__item__content a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #ce1126;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  border: 2px solid #ce1126;
}
.card-feed__item__content a:hover {
  background: transparent;
  border-color: #ce1126;
  color: #ffffff;
}
@media (max-width: 768px) {
  .card-feed__item__content a:hover {
    background: #003366;
    border-color: #003366;
    color: #ffffff;
  }
}
@media (max-width: 640px) {
  .card-feed__item__content a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
.card-feed__item.card-feed--left .card-feed__item__image {
  left: 0;
}
.card-feed__item.card-feed--left .card-feed__item__content {
  left: 50%;
  text-align: left;
}
@media (max-width: 768px) {
  .card-feed__item.card-feed--left .facility-location__image,
  .card-feed__item.card-feed--left .facility-location__content {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
  }
}
.card-feed__item.card-feed--right .card-feed__item__image {
  right: 0;
  left: unset;
}
.card-feed__item.card-feed--right .card-feed__item__content {
  left: auto;
  right: 50%;
  text-align: right;
}
@media (max-width: 768px) {
  .card-feed__item.card-feed--right .card-feed__item__image,
  .card-feed__item.card-feed--right .card-feed__item__content {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
  }
}

.image-gallery {
  padding: 2rem 0;
}
.image-gallery--grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns, 3), 1fr);
  gap: var(--gallery-gap, 20px);
}
@media (max-width: 1024px) {
  .image-gallery--grid {
    grid-template-columns: repeat(min(var(--gallery-columns, 3), 3), 1fr);
  }
}
@media (max-width: 768px) {
  .image-gallery--grid {
    grid-template-columns: repeat(min(var(--gallery-columns, 3), 2), 1fr);
  }
}
@media (max-width: 640px) {
  .image-gallery--grid {
    grid-template-columns: 1fr;
  }
}
.image-gallery--masonry {
  columns: var(--gallery-columns, 3);
  column-gap: var(--gallery-gap, 20px);
}
@media (max-width: 1024px) {
  .image-gallery--masonry {
    columns: min(var(--gallery-columns, 3), 3);
  }
}
@media (max-width: 768px) {
  .image-gallery--masonry {
    columns: min(var(--gallery-columns, 3), 2);
  }
}
@media (max-width: 640px) {
  .image-gallery--masonry {
    columns: 1;
  }
}

.image-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-gallery--masonry .image-gallery__item {
  break-inside: avoid;
  margin-bottom: var(--gallery-gap, 20px);
  display: inline-block;
  width: 100%;
}
.image-gallery--grid .image-gallery__item {
  aspect-ratio: 1;
}
.image-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.image-gallery__item:hover .image-gallery__overlay {
  opacity: 1;
}

.image-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.image-gallery--grid .image-gallery__image {
  height: 100%;
}
.image-gallery--masonry .image-gallery__image {
  height: auto;
}
.image-gallery__item:hover .image-gallery__image {
  transform: scale(1.05);
}

.image-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-gallery__zoom-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ce1126;
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-gallery__zoom-btn:hover {
  background: #ffffff;
  transform: scale(1.1);
}
.image-gallery__zoom-btn svg {
  width: 24px;
  height: 24px;
}

.image-gallery-editor .image-gallery-preview {
  position: relative;
}
.image-gallery-editor .image-gallery-preview--masonry {
  display: flex;
  flex-wrap: wrap;
}
.image-gallery-editor .image-gallery-preview--masonry .image-gallery-item {
  flex: 1 1 calc(100% / var(--gallery-columns, 3) - var(--gallery-gap, 20px));
  margin-bottom: var(--gallery-gap, 20px);
}
.image-gallery-editor .image-gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.image-gallery-editor .image-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}
.image-gallery-editor .image-gallery-item button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image-gallery-editor .image-gallery-item button:hover {
  background: #fff;
}

.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-lightbox.is-opening {
  animation: lightboxFadeIn 0.3s ease-out;
}
.image-lightbox.is-closing {
  animation: lightboxFadeOut 0.3s ease-out;
}

.image-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image-lightbox__container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox__close,
.image-lightbox__prev,
.image-lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.image-lightbox__close:hover,
.image-lightbox__prev:hover,
.image-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.image-lightbox__close svg,
.image-lightbox__prev svg,
.image-lightbox__next svg {
  width: 24px;
  height: 24px;
}

.image-lightbox__close {
  top: 20px;
  right: 20px;
}
@media (max-width: 640px) {
  .image-lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.image-lightbox__prev {
  left: 20px;
}
@media (max-width: 640px) {
  .image-lightbox__prev {
    left: 10px;
    width: 40px;
    height: 40px;
  }
}

.image-lightbox__next {
  right: 20px;
}
@media (max-width: 640px) {
  .image-lightbox__next {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.image-lightbox__content {
  text-align: center;
  color: #ffffff;
}

.image-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.image-lightbox__image.is-loading {
  opacity: 0.5;
}

.image-lightbox__caption {
  margin-top: 1rem;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .image-lightbox__caption {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

.image-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .image-lightbox__counter {
    bottom: 10px;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
  }
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes lightboxFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
/* FAQ Accordion Styles */
.faq-section {
  background-color: #f8f9fa;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232528;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question--open {
  background-color: #003f87;
  color: white;
}

.faq-question--open:hover {
  background-color: #003366;
}

.faq-icon {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question--open .faq-icon {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer--open {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #232528;
  line-height: 1.6;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
}

.faq-answer-content li:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: #ce1126;
}

.faq-answer-content a {
  color: #003f87;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer-content a:hover {
  text-decoration: underline;
}

.faq-answer-content em {
  font-style: italic;
  color: #515354;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 0 1rem 1rem;
  }
  .faq-answer-content ul,
  .faq-answer-content ol {
    padding-left: 1rem;
  }
}
.trading-post-hours-banner {
  background: #232528;
  color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.trading-post-hours-banner .container {
  max-width: 1200px;
}

.hours-banner {
  text-align: center;
}
.hours-banner h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2.25rem, 2rem + 2vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-grid-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hours-grid-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.hours-grid-banner .hours-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hours-grid-banner .hours-day:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.hours-grid-banner .hours-day--closed {
  background: rgba(81, 83, 84, 0.3);
  border-color: rgba(81, 83, 84, 0.4);
}
.hours-grid-banner .hours-day--closed .time {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.hours-grid-banner .hours-day--weekend {
  background: rgba(206, 17, 38, 0.2);
  border-color: rgba(206, 17, 38, 0.4);
}
.hours-grid-banner .hours-day .day {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours-grid-banner .hours-day .time {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(0.625rem, 0.6rem + 0.2vw, 0.75rem);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}

.contact-banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact-banner {
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-banner .contact-item {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  color: #ffffff;
}
.contact-banner .contact-item strong {
  font-weight: 700;
}
.contact-banner .contact-item a {
  color: #dbcebd;
  text-decoration: none;
  font-weight: 600;
}
.contact-banner .contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.trading-post-info {
  margin-bottom: 4rem;
}
.trading-post-info h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 1.5rem;
}
.trading-post-info p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
}
.trading-post-info p:last-child {
  margin-bottom: 0;
}
.trading-post-info a {
  color: #003f87;
  text-decoration: none;
  font-weight: 600;
}
.trading-post-info a:hover {
  color: #003366;
  text-decoration: underline;
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e9e9e4;
}
.hours-day--closed {
  background: rgba(81, 83, 84, 0.1);
}
.hours-day--closed .time {
  color: #515354;
  font-style: italic;
}
.hours-day .day {
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-weight: 600;
  color: #003366;
}
.hours-day .time {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
}

.contact-info {
  background: rgba(0, 63, 135, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #003f87;
}
.contact-info p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
  margin-bottom: 0.5rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info a {
  color: #003f87;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.trading-post-services {
  margin-bottom: 4rem;
}
.trading-post-services h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e9e9e4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.service-card h3 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: #003f87;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: #232528;
  line-height: 1.6;
}
.service-card a {
  color: #003f87;
  text-decoration: none;
}
.service-card a:hover {
  color: #003366;
  text-decoration: underline;
}

.trading-post-gallery h2 {
  font-family: "Roboto Slab", "Trebuchet MS", Georgia, serif;
  font-size: clamp(2rem, 1.75rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  margin: 0;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9e9e4;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  cursor: default;
  border: 2px solid #e9e9e4;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 51, 102, 0.8);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.2s ease;
}
.lightbox-close:hover {
  background: #ce1126;
  transform: scale(1.1);
}
.lightbox-close:focus {
  outline: 2px solid #dbcebd;
  outline-offset: 2px;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: calc(90vh - 80px);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 1rem 1.5rem;
  font-family: "Roboto Condensed", "Arial Black", Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  background-color: #ad9d7b;
  background-blend-mode: multiply;
  background-image: url("/wp-content/themes/cary-camp-theme/assets/images/texture/woodgrain.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid #ad9d7b;
  margin: 0;
  position: relative;
  font-weight: 700;
}
.lightbox-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.lightbox-caption * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .lightbox-container {
    max-width: 95vw;
    max-height: 95vh;
  }
  .lightbox-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 0.75rem;
    right: 0.75rem;
  }
  .lightbox-image {
    max-height: calc(95vh - 100px);
  }
  .lightbox-caption {
    padding: 0.75rem 1rem;
    font-size: 16px;
  }
}
.wp-block-cover.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wp-block-cover .wp-block-cover__inner-container {
  max-width: none !important;
  width: 100% !important;
}
.wp-block-cover .wp-block-cover__inner-container.is-layout-flow, .wp-block-cover .wp-block-cover__inner-container.wp-block-cover-is-layout-flow {
  max-width: none !important;
}
.wp-block-cover .wp-block-cover__inner-container.is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.alignfull)), .wp-block-cover .wp-block-cover__inner-container.wp-block-cover-is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-cover .wp-block-cover__inner-container {
  padding: 2rem 1rem;
}
@media (min-width: 640px) {
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 4rem 2rem;
  }
}
.wp-block-cover .wp-block-cover__inner-container > .alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.wp-block-cover .wp-block-cover__inner-container > .alignwide h1, .wp-block-cover .wp-block-cover__inner-container > .alignwide h2, .wp-block-cover .wp-block-cover__inner-container > .alignwide h3, .wp-block-cover .wp-block-cover__inner-container > .alignwide h4, .wp-block-cover .wp-block-cover__inner-container > .alignwide h5, .wp-block-cover .wp-block-cover__inner-container > .alignwide h6, .wp-block-cover .wp-block-cover__inner-container > .alignwide p, .wp-block-cover .wp-block-cover__inner-container > .alignwide ul, .wp-block-cover .wp-block-cover__inner-container > .alignwide ol, .wp-block-cover .wp-block-cover__inner-container > .alignwide blockquote {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.wp-block-cover .wp-block-cover__inner-container h1, .wp-block-cover .wp-block-cover__inner-container h2, .wp-block-cover .wp-block-cover__inner-container h3, .wp-block-cover .wp-block-cover__inner-container h4, .wp-block-cover .wp-block-cover__inner-container h5, .wp-block-cover .wp-block-cover__inner-container h6 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.wp-block-cover .wp-block-cover__inner-container p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.wp-block-cover .wp-block-columns {
  width: 100%;
}
.wp-block-cover .wp-block-columns.is-layout-flex {
  max-width: none !important;
}
.wp-block-cover .wp-block-columns.is-layout-flex .wp-block-column > * + * {
  margin-top: 1rem;
}
.wp-block-cover .wp-block-button {
  margin-top: 1.5rem;
}
.wp-block-cover .wp-block-button .wp-block-button__link {
  text-shadow: none;
}

.wp-block-group.alignfull .wp-block-group__inner-container.is-layout-constrained, .wp-block-group.alignwide .wp-block-group__inner-container.is-layout-constrained {
  max-width: none;
}
.wp-block-group.alignfull .wp-block-group.alignfull .wp-block-group__inner-container.is-layout-constrained, .wp-block-group.alignfull .wp-block-group.alignwide .wp-block-group__inner-container.is-layout-constrained {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .wp-block-group.alignfull .wp-block-group.alignfull .wp-block-group__inner-container.is-layout-constrained, .wp-block-group.alignfull .wp-block-group.alignwide .wp-block-group__inner-container.is-layout-constrained {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-group.alignfull .wp-block-group.alignfull .wp-block-group__inner-container.is-layout-constrained, .wp-block-group.alignfull .wp-block-group.alignwide .wp-block-group__inner-container.is-layout-constrained {
    padding: 0 2rem;
  }
}
.wp-block-group.alignwide .wp-block-group.alignfull .wp-block-group__inner-container.is-layout-constrained, .wp-block-group.alignwide .wp-block-group.alignwide .wp-block-group__inner-container.is-layout-constrained {
  max-width: 1200px;
  margin: 0 auto;
}
.wp-block-group[class*=is-style-padding] .wp-block-group__inner-container, .wp-block-group[style*=padding] .wp-block-group__inner-container {
  padding-left: 0;
  padding-right: 0;
}

[class*=wp-container-core-group-is-layout] > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wp-container-core-group-is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wp-block-group-is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wp-block-cover .is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wp-block-cover .wp-block-cover-is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wp-block-cover [class*=wp-container-core] > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-cover [class*=wp-container] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.alignfull .wp-block {
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.wp-block-group.alignfull:not(.wp-block-cover) p, .wp-block-group.alignfull:not(.wp-block-cover) h1, .wp-block-group.alignfull:not(.wp-block-cover) h2, .wp-block-group.alignfull:not(.wp-block-cover) h3, .wp-block-group.alignfull:not(.wp-block-cover) h4, .wp-block-group.alignfull:not(.wp-block-cover) h5, .wp-block-group.alignfull:not(.wp-block-cover) h6, .wp-block-group.alignfull:not(.wp-block-cover) ul, .wp-block-group.alignfull:not(.wp-block-cover) ol, .wp-block-group.alignfull:not(.wp-block-cover) blockquote {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.alignfull:not(.wp-block-cover) p.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h1.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h2.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h3.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h4.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h5.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) h6.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) ul.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) ol.has-text-align-left, .wp-block-group.alignfull:not(.wp-block-cover) blockquote.has-text-align-left {
  margin-left: 0;
  margin-right: auto;
}
.wp-block-group.alignfull:not(.wp-block-cover) p.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h1.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h2.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h3.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h4.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h5.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) h6.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) ul.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) ol.has-text-align-right, .wp-block-group.alignfull:not(.wp-block-cover) blockquote.has-text-align-right {
  margin-left: auto;
  margin-right: 0;
}
.wp-block-group.alignfull:not(.wp-block-cover) p.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h1.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h2.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h3.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h4.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h5.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) h6.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) ul.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) ol.has-text-align-center, .wp-block-group.alignfull:not(.wp-block-cover) blockquote.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.alignfull:not(.wp-block-cover) .alignwide,
.wp-block-group.alignfull:not(.wp-block-cover) .alignfull {
  max-width: none;
}
.wp-block-group > .wp-block-group__inner-container > * + * {
  margin-top: 1.5rem;
}
.wp-block-group > .wp-block-group__inner-container > hr + *,
.wp-block-group > .wp-block-group__inner-container > * + hr {
  margin-top: 2rem;
}

.wp-block-group.alignfull [class*=wp-container] > .wp-block-separator,
.wp-block-group.alignwide [class*=wp-container] > .wp-block-separator,
[class*=wp-container-core-group-is-layout] > .wp-block-separator,
.wp-block-group-is-layout-constrained > .wp-block-separator {
  margin-left: auto !important;
  margin-right: auto !important;
}

.content-section {
  width: 100%;
}
.content-section__container {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .content-section__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .content-section__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .content-section__container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .content-section__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.content-section__container > * + * {
  margin-top: 1.5rem;
}
.content-section__container > h1, .content-section__container > h2, .content-section__container > h3, .content-section__container > h4, .content-section__container > h5, .content-section__container > h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section__container > h1:first-child, .content-section__container > h2:first-child, .content-section__container > h3:first-child, .content-section__container > h4:first-child, .content-section__container > h5:first-child, .content-section__container > h6:first-child {
  margin-top: 0;
}
.content-section__container > p {
  margin-bottom: 1rem;
}
.content-section__container > p:last-child {
  margin-bottom: 0;
}
.content-section__container > ul, .content-section__container > ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.content-section__container > hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e1e5e9;
}
.block-editor-block-list__layout .content-section .content-section__container {
  outline: 1px dashed rgba(0, 123, 255, 0.2);
  outline-offset: -1px;
  position: relative;
  min-height: 40px;
}
.block-editor-block-list__layout .content-section .content-section__container::before {
  content: "Content Section Container";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 10px;
  color: #007cba;
  background: rgba(0, 124, 186, 0.1);
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.block-editor-block-list__layout .content-section .content-section__container:hover::before {
  opacity: 1;
}
.block-editor-block-list__layout .content-section.is-selected .content-section__container::before {
  opacity: 1;
}