/* America We Stand As One — modern patriotic visual system */
:root {
  --awso-navy: #071a3d;
  --awso-blue: #0b3b78;
  --awso-royal: #1756a9;
  --awso-red: #b31942;
  --awso-red-bright: #db2b45;
  --awso-gold: #d7ad4b;
  --awso-cream: #f7f4ed;
  --awso-white: #fff;
  --awso-ink: #101a2e;
  --awso-shadow: 0 18px 55px rgba(7, 26, 61, .18);
  --awso-radius: 18px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--awso-red) var(--awso-navy);
}

/* Patriotic scrollbar — Chromium, Safari, and other WebKit browsers */
::-webkit-scrollbar { width: 14px; height: 14px; }

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #04112a, var(--awso-navy));
  border-left: 1px solid rgba(255,255,255,.12);
}

::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 3px solid var(--awso-navy);
  border-radius: 999px;
  background: linear-gradient(180deg,
    var(--awso-red-bright) 0 34%,
    var(--awso-white) 34% 44%,
    var(--awso-royal) 44% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
    #ef4059 0 34%,
    var(--awso-white) 34% 44%,
    #2c72c9 44% 100%);
}

::-webkit-scrollbar-corner { background: var(--awso-navy); }

/* Cookie consent controls */
.cky-consent-container .cky-consent-bar,
.cky-preference-center {
  overflow: hidden !important;
  border: 1px solid rgba(215,173,75,.55) !important;
  border-radius: 20px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,244,237,.98)) !important;
  box-shadow: 0 24px 65px rgba(4,17,42,.3) !important;
}

.cky-consent-container .cky-consent-bar::before,
.cky-preference-center::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--awso-red), var(--awso-gold), var(--awso-royal), var(--awso-navy));
}

.cky-consent-container .cky-title,
.cky-preference-title {
  color: var(--awso-navy) !important;
  font-weight: 850 !important;
  letter-spacing: -.015em;
}

.cky-notice-des,
.cky-preference-content-wrapper,
.cky-accordion-header-des,
.cky-audit-table {
  color: #26344f !important;
  line-height: 1.62 !important;
}

.cky-notice-btn-wrapper,
.cky-prefrence-btn-wrapper { gap: 10px !important; }

.cky-btn {
  min-height: 45px !important;
  border: 2px solid var(--awso-navy) !important;
  border-radius: 999px !important;
  color: var(--awso-navy) !important;
  background: #fff !important;
  font-weight: 800 !important;
  letter-spacing: .035em;
  box-shadow: none !important;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease !important;
}

.cky-btn:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: var(--awso-navy) !important;
  box-shadow: 0 9px 22px rgba(7,26,61,.2) !important;
}

.cky-btn-accept {
  color: #fff !important;
  border-color: var(--awso-red) !important;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red)) !important;
  box-shadow: 0 9px 22px rgba(179,25,66,.2) !important;
}

.cky-btn-accept:hover { background: linear-gradient(135deg, #ef4059, #9b1436) !important; }

.cky-btn-customize,
.cky-btn-preferences {
  color: var(--awso-blue) !important;
  border-color: var(--awso-royal) !important;
}

.cky-btn:focus-visible,
.cky-btn-close:focus-visible,
.cky-accordion-btn:focus-visible,
.cky-btn-revisit:focus-visible {
  outline: 3px solid var(--awso-gold) !important;
  outline-offset: 3px !important;
}

.cky-preference-header {
  padding-top: 15px !important;
  border-bottom: 1px solid rgba(23,86,169,.13) !important;
  background: linear-gradient(90deg, rgba(179,25,66,.055), rgba(23,86,169,.055));
}

.cky-btn-close {
  border: 1px solid rgba(7,26,61,.15) !important;
  border-radius: 50% !important;
  background: #fff !important;
  transition: transform .2s ease, background .2s ease !important;
}

.cky-btn-close:hover { transform: rotate(6deg); background: #f1f5fb !important; }

.cky-accordion {
  margin-bottom: 9px !important;
  border: 1px solid rgba(23,86,169,.14) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

.cky-accordion-btn { color: var(--awso-navy) !important; font-weight: 800 !important; }
.cky-show-desc-btn { color: var(--awso-red) !important; font-weight: 750 !important; }
.cky-always-active { color: #147247 !important; font-weight: 750 !important; }

.cky-switch input[type="checkbox"]:checked + .cky-slider {
  background-color: var(--awso-royal) !important;
}

.cky-btn-revisit-wrapper {
  width: 52px !important;
  height: 52px !important;
  border: 2px solid var(--awso-gold) !important;
  background: linear-gradient(145deg, var(--awso-royal), var(--awso-navy)) !important;
  box-shadow: 0 10px 28px rgba(4,17,42,.35), 0 0 0 4px rgba(255,255,255,.84) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.cky-btn-revisit-wrapper:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 34px rgba(4,17,42,.42), 0 0 0 4px rgba(215,173,75,.3) !important;
}

.cky-btn-revisit img {
  width: 26px !important;
  height: 26px !important;
  filter: brightness(0) invert(1) drop-shadow(0 2px 2px rgba(0,0,0,.18));
}

.cky-btn-revisit-wrapper .cky-tooltip {
  color: #fff !important;
  border: 1px solid rgba(215,173,75,.5) !important;
  border-radius: 8px !important;
  background: var(--awso-navy) !important;
}

@media (max-width: 576px) {
  .cky-consent-container { width: calc(100% - 24px) !important; left: 12px !important; right: 12px !important; bottom: 12px !important; }
  .cky-consent-container .cky-consent-bar,
  .cky-preference-center { border-radius: 16px !important; }
  .cky-notice-btn-wrapper { gap: 8px !important; }
  .cky-btn { min-height: 43px !important; }
  .cky-btn-revisit-wrapper { width: 46px !important; height: 46px !important; left: 14px !important; bottom: 14px !important; }
}

body {
  color: var(--awso-ink);
  background-color: var(--awso-navy);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(7,26,61,.48), rgba(179,25,66,.19) 52%, rgba(255,255,255,.08));
}

body.boxed #wrapper {
  overflow: hidden;
  border-inline: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 0 80px rgba(0,0,0,.42);
}

body:not(.home) #main,
.home #main > .content-area {
  background: linear-gradient(180deg, #fff 0%, var(--awso-cream) 100%);
}

/* Header */
body.awso-universal-chrome #header,
body.awso-universal-chrome #header.transparent {
  position: relative !important;
  background: #fff !important;
}

#header .header-wrapper {
  position: relative !important;
  background: rgba(255,255,255,.94);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--awso-red), var(--awso-white), var(--awso-royal)) 1;
  box-shadow: 0 8px 30px rgba(7,26,61,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#header .header-inner { min-height: 84px; }
#logo img { filter: drop-shadow(0 3px 6px rgba(7,26,61,.15)); }

body.awso-universal-chrome #header.transparent .header-wrapper,
body.awso-universal-chrome #header.transparent #masthead,
body.awso-universal-chrome #header.transparent .header-inner {
  background: rgba(255,255,255,.96) !important;
}

.header-nav-main > li > a {
  position: relative;
  color: var(--awso-navy) !important;
  font-weight: 750;
  letter-spacing: .08em;
  transition: color .25s ease, transform .25s ease;
}

.header-nav-main > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--awso-red), var(--awso-royal));
  transition: left .25s ease, right .25s ease;
}

.header-nav-main > li:hover > a,
.header-nav-main > li.active > a { color: var(--awso-red) !important; transform: translateY(-1px); }
.header-nav-main > li:hover > a::after,
.header-nav-main > li.active > a::after { left: 12px; right: 12px; }

.nav-dropdown {
  border: 1px solid rgba(23,86,169,.14) !important;
  border-radius: 12px;
  box-shadow: var(--awso-shadow) !important;
  overflow: hidden;
}

.nav-dropdown > li > a { font-weight: 650; }
.nav-dropdown > li > a:hover { color: var(--awso-red) !important; background: #f3f6fb; }

/* Homepage hero */
.home #main .banner:first-of-type {
  min-height: min(78vh, 820px);
  isolation: isolate;
  background: var(--awso-navy);
}

.home #main .banner:first-of-type::before,
.home #main .banner:first-of-type::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home #main .banner:first-of-type::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(7,26,61,.12), rgba(7,26,61,.46) 74%, rgba(7,26,61,.84));
}

.home #main .banner:first-of-type::after {
  z-index: 2;
  opacity: .32;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(215,173,75,.75) 1px, transparent 1.5px);
  background-position: 0 0, 26px 24px;
  background-size: 58px 58px, 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  animation: awso-stars-drift 18s linear infinite;
}

.home #main .banner:first-of-type .banner-layers { z-index: 3; }
.home #main .banner:first-of-type .text-box { width: min(920px, 92%) !important; }
.home #main .banner:first-of-type .text-box-content {
  padding: clamp(24px, 4vw, 52px) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7,26,61,.66), rgba(11,59,120,.32));
  box-shadow: 0 25px 75px rgba(0,0,0,.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home #main .banner:first-of-type h3 { color: #fff !important; text-shadow: 0 4px 24px rgba(0,0,0,.55); }
.home #main .banner:first-of-type h3.alt-font { color: #f4d777 !important; font-size: clamp(1.55rem, 3vw, 2.45rem); }
.home #main .banner:first-of-type h3.uppercase {
  margin: .15em 0 .25em;
  font-size: clamp(2rem, 5vw, 4.75rem);
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.03;
}

.home #main .banner:first-of-type p { color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.8vw, 1.35rem); }

/* Buttons */
#main .button,
#main a.button {
  min-height: 46px;
  padding: .15em 1.65em;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .055em;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red));
  box-shadow: 0 10px 24px rgba(179,25,66,.24);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

#main .button:hover,
#main a.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 16px 32px rgba(179,25,66,.34);
}

#main .button.secondary,
#main a.button.secondary { background: linear-gradient(135deg, var(--awso-royal), var(--awso-navy)); box-shadow: 0 10px 24px rgba(7,26,61,.25); }

/* Keep archive call-to-action text optically centered without extra lower padding. */
#main a.more-link.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  min-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.15;
}

/* Content sections */
.home #main .section {
  position: relative;
  background: linear-gradient(135deg, var(--awso-navy), var(--awso-blue)) !important;
  color: #fff;
}

.home #main .section::before {
  content: "★  ★  ★";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--awso-gold);
  font-size: 12px;
  letter-spacing: 1.2em;
  opacity: .9;
}

.home #main .section h1,
.home #main .section h2,
.home #main .section h3,
.home #main .section p { color: #fff; }

.home #main .section .col-inner { padding-block: clamp(18px, 3vw, 40px); }
.home #main .section img { border-radius: var(--awso-radius); box-shadow: 0 20px 44px rgba(0,0,0,.3); }

/* Homepage editorial redesign */
body.home #main > #content {
  padding-bottom: clamp(2.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 8% 16%, rgba(23,86,169,.08), transparent 28rem),
    radial-gradient(circle at 92% 58%, rgba(179,25,66,.06), transparent 30rem),
    linear-gradient(180deg, #fff, var(--awso-cream));
}

.awso-home-hero {
  height: clamp(620px, 68vw, 800px) !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  border-bottom: 5px solid var(--awso-red);
  box-shadow: 0 28px 70px rgba(7,26,61,.24);
}
.awso-home-hero .text-box-content {
  max-width: 860px;
  margin-inline: auto;
  border-color: rgba(255,255,255,.34) !important;
  background: linear-gradient(145deg, rgba(4,17,42,.82), rgba(11,59,120,.48)) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.38) !important;
}
.awso-home-hero .text-inner::before {
  content: "UNITED IN COURAGE • SERVICE • HOPE";
  display: block;
  margin-bottom: 1rem;
  color: #f4d777;
  font-size: clamp(.68rem, 1.2vw, .82rem);
  font-weight: 850;
  letter-spacing: .17em;
}

.awso-home-ctas {
  position: relative;
  z-index: 6;
  width: min(calc(100% - 32px), 980px) !important;
  margin: -34px auto clamp(2.5rem, 7vw, 5rem) !important;
  padding: 14px 10px 8px;
  border: 1px solid rgba(23,86,169,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(7,26,61,.2);
  backdrop-filter: blur(14px);
}
.awso-home-ctas .col { padding-bottom: 6px; }
.awso-home-ctas .button {
  min-height: 58px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: clamp(.88rem, 1.8vw, 1rem);
  letter-spacing: .095em !important;
  line-height: 1.15 !important;
}
.awso-home-ctas .button span { display: block; margin: 0; line-height: inherit; }
.awso-home-ctas .alert { background: linear-gradient(135deg, var(--awso-royal), var(--awso-navy)) !important; }

.awso-home-story {
  width: min(calc(100% - 32px), 1120px) !important;
  margin: 0 auto clamp(3rem, 8vw, 6rem) !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.12), transparent 22rem),
    linear-gradient(135deg, #061a3e, #0c3f7d 62%, #7e1636) !important;
  box-shadow: 0 32px 80px rgba(7,26,61,.3);
}
.awso-home-story .section-content { padding: clamp(1rem, 3vw, 2.25rem); }
.awso-home-story > .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: repeating-linear-gradient(0deg, transparent 0 22px, #fff 22px 28px, transparent 28px 48px);
}
.awso-home-story .col-inner { height: 100%; }
.awso-home-story .medium-6:first-child .col-inner {
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
.awso-home-story .medium-6:first-child img { width: 100%; max-height: 650px; object-fit: cover; }
.awso-home-story h1 {
  margin: .4rem 0 1.5rem;
  font-size: clamp(1.7rem, 3.8vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.awso-home-story h1 a { color: #fff !important; }
.awso-home-story h1 a::after {
  content: "";
  display: block;
  width: 94px;
  height: 4px;
  margin: 1.1rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--awso-red-bright), #fff, #4c8ee8);
}
.awso-home-story .gallery-col { padding: 7px; }
.awso-home-story .gallery-col .col-inner {
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 15px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.awso-home-story .gallery-col img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; box-shadow: none !important; transition: transform .45s ease, filter .45s ease; }
.awso-home-story .gallery-col:hover img { transform: scale(1.07); filter: saturate(1.08) contrast(1.04); }

.awso-home-section-heading { margin-top: 0 !important; margin-bottom: 1.5rem; }
.awso-home-section-heading .section-title-main {
  padding: .8em 1.6em !important;
  color: #fff !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--awso-navy), var(--awso-blue));
  box-shadow: 0 15px 38px rgba(7,26,61,.22);
}
.awso-home-section-heading .section-title-main::before,
.awso-home-section-heading .section-title-main::after { color: #f4d777; }

.awso-home-video-grid {
  width: min(calc(100% - 32px), 1120px) !important;
  margin: 0 auto clamp(3.5rem, 8vw, 6rem) !important;
}
.awso-home-video-grid > .col > .col-inner {
  padding: 10px !important;
  border: 1px solid rgba(23,86,169,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(7,26,61,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.awso-home-video-grid > .col:hover > .col-inner { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(7,26,61,.2); }
.awso-home-video-grid .video-fit,
.awso-home-video-grid iframe { margin-bottom: 0 !important; border-radius: 15px !important; }

.awso-home-press-grid {
  width: min(calc(100% - 32px), 1120px) !important;
  margin: 0 auto 1.25rem !important;
}
.awso-home-press-grid .post-item .col-inner { border-top: 4px solid var(--awso-red); }
.awso-home-press-grid .box-image { background: #e9eef6; }
.awso-home-press-grid .box-image img { aspect-ratio: 16 / 10; object-fit: cover; }
.awso-home-press-grid .post-title { font-weight: 800; }
.awso-home-press-grid .from_the_blog_excerpt { color: #53627a; }

.awso-home-press-cta {
  width: min(calc(100% - 32px), 720px) !important;
  margin: 0 auto clamp(3rem, 7vw, 5rem) !important;
}
.awso-home-press-cta .button { min-height: 54px !important; margin: 0 !important; }

.awso-home-partner {
  width: min(calc(100% - 32px), 820px) !important;
  margin: 0 auto !important;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(23,86,169,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7,26,61,.13);
}
.awso-home-partner .img-inner { border-radius: 12px; }
.awso-home-partner img { width: 100%; height: auto; }

.awso-home-ctas,
.awso-home-story,
.awso-home-section-heading,
.awso-home-video-grid,
.awso-home-press-grid,
.awso-home-press-cta,
.awso-home-partner { animation: awso-home-rise .75s ease both; }
.awso-home-story { animation-delay: .08s; }
.awso-home-video-grid { animation-delay: .12s; }
.awso-home-press-grid { animation-delay: .16s; }

@keyframes awso-home-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title-container { margin-top: clamp(42px, 6vw, 82px); }
.section-title { border-bottom: 0 !important; text-align: center; }
.section-title b { display: none; }
.section-title-main {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: .65em 1.35em !important;
  color: var(--awso-navy) !important;
  border: 1px solid rgba(23,86,169,.16) !important;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7,26,61,.12);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: .12em;
}

.section-title-main::before,
.section-title-main::after { content: "★"; color: var(--awso-red); font-size: .7em; }

/* Video and press cards */
#main iframe[src*="youtube"] {
  border-radius: var(--awso-radius);
  box-shadow: 0 18px 44px rgba(7,26,61,.22);
}

.post-item .col-inner {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(23,86,169,.12);
  border-radius: var(--awso-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,26,61,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.post-item .col-inner:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(7,26,61,.18); }
.post-item .box-image img { transition: transform .55s ease; }
.post-item .col-inner:hover .box-image img { transform: scale(1.055); }
.post-item .box-text { padding: 1.25rem 1.1rem 1.5rem; }
.post-item .post-title { color: var(--awso-navy); line-height: 1.32; }

/* Interior-page system */
body.awso-interior-restyled {
  color: var(--awso-ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(23,86,169,.07), transparent 28rem),
    linear-gradient(180deg, #f8fafc 0, var(--awso-cream) 100%);
}

.awso-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 245px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(4,17,42,.97), rgba(11,59,120,.92)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255,255,255,.08) 22px 30px);
  box-shadow: inset 0 -5px 0 var(--awso-red), 0 18px 45px rgba(7,26,61,.18);
}

.awso-page-hero::before,
.awso-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.awso-page-hero::before { top: -310px; left: -85px; box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 86px rgba(255,255,255,.02); }
.awso-page-hero::after { right: -170px; bottom: -390px; box-shadow: 0 0 0 48px rgba(215,173,75,.045), 0 0 0 96px rgba(255,255,255,.018); }

.awso-page-hero__stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .35;
  background-image:
    radial-gradient(circle, #fff 1.1px, transparent 1.3px),
    radial-gradient(circle, #d7ad4b 1px, transparent 1.2px);
  background-position: 0 0, 34px 28px;
  background-size: 64px 64px, 82px 82px;
  mask-image: linear-gradient(90deg, #000, transparent 42%, transparent 58%, #000);
}

.awso-page-hero__inner { max-width: 1050px; text-align: center; }

.awso-page-hero__eyebrow {
  margin: 0 0 .75rem;
  color: #f1d47d;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.awso-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 4px 26px rgba(0,0,0,.25);
}

.awso-page-hero__rule {
  display: block;
  width: 108px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--awso-red-bright) 0 38%, #fff 38% 59%, var(--awso-gold) 59%);
}

body.awso-interior-restyled #content { min-height: 34vh; }

body.awso-interior-restyled .page-wrapper,
body.awso-interior-restyled.blog #main,
body.awso-interior-restyled.single-post #main,
body.awso-interior-restyled.archive #main {
  padding-top: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

/* Standard WordPress pages become polished editorial panels. */
body.awso-interior-restyled:not(.page-template-page-blank):not(.page-id-80) .page-wrapper > .row-main > .col > .col-inner {
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid rgba(23,86,169,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--awso-shadow);
}

body.awso-interior-restyled #main h2,
body.awso-interior-restyled #main h3,
body.awso-interior-restyled #main h4 { color: var(--awso-navy); text-wrap: balance; }

body.awso-interior-restyled #main p,
body.awso-interior-restyled #main li { line-height: 1.72; }

body.awso-interior-restyled #main a:not(.button) {
  text-decoration-color: rgba(179,25,66,.45);
  text-underline-offset: .18em;
}

body.awso-interior-restyled #main a:not(.button):hover { color: var(--awso-red); }

/* Existing full-bleed About hero, upgraded to match the new header system. */
body.page-id-80 #header { position: relative !important; background: #fff; }
body.page-id-80 #header .header-wrapper { position: relative !important; background: rgba(255,255,255,.96) !important; box-shadow: 0 10px 30px rgba(4,17,42,.16); }
body.page-id-80 #masthead,
body.page-id-80 #header .header-inner { min-height: 84px !important; background: rgba(255,255,255,.96) !important; }
body.page-id-80 #main .banner:first-of-type { min-height: clamp(650px, 82vh, 860px); }
body.page-id-80 #main .banner:first-of-type .text-box-content { padding: clamp(1.5rem, 4vw, 3.5rem) !important; border: 1px solid rgba(255,255,255,.28); border-radius: var(--awso-radius); background: rgba(4,17,42,.55); box-shadow: 0 24px 65px rgba(4,17,42,.3); backdrop-filter: blur(4px); }

body.page-id-80 .awso-about-dennis-title {
  margin-bottom: 0;
  color: var(--awso-navy);
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-align: center;
}

body.page-id-80 .awso-about-dennis-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--awso-red), #fff 45% 57%, var(--awso-royal));
}

body.page-id-80 .awso-about-gallery-relocated {
  width: 100%;
  max-width: 1080px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto clamp(2rem, 5vw, 3.5rem);
}

body.page-id-80 .awso-about-gallery-relocated > .col { padding: 0; }
body.page-id-80 .awso-about-gallery-relocated .gallery-col { padding: 7px; }
body.page-id-80 .awso-about-gallery-relocated .gallery-col .col-inner {
  border: 1px solid rgba(23,86,169,.14);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,26,61,.11);
}

/* UX Builder sections and page headings */
body.awso-interior-restyled .section { position: relative; }
body.awso-interior-restyled .section-content > .row { padding-block: clamp(.5rem, 2vw, 1.5rem); }
body.awso-interior-restyled .section-title-container { margin-bottom: clamp(1.5rem, 4vw, 2.8rem); }

/* Galleries, charity marks, photos, and linked artwork */
body.awso-interior-restyled .gallery-col .col-inner,
body.awso-interior-restyled .image-lightbox,
body.awso-interior-restyled .box-image,
body.awso-interior-restyled .img-inner {
  overflow: hidden;
  border-radius: 15px;
}

body.awso-interior-restyled .gallery-col .col-inner,
body.awso-interior-restyled .image-lightbox {
  border: 1px solid rgba(23,86,169,.12);
  background: #fff;
  box-shadow: 0 11px 30px rgba(7,26,61,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

body.awso-interior-restyled .gallery-col .col-inner:hover,
body.awso-interior-restyled .image-lightbox:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(7,26,61,.18); }
body.awso-interior-restyled .gallery-col img,
body.awso-interior-restyled .image-lightbox img { transition: transform .55s ease, filter .3s ease; }
body.awso-interior-restyled .gallery-col a:hover img,
body.awso-interior-restyled .image-lightbox:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.02); }

/* Video, audio, and embedded media */
body.awso-interior-restyled iframe,
body.awso-interior-restyled video,
body.awso-interior-restyled audio {
  max-width: 100%;
  border: 0;
  border-radius: var(--awso-radius);
  background: var(--awso-navy);
  box-shadow: 0 20px 50px rgba(7,26,61,.2);
}

body.awso-interior-restyled .video-fit,
body.awso-interior-restyled .responsive-video { overflow: hidden; border-radius: var(--awso-radius); box-shadow: 0 20px 50px rgba(7,26,61,.2); }

/* Forms */
body.awso-interior-restyled .wpcf7,
body.awso-interior-restyled form.cart,
body.awso-interior-restyled .woocommerce-form {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(23,86,169,.13);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7,26,61,.11);
}

body.awso-interior-restyled label { color: var(--awso-navy); font-weight: 800; }
body.awso-interior-restyled input[type="text"],
body.awso-interior-restyled input[type="email"],
body.awso-interior-restyled input[type="tel"],
body.awso-interior-restyled input[type="url"],
body.awso-interior-restyled input[type="password"],
body.awso-interior-restyled input[type="search"],
body.awso-interior-restyled input[type="number"],
body.awso-interior-restyled select,
body.awso-interior-restyled textarea {
  min-height: 48px;
  border: 1px solid rgba(7,26,61,.2);
  border-radius: 10px;
  background: #f9fbfe;
  box-shadow: inset 0 1px 2px rgba(7,26,61,.05);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.awso-interior-restyled textarea { min-height: 145px; }
body.awso-interior-restyled input:focus,
body.awso-interior-restyled select:focus,
body.awso-interior-restyled textarea:focus { border-color: var(--awso-royal); background: #fff; box-shadow: 0 0 0 4px rgba(23,86,169,.12); }
body.awso-interior-restyled input[type="submit"] { border-radius: 999px; background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red)); box-shadow: 0 10px 24px rgba(179,25,66,.22); }

/* Contact — direct, welcoming inquiry experience */
body.page-id-177 #content {
  padding: clamp(1.5rem, 4vw, 3rem) 16px clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 10% 18%, rgba(23,86,169,.1), transparent 28rem),
    radial-gradient(circle at 92% 72%, rgba(179,25,66,.065), transparent 30rem),
    linear-gradient(180deg, #f8fafd, var(--awso-cream));
}
body.page-id-177 #content > .img:first-child {
  width: min(100%, 1080px) !important;
  margin: 0 auto;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(23,86,169,.14);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7,26,61,.2);
}
body.page-id-177 #content > .img:first-child .img-inner { overflow: hidden; border-radius: 18px; }
body.page-id-177 #content > .img:first-child img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
body.page-id-177 #content > .gap-element { height: clamp(1.5rem, 4vw, 3rem) !important; padding-top: 0 !important; }

body.page-id-177 #content > .row {
  width: min(100%, 1080px) !important;
  max-width: none;
  margin: 0 auto !important;
  align-items: stretch;
}
body.page-id-177 #content > .row > .col { display: flex; padding: 0 clamp(8px, 1.4vw, 14px); }
body.page-id-177 #content > .row > .col > .col-inner {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.6rem) !important;
  border-radius: 24px;
}

body.page-id-177 #content > .row > .col:first-child > .col-inner {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.15), transparent 15rem),
    linear-gradient(145deg, #04112a, #0c4386 62%, #8d173a);
  box-shadow: 0 24px 60px rgba(7,26,61,.24);
}
body.page-id-177 #content > .row > .col:first-child > .col-inner::before {
  content: "DIRECT CONTACT";
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #f4d777;
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
}
body.page-id-177 #content > .row > .col:first-child > .col-inner::after {
  content: "MEDIA  •  LICENSING  •  APPEARANCES  •  PARTNERSHIPS";
  display: block;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.76);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.7;
}
body.page-id-177 #content > .row > .col:first-child p { color: rgba(255,255,255,.9); }
body.page-id-177 #content > .row > .col:first-child p:first-of-type { margin-bottom: 2rem; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 750; line-height: 1.32; }
body.page-id-177 #content > .row > .col:first-child p:first-of-type > span { font-size: inherit !important; }
body.page-id-177 #content > .row > .col:first-child p:first-of-type span span { color: #fff !important; }
body.page-id-177 #content > .row > .col:first-child p:first-of-type a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: .7rem 1.1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red));
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 850;
  letter-spacing: .025em;
}
body.page-id-177 #content > .row > .col:first-child p:nth-of-type(2) { font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
body.page-id-177 #content > .row > .col:first-child p:nth-of-type(2) a {
  display: inline-block;
  max-width: 100%;
  margin-top: .65rem;
  color: #fff !important;
  font-size: clamp(.9rem, 1.8vw, 1.08rem);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
}

body.page-id-177 #content > .row > .col:nth-child(2) > .col-inner {
  border: 1px solid rgba(23,86,169,.14);
  background: #fff;
  box-shadow: 0 24px 60px rgba(7,26,61,.14);
}
body.page-id-177 .section-title-container { margin: 0 0 1.5rem; }
body.page-id-177 .section-title-main {
  width: 100%;
  justify-content: center;
  padding: .75em 1em !important;
  color: #fff !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--awso-navy), var(--awso-blue));
  box-shadow: 0 12px 28px rgba(7,26,61,.18);
  font-size: clamp(.95rem, 2vw, 1.15rem);
}
body.page-id-177 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
body.page-id-177 .wpcf7-form > .hidden-fields-container,
body.page-id-177 .wpcf7-form > p:nth-of-type(n+3),
body.page-id-177 .wpcf7-response-output { grid-column: 1 / -1; }
body.page-id-177 .wpcf7-form p { margin: 0; }
body.page-id-177 .wpcf7-form label { display: block; color: var(--awso-navy); font-size: .75rem; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
body.page-id-177 .wpcf7-form-control-wrap { display: block; margin-top: .45rem; }
body.page-id-177 .wpcf7-form input[type="text"],
body.page-id-177 .wpcf7-form input[type="email"],
body.page-id-177 .wpcf7-form textarea {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(23,86,169,.2);
  border-radius: 12px;
  background: #f7f9fc;
  box-shadow: inset 0 1px 2px rgba(7,26,61,.045);
}
body.page-id-177 .wpcf7-form input[type="text"],
body.page-id-177 .wpcf7-form input[type="email"] { height: 50px; }
body.page-id-177 .wpcf7-form textarea { min-height: 155px; resize: vertical; }
body.page-id-177 .wpcf7-form input:focus,
body.page-id-177 .wpcf7-form textarea:focus { border-color: var(--awso-royal); background: #fff; box-shadow: 0 0 0 4px rgba(23,86,169,.12); }
body.page-id-177 .wpcf7-submit {
  min-width: 180px;
  min-height: 50px;
  margin: .25rem 0 0;
  padding: 0 1.8rem;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .09em;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red));
  box-shadow: 0 12px 28px rgba(179,25,66,.25);
}
body.page-id-177 .wpcf7-response-output { margin: 0 !important; border-radius: 10px; }

@media (max-width: 849px) {
  body.page-id-177 #content { padding-right: 10px; padding-left: 10px; }
  body.page-id-177 #content > .row > .col { padding: 8px 0; }
  body.page-id-177 #content > .row > .col > .col-inner { border-radius: 20px; }
}

@media (max-width: 549px) {
  body.page-id-177 #content > .img:first-child { padding: 5px; border-radius: 18px; }
  body.page-id-177 #content > .img:first-child .img-inner { border-radius: 13px; }
  body.page-id-177 #content > .row > .col > .col-inner { padding: 1.35rem !important; }
  body.page-id-177 .wpcf7-form { grid-template-columns: 1fr; }
  body.page-id-177 .wpcf7-form > * { grid-column: 1 !important; }
  body.page-id-177 .wpcf7-submit { width: 100%; }
}

/* Press archive, articles, and sidebar */
body.blog .blog-wrapper,
body.archive .blog-wrapper,
body.single-post .blog-wrapper { padding-top: 0; }

body.blog article.post .article-inner,
body.archive article.post .article-inner,
body.single-post article.post .article-inner {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(23,86,169,.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7,26,61,.12);
}

body.blog article.post .entry-header-text,
body.archive article.post .entry-header-text,
body.single-post article.post .entry-header-text,
body.blog article.post .entry-content,
body.archive article.post .entry-content,
body.single-post article.post .entry-content,
body.single-post article.post .entry-footer { padding-right: clamp(1.25rem, 4vw, 3rem); padding-left: clamp(1.25rem, 4vw, 3rem); }

body.blog article.post .entry-title,
body.archive article.post .entry-title,
body.single-post article.post .entry-title { color: var(--awso-navy); font-weight: 850; line-height: 1.18; }
body.blog article.post .entry-image img,
body.archive article.post .entry-image img,
body.single-post article.post .entry-image img { width: 100%; }

body.blog .sidebar-wrapper,
body.archive .sidebar-wrapper,
body.single-post .sidebar-wrapper {
  padding: 1.5rem;
  border: 1px solid rgba(23,86,169,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(7,26,61,.1);
}

/* Press archive — editorial card experience */
body.blog #main {
  background:
    radial-gradient(circle at 10% 12%, rgba(23,86,169,.09), transparent 28rem),
    radial-gradient(circle at 92% 62%, rgba(179,25,66,.065), transparent 30rem),
    linear-gradient(180deg, #f7f9fd, var(--awso-cream));
}
body.blog .awso-page-hero {
  min-height: 310px;
  background:
    radial-gradient(circle at 15% 35%, rgba(255,255,255,.16), transparent 18rem),
    linear-gradient(120deg, #04112a, #0c4386 62%, #94163b);
  box-shadow: 0 24px 60px rgba(7,26,61,.24);
}
body.blog .awso-page-hero__eyebrow { color: #f4d777; }
body.blog .awso-page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); letter-spacing: .045em; }
body.blog .blog-wrapper { padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 6rem); }
body.blog .blog-wrapper > .row {
  width: min(calc(100% - 32px), 1160px);
  max-width: none;
  margin-inline: auto;
}
body.blog .row-divided > .large-9 { padding-right: clamp(16px, 3vw, 34px); }
body.blog .row-divided > .large-3 { padding-left: clamp(16px, 3vw, 30px); }

body.blog #post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.65rem);
}
body.blog #post-list > article { min-width: 0; margin: 0; animation: awso-press-card-rise .65s ease both; }
body.blog #post-list > article:nth-child(2n) { animation-delay: .07s; }
body.blog article.post .article-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
  border-top: 4px solid var(--awso-red);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(7,26,61,.13);
  transition: transform .3s ease, box-shadow .3s ease;
}
body.blog article.post:hover .article-inner { transform: translateY(-7px); box-shadow: 0 28px 62px rgba(7,26,61,.2); }
body.blog article.post .entry-header { display: flex; flex-direction: column; }
body.blog article.post .entry-image { order: -1; overflow: hidden; background: #e8edf5; }
body.blog article.post .entry-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
body.blog article.post:hover .entry-image img { transform: scale(1.045); filter: saturate(1.06) contrast(1.025); }
body.blog article.post .entry-header-text {
  padding: 1.35rem 1.35rem .8rem;
  text-align: left;
}
body.blog article.post .entry-category,
body.blog article.post .byline,
body.blog article.post > .article-inner > footer.entry-meta { display: none; }
body.blog article.post .entry-title {
  min-height: 2.45em;
  margin: 0 0 .75rem;
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  letter-spacing: -.015em;
  line-height: 1.22;
}
body.blog article.post .entry-title a { color: var(--awso-navy); }
body.blog article.post .entry-title a:hover { color: var(--awso-red); }
body.blog article.post .entry-divider { width: 62px; height: 3px; margin: 0 0 .65rem; background: linear-gradient(90deg, var(--awso-red), var(--awso-royal)); }
body.blog article.post .entry-meta { color: #627087; font-size: .7rem; font-weight: 750; letter-spacing: .075em; }
body.blog article.post .entry-meta .posted-on::before { content: "PRESS ARCHIVE  •  "; color: var(--awso-red); }
body.blog article.post .entry-content {
  margin-top: auto;
  padding: 0 1.35rem 1.45rem;
  text-align: left;
}
body.blog article.post .more-link {
  min-width: 165px;
  min-height: 44px;
  margin: 0;
  font-size: .76rem;
  letter-spacing: .075em;
}

body.blog #post-list > .nav-pagination {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 1.5rem 0 0;
}
body.blog .nav-pagination > li > span,
body.blog .nav-pagination > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(23,86,169,.16);
  border-radius: 50%;
  color: var(--awso-navy);
  background: #fff;
  box-shadow: 0 8px 20px rgba(7,26,61,.1);
}
body.blog .nav-pagination > li > .current,
body.blog .nav-pagination > li > a:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--awso-red), var(--awso-blue)); }

body.blog .post-sidebar #secondary {
  position: sticky;
  top: 92px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(7,26,61,.14);
}
body.blog .post-sidebar #secondary .widget { margin: 0; padding: 1.5rem; border-bottom: 1px solid rgba(23,86,169,.12); }
body.blog .post-sidebar #secondary .widget:last-child { border-bottom: 0; }
body.blog .post-sidebar #secondary .widget:first-child {
  color: #fff;
  background: linear-gradient(145deg, var(--awso-navy), var(--awso-blue) 62%, #8b173a);
}
body.blog .post-sidebar #secondary .widget:first-child .widget-title,
body.blog .post-sidebar #secondary .widget:first-child p,
body.blog .post-sidebar #secondary .widget:first-child em { color: #fff; }
body.blog .post-sidebar #secondary .widget-title {
  display: block;
  margin-bottom: 1rem;
  color: var(--awso-navy);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .095em;
}
body.blog .post-sidebar #secondary .is-divider { width: 54px; height: 3px; margin: .6rem 0 1rem; background: linear-gradient(90deg, var(--awso-red), var(--awso-royal)); }
body.blog .post-sidebar #secondary .post-item { padding: .6rem 0; }
body.blog .post-sidebar #secondary .post-title { color: var(--awso-navy); font-size: .82rem; font-weight: 750; line-height: 1.35; }
body.blog .post-sidebar #secondary .badge { transform: scale(.82); transform-origin: left center; }

@keyframes awso-press-card-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 849px) {
  body.blog .blog-wrapper > .row { width: min(calc(100% - 20px), 1160px); }
  body.blog .row-divided > .large-9,
  body.blog .row-divided > .large-3 { padding-right: 10px; padding-left: 10px; border: 0; }
  body.blog .post-sidebar #secondary { position: static; margin-top: 2rem; }
}

@media (max-width: 649px) {
  body.blog #post-list { grid-template-columns: 1fr; }
  body.blog .awso-page-hero { min-height: 250px; }
  body.blog article.post .entry-title { min-height: 0; }
  body.blog article.post .entry-header-text,
  body.blog article.post .entry-content { padding-right: 1.1rem; padding-left: 1.1rem; }
}

body.awso-interior-restyled blockquote { margin-left: 0; padding: 1.2rem 1.5rem; border-left: 5px solid var(--awso-red); border-radius: 0 12px 12px 0; color: var(--awso-navy); background: rgba(23,86,169,.06); }
body.awso-interior-restyled table { overflow: hidden; border: 1px solid rgba(23,86,169,.13); border-radius: 12px; background: #fff; box-shadow: 0 8px 25px rgba(7,26,61,.08); }
body.awso-interior-restyled th { color: #fff; background: var(--awso-navy); }
body.awso-interior-restyled tr:nth-child(even) td { background: rgba(23,86,169,.04); }

/* Charities — focused page experience */
body.page-id-175 #content {
  padding: clamp(2rem, 5vw, 4.5rem) 24px clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 22%, rgba(23,86,169,.08), transparent 28rem),
    linear-gradient(180deg, #fff 0, var(--awso-cream) 100%);
}

body.page-id-175 #content > .img:first-child {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 24px;
  box-shadow: 0 26px 65px rgba(7,26,61,.22);
}

body.page-id-175 #content > .img:first-child .img-inner { border-radius: 0; }
body.page-id-175 #content > .img:first-child img {
  width: 100%;
  min-height: 320px;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

body.page-id-175 #content > .section-title-container {
  display: none;
}

body.page-id-175 #content > .section {
  max-width: 980px;
  z-index: 2;
  margin: -54px auto clamp(2.5rem, 5vw, 4rem);
  padding: clamp(4.6rem, 7vw, 5.5rem) clamp(1.6rem, 4vw, 3.25rem) clamp(1.6rem, 4vw, 3.25rem) !important;
  overflow: hidden;
  border: 1px solid rgba(215,173,75,.38);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(23,86,169,.55), transparent 24rem),
    linear-gradient(135deg, #04112a, var(--awso-navy)) !important;
  box-shadow: 0 22px 55px rgba(7,26,61,.22);
}

body.page-id-175 #content > .section::before {
  content: "★  UNITED IN SERVICE  ★";
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 100%;
  color: #f1d47d;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-align: center;
}

body.page-id-175 #content > .section .section-content { position: relative; z-index: 1; width: 100%; }
body.page-id-175 #content > .section p:first-child {
  max-width: 750px;
  margin: 0 auto 1.75rem;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: .02em;
  text-align: center;
}

body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0;
  text-align: initial !important;
}

body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) br { display: none; }
body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) a {
  display: flex;
  flex: 0 0 calc(50% - 12px);
  align-items: center;
  margin: 6px;
  min-height: 58px;
  padding: .75rem 1rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: rgba(255,255,255,.075);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) a::before {
  content: "★";
  flex: 0 0 auto;
  margin-right: .7rem;
  color: var(--awso-gold);
  font-size: .72rem;
}

body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(215,173,75,.72);
  background: rgba(23,86,169,.35);
}

body.page-id-175 #content > .section .ccm-block-styles { margin-top: 1.25rem; }
body.page-id-175 #content > .section .ccm-block-styles p { margin: 0; }
body.page-id-175 #content > .section .ccm-block-styles a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.35rem;
  color: var(--awso-navy);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5df96, var(--awso-gold));
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  font-weight: 850;
  text-decoration: none;
}

body.page-id-175 #content > .row {
  max-width: 1080px;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 18px;
}

body.page-id-175 #content > .row > .col {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0;
}

body.page-id-175 #content > .row > .col > .col-inner {
  height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(23,86,169,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 13px 34px rgba(7,26,61,.1);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

body.page-id-175 #content > .row > .col > .col-inner:hover {
  transform: translateY(-7px);
  border-color: rgba(215,173,75,.65);
  box-shadow: 0 23px 46px rgba(7,26,61,.17);
}

body.page-id-175 #content > .row .img,
body.page-id-175 #content > .row .img-inner,
body.page-id-175 #content > .row .img a {
  width: 100% !important;
  height: 100%;
}

body.page-id-175 #content > .row .img-inner,
body.page-id-175 #content > .row .img a {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-id-175 #content > .row .img a {
  flex-direction: column;
  color: var(--awso-navy);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

body.page-id-175 #content > .row .img-inner {
  height: auto;
  flex: 1 1 auto;
}

body.page-id-175 #content > .row .img a::after { margin-top: 10px; }
body.page-id-175 #content > .row .img a[href*="bobhopeuso"]::after { content: "Bob Hope USO LAX"; }
body.page-id-175 #content > .row .img a[href*="mdausa"]::after { content: "MDA Mattie Fund"; }
body.page-id-175 #content > .row .img a[href*="ufalocal94"]::after { content: "Firefighters' Families Fund"; }
body.page-id-175 #content > .row .img a[href*="pennylane"]::after { content: "Penny Lane Centers"; }
body.page-id-175 #content > .row .img a[href*="jimmyv"]::after { content: "The V Foundation"; }
body.page-id-175 #content > .row .img a[href*="wish.org"]::after { content: "Make-A-Wish Foundation"; }
body.page-id-175 #content > .row .img a[href*="stjude"]::after { content: "St. Jude Children's Research Hospital"; }
body.page-id-175 #content > .row .img a[href*="autism-society"]::after { content: "Autism Society of America"; }

body.page-id-175 #content > .row img {
  width: auto;
  max-width: min(100%, 220px);
  max-height: 125px;
  object-fit: contain;
  filter: saturate(.94);
  transition: transform .3s ease, filter .3s ease;
}

body.page-id-175 #content > .row a:hover img { transform: scale(1.055); filter: saturate(1.08); }

body.page-id-175 #content > #sub-content-full:last-of-type {
  max-width: 1080px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(215,173,75,.5);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(110deg, var(--awso-red), var(--awso-navy) 68%);
  box-shadow: 0 16px 38px rgba(7,26,61,.18);
}

body.page-id-175 #content > #sub-content-full:last-of-type p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  letter-spacing: .02em;
}

@media (max-width: 849px) {
  body.page-id-175 #content > .row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-id-175 #content > .section #sub-content-full > p:nth-child(2) a { flex-basis: calc(100% - 12px); }
}

@media (max-width: 549px) {
  body.page-id-175 #content { padding-right: 14px; padding-left: 14px; }
  body.page-id-175 #content > .img:first-child { border-radius: 16px; }
  body.page-id-175 #content > .img:first-child img { min-height: 220px; }
  body.page-id-175 #content > .section { margin-top: -28px; padding: 4.4rem 1.35rem 1.35rem !important; border-radius: 16px; }
  body.page-id-175 #content > .row { gap: 12px; }
  body.page-id-175 #content > .row > .col > .col-inner { height: 155px; padding: 16px; border-radius: 14px; }
  body.page-id-175 #content > .row img { max-height: 105px; }
}

/* Downloads — clear, touch-friendly resource library */
body.page-id-171 #content {
  padding: clamp(2rem, 5vw, 4.5rem) 24px clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(23,86,169,.08), transparent 30rem),
    linear-gradient(180deg, #fff 0, var(--awso-cream) 100%);
}

body.page-id-171 #content > .img:first-child {
  max-width: 1120px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  background: var(--awso-navy);
  box-shadow: 0 26px 65px rgba(7,26,61,.22);
}

body.page-id-171 #content > .img:first-child .img-inner { border-radius: 0; }
body.page-id-171 #content > .img:first-child img {
  width: 100%;
  min-height: 300px;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

body.page-id-171 #content > .section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 !important;
  background: transparent !important;
}

body.page-id-171 #content > .section .section-content { width: 100%; }
body.page-id-171 #content > .section .gap-element:first-child { display: none !important; }

body.page-id-171 #content .section-title-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 2.75rem auto 0;
}

body.page-id-171 #content .section-title-main {
  color: #fff !important;
  border-color: rgba(215,173,75,.5) !important;
  background: linear-gradient(120deg, var(--awso-red), var(--awso-navy));
  box-shadow: 0 12px 28px rgba(7,26,61,.2);
}

body.page-id-171 #content .section-title-main::before,
body.page-id-171 #content .section-title-main::after { color: #f1d47d; }

body.page-id-171 #content .fileset-list {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: -13px auto 2.5rem;
  padding: 44px 24px 24px;
  list-style: none;
  border: 1px solid rgba(23,86,169,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 17px 42px rgba(7,26,61,.11);
}

body.page-id-171 #content .fileset-list li {
  margin: 0;
  padding: 0;
  text-align: left !important;
}

body.page-id-171 #content .fileset-list a {
  min-height: 64px;
  height: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  padding: .75rem 1rem .75rem .7rem;
  color: var(--awso-navy);
  border: 1px solid rgba(23,86,169,.12);
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #f3f6fb);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(7,26,61,.06);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.page-id-171 #content .fileset-list a::before {
  content: "↓";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red));
  box-shadow: 0 6px 15px rgba(179,25,66,.22);
  font-size: 1.1rem;
  font-weight: 900;
}

body.page-id-171 #content .fileset-list a:hover {
  transform: translateY(-3px);
  color: var(--awso-red);
  border-color: rgba(179,25,66,.32);
  box-shadow: 0 13px 26px rgba(7,26,61,.12);
}

body.page-id-171 #content .section-content > .row:last-of-type {
  max-width: 980px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23,86,169,.15);
}

body.page-id-171 #content .section-content > .row:last-of-type .button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 849px) {
  body.page-id-171 #content .fileset-list { grid-template-columns: 1fr; }
}

@media (max-width: 549px) {
  body.page-id-171 #content { padding-right: 14px; padding-left: 14px; }
  body.page-id-171 #content > .img:first-child { border-radius: 16px; }
  body.page-id-171 #content > .img:first-child img { min-height: 210px; }
  body.page-id-171 #content .section-title-container { margin-top: 2.2rem; }
  body.page-id-171 #content .fileset-list { margin-top: -11px; padding: 36px 12px 12px; border-radius: 15px; }
  body.page-id-171 #content .fileset-list a { grid-template-columns: 38px minmax(0,1fr); padding-right: .75rem; font-size: .84rem; }
}

@media (max-width: 849px) {
  .awso-page-hero { min-height: 205px; padding-block: 42px; }
  body.awso-interior-restyled .page-wrapper { padding-top: 2rem; }
  body.blog .sidebar-wrapper,
  body.archive .sidebar-wrapper,
  body.single-post .sidebar-wrapper { margin-top: 1.5rem; }
}

@media (max-width: 549px) {
  .awso-page-hero { min-height: 175px; padding: 34px 18px; }
  .awso-page-hero h1 { font-size: clamp(1.9rem, 11vw, 3rem); }
  .awso-page-hero__eyebrow { font-size: .66rem; letter-spacing: .16em; }
  body.awso-interior-restyled:not(.page-template-page-blank):not(.page-id-80) .page-wrapper > .row-main > .col > .col-inner { padding: 1.15rem; border-radius: 16px; }
  body.awso-interior-restyled .wpcf7 { padding: 1rem; }
  body.page-id-80 #main .banner:first-of-type { min-height: 780px; }
}

/* Responsive media system and site-wide mobile hardening */
html,
body { max-width: 100%; overflow-x: clip; }

/* Homepage video system: responsive hero background and 16:9 content players. */
body.home #main .banner:first-of-type .banner-bg { overflow: hidden; background: #020817; }
body.home #main .banner:first-of-type .banner-bg .ux-youtube {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  border-radius: 0;
  box-shadow: none;
}

body.home #main .video-fit {
  width: 100%;
  height: auto !important;
  padding-top: 0 !important;
  aspect-ratio: 16 / 9;
}
body.home #main .video-fit > p { display: contents; }
body.home #main .video-fit iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9;
}

#main img,
#main svg,
#main canvas,
#main video,
#main embed,
#main object { max-width: 100%; height: auto; }

#main .video-fit,
#main .responsive-video,
#main .wp-block-embed-youtube .wp-block-embed__wrapper,
#main .wp-block-embed-vimeo .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0 !important;
  padding-top: 56.25% !important;
  overflow: hidden;
  border-radius: var(--awso-radius);
  background: #020817;
  box-shadow: 0 20px 50px rgba(7,26,61,.2);
}

#main .video-fit iframe,
#main .responsive-video iframe,
#main .wp-block-embed-youtube iframe,
#main .wp-block-embed-vimeo iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  border: 0;
  border-radius: inherit;
}

#main iframe[src*="youtube.com"],
#main iframe[src*="youtube-nocookie.com"],
#main iframe[src*="player.vimeo.com"] {
  display: block;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

#main figure { max-width: 100%; margin-right: 0; margin-left: 0; }
#main iframe[src*="soundcloud.com"] {
  display: block;
  width: 100% !important;
  height: clamp(420px, 56vw, 620px) !important;
  max-width: 100%;
}

#main audio,
#main video { display: block; width: 100%; }

body.page-id-23 .video-fit,
body.page-id-169 .video-fit {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

body.page-id-23 #sub-content-full,
body.page-id-169 #sub-content-full,
body.page-id-212 .page-wrapper p { text-align: center; }

body.page-id-23 .page-wrapper > .row-main > .col > .col-inner,
body.page-id-169 .page-wrapper > .row-main > .col > .col-inner,
body.page-id-212 .page-wrapper > .row-main > .col > .col-inner { max-width: 1120px; margin-inline: auto; }

@media (max-width: 849px) {
  body.boxed #wrapper,
  body.boxed #main,
  body.boxed #content { width: 100%; max-width: 100%; }

  body.awso-interior-restyled #main .row-main {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  body.awso-interior-restyled #main .row-main > .col {
    padding-right: 14px;
    padding-left: 14px;
  }

  #main .row,
  #main .container,
  #footer .row,
  #footer .container { max-width: 100%; }

  #main .col,
  #main .col-inner,
  #main .section-content,
  #main .banner-layers { min-width: 0; }

  #main .text-box { max-width: calc(100% - 24px) !important; }

  #main h1,
  #main h2,
  #main h3,
  #main h4,
  #main p,
  #main li,
  #main a { overflow-wrap: anywhere; }

  body.awso-interior-restyled .page-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  body.home #main .banner:first-of-type .ux-youtube.hide-for-medium {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .awso-home-hero { min-height: 650px !important; }
  .awso-home-ctas { margin-top: -24px !important; border-radius: 18px; }
  .awso-home-story { width: min(calc(100% - 20px), 1120px) !important; border-radius: 22px; }
  .awso-home-story .section-content { padding: .75rem; }
  .awso-home-story h1 { text-align: center; }
  .awso-home-video-grid,
  .awso-home-press-grid { width: min(calc(100% - 20px), 1120px) !important; }

  body.awso-interior-restyled iframe,
  body.awso-interior-restyled embed,
  body.awso-interior-restyled object { max-width: 100% !important; }

  #main table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #main pre,
  #main code { max-width: 100%; overflow-wrap: anywhere; }

  #main .button,
  #main a.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

  .cky-consent-container { width: calc(100% - 24px) !important; max-width: 440px !important; }
}

@media (max-width: 549px) {
  #main iframe[src*="soundcloud.com"] { height: 440px !important; }

  body.awso-interior-restyled .section-title-main {
    padding-right: 1em !important;
    padding-left: 1em !important;
    font-size: 1rem;
    letter-spacing: .08em;
  }

  body.awso-interior-restyled .section-title-main::before,
  body.awso-interior-restyled .section-title-main::after { font-size: .58em; }

  body.page-id-23 .page-wrapper > .row-main > .col > .col-inner,
  body.page-id-169 .page-wrapper > .row-main > .col > .col-inner,
  body.page-id-212 .page-wrapper > .row-main > .col > .col-inner { padding: 1rem; }

  #awso-holiday-ribbon {
    gap: .45rem;
    padding-right: 38px;
    padding-left: 10px;
    line-height: 1.35;
  }

  .awso-home-hero { min-height: 590px !important; }
  .awso-home-hero .text-inner::before { letter-spacing: .1em; line-height: 1.6; }
  .awso-home-ctas { width: calc(100% - 20px) !important; margin-bottom: 2.5rem !important; padding: 10px 6px 4px; }
  .awso-home-ctas .button { min-height: 52px !important; }
  .awso-home-story .medium-6:first-child .col-inner { padding: 7px !important; }
  .awso-home-story .gallery-col { padding: 5px; }
  .awso-home-section-heading .section-title-main { padding: .75em 1em !important; letter-spacing: .08em; }
  .awso-home-video-grid > .col > .col-inner { padding: 7px !important; border-radius: 17px; }
  .awso-home-partner { width: calc(100% - 20px) !important; padding: .65rem; border-radius: 15px; }

  #footer .absolute-footer,
  #footer .footer-secondary { text-align: center; }
}

/* Footer */
#footer { position: relative; overflow: hidden; color: rgba(255,255,255,.82); background: linear-gradient(135deg, #04112a, var(--awso-navy)); }
#footer::before { content: ""; position: absolute; inset: 0; opacity: .15; background: repeating-linear-gradient(0deg, transparent 0 18px, #fff 18px 24px, transparent 24px 42px); }
#footer .absolute-footer { position: relative; z-index: 2; padding: 16px 0 18px; border-top: 3px solid var(--awso-red); background: rgba(4,17,42,.94); }
#footer .footer-primary { float: none; text-align: center; }
#footer .copyright-footer,
#footer .copyright-footer strong {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0,0,0,.9);
}

.awso-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1rem;
  margin-top: .65rem;
  font-size: .75rem;
  letter-spacing: .035em;
}
.awso-footer-legal a { color: rgba(255,255,255,.86); }
.awso-footer-legal a:hover,
.awso-footer-legal a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

body.awso-legal-page .awso-legal-main { background: linear-gradient(180deg, #f7f9fd, #fff 45%); }
.awso-legal-shell { width: min(100% - 32px, 920px); margin: 0 auto; padding: clamp(2rem, 6vw, 4.5rem) 0; }
.awso-legal-card {
  padding: clamp(1.5rem, 5vw, 3.75rem);
  border: 1px solid rgba(23,86,169,.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(7,26,61,.12);
}
.awso-legal-card h2 { margin-top: 2rem; color: var(--awso-navy); font-size: clamp(1.25rem, 3vw, 1.65rem); }
.awso-legal-card p,
.awso-legal-card li { color: #34445d; line-height: 1.8; }
.awso-legal-card a { color: var(--awso-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.awso-legal-updated { padding-bottom: 1rem; border-bottom: 1px solid rgba(23,86,169,.14); color: #5f6e83 !important; font-size: .86rem; }

.awso-service-unavailable { min-height: 52vh; padding: clamp(2rem, 7vw, 5rem) 0; }
.awso-service-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(23,86,169,.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(7,26,61,.12);
  text-align: center;
}
.awso-service-eyebrow { color: var(--awso-red); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.awso-service-card h2 { color: var(--awso-navy); font-size: clamp(1.45rem, 4vw, 2.25rem); }
.awso-service-card p:not(.awso-service-eyebrow) { max-width: 610px; margin-inline: auto; color: #44546c; line-height: 1.75; }
.awso-service-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

@media (max-width: 549px) {
  .awso-footer-legal { gap: .55rem .85rem; line-height: 1.5; }
  .awso-legal-shell { width: min(100% - 20px, 920px); padding-top: 1.25rem; }
  .awso-legal-card { padding: 1.25rem; border-radius: 16px; }
}

/* Date-aware holiday ribbon and atmosphere */
#awso-holiday-ribbon {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-height: 38px;
  padding: 7px 48px 7px 18px;
  color: #fff;
  background: linear-gradient(90deg, #8f102f, var(--awso-red), var(--awso-blue), var(--awso-navy));
  box-shadow: 0 7px 18px rgba(7,26,61,.2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

#awso-holiday-ribbon::before,
#awso-holiday-ribbon::after { content: "★"; color: #f4d777; }

.awso-seasonal-layer { position: fixed; inset: 0; z-index: 9998; overflow: hidden; pointer-events: none; }
.awso-seasonal-layer .awso-star {
  position: absolute;
  top: -24px;
  color: rgba(255,255,255,.72);
  text-shadow: 0 0 9px rgba(255,255,255,.45);
  animation: awso-star-fall linear infinite;
}

#awso-fireworks { position: fixed; inset: 0; z-index: 9997; width: 100%; height: 100%; pointer-events: none; }

.awso-effect-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: var(--awso-navy);
  box-shadow: 0 7px 22px rgba(0,0,0,.25);
  font-size: 18px;
  cursor: pointer;
}

body.awso-effects-paused .awso-seasonal-layer,
body.awso-effects-paused #awso-fireworks { display: none; }

@keyframes awso-stars-drift { to { background-position: 58px 58px, -48px 98px; } }
@keyframes awso-star-fall { to { transform: translate3d(44px, calc(100vh + 60px), 0) rotate(360deg); } }

@media (max-width: 849px) {
  #header .header-inner { min-height: 70px; }
  #logo { width: 250px !important; }
  .home #main .banner:first-of-type { min-height: 680px; }
  .home #main .banner:first-of-type .text-box-content { padding: 24px 18px !important; border-radius: 16px; }
  .home #main .banner:first-of-type h3.uppercase { font-size: clamp(1.7rem, 8vw, 3rem); }
  #main .button, #main a.button { width: min(100%, 330px); margin-inline: auto; }
}

@media (max-width: 549px) {
  #logo { width: 220px !important; }
  .home #main .banner:first-of-type { min-height: 620px; }
  #awso-holiday-ribbon { font-size: 10px; letter-spacing: .08em; }
  .post-item .col-inner { border-radius: 14px; }
}

/* Brand identity v2: header wordmark and footer emblem. */
#header #logo {
  width: clamp(238px, 24vw, 310px) !important;
}

#header #logo > a {
  display: block;
  width: 100%;
  min-height: 70px;
  background: url("../images/awso-header-logo-v2.png") center / contain no-repeat;
}

#header #logo img {
  width: 100% !important;
  height: 70px !important;
  opacity: 0 !important;
}

.awso-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin: 0 auto .65rem;
  color: #fff;
  font-size: clamp(.78rem, 1.4vw, .95rem);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.awso-footer-brand img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

@media (max-width: 849px) {
  #header #logo { width: 218px !important; }
  #header #logo > a { min-height: 64px; }
  #header #logo img { height: 64px !important; }
}

@media (max-width: 549px) {
  #header #logo { width: 196px !important; }
  #header #logo > a { min-height: 58px; }
  #header #logo img { height: 58px !important; }
  .awso-footer-brand { flex-direction: column; gap: .4rem; letter-spacing: .11em; }
  .awso-footer-brand img { width: 48px; height: 48px; }
}

/* Universal masthead v3. */
body.awso-universal-chrome #header,
body.awso-universal-chrome #header.transparent {
  position: sticky !important;
  top: 0;
  z-index: 9996;
  isolation: isolate;
}

body.admin-bar.awso-universal-chrome #header { top: 32px; }

#header .header-wrapper {
  border-top: 4px solid var(--awso-navy);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--awso-red), #fff 48%, var(--awso-gold), var(--awso-royal)) 1;
  background:
    radial-gradient(circle at 16% 0, rgba(198,31,59,.1), transparent 30%),
    radial-gradient(circle at 86% 100%, rgba(23,86,169,.1), transparent 32%),
    linear-gradient(115deg, rgba(255,255,255,.99), rgba(247,249,253,.97)) !important;
  box-shadow: 0 12px 34px rgba(7,26,61,.16);
}

#header .header-wrapper::before {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(7,26,61,.035);
  font-size: 96px;
  line-height: 1;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

#header .header-inner {
  min-height: 92px;
  max-width: 1160px;
  padding-inline: clamp(18px, 3vw, 34px);
}

#header #logo > a {
  transition: transform .25s ease, filter .25s ease;
}

#header #logo > a:hover,
#header #logo > a:focus-visible {
  transform: translateY(-1px) scale(1.015);
  filter: saturate(1.08);
}

#header .header-nav-main {
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(7,26,61,.09);
  border-radius: 999px;
  background: rgba(7,26,61,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

#header .header-nav-main.nav-left {
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

#header .header-nav-main > li { margin: 0; }

#header .header-nav-main > li > a {
  min-height: 44px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1;
}

#header .header-nav-main > li > a::after { display: none; }

#header .header-nav-main > li:hover > a,
#header .header-nav-main > li.current-menu-item > a,
#header .header-nav-main > li.current-menu-ancestor > a,
#header .header-nav-main > li.active > a {
  color: #fff !important;
  background: linear-gradient(135deg, var(--awso-navy), var(--awso-royal));
  box-shadow: 0 7px 16px rgba(7,26,61,.2);
  transform: none;
}

#header .header-nav-main > li:last-child > a {
  color: #fff !important;
  background: linear-gradient(135deg, var(--awso-red-bright), var(--awso-red));
  box-shadow: 0 8px 18px rgba(179,25,66,.22);
}

#header .header-nav-main > li:last-child:hover > a,
#header .header-nav-main > li:last-child.current-menu-item > a {
  filter: brightness(1.08);
  box-shadow: 0 10px 22px rgba(179,25,66,.32);
}

#header .nav-dropdown {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(7,26,61,.1) !important;
  border-top: 3px solid var(--awso-gold) !important;
  border-radius: 14px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 22px 55px rgba(7,26,61,.22) !important;
}

#header .nav-dropdown > li > a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--awso-navy);
  font-size: 13px;
  letter-spacing: .03em;
}

#header .nav-dropdown > li > a:hover,
#header .nav-dropdown > li.active > a {
  color: #fff !important;
  background: linear-gradient(135deg, var(--awso-royal), var(--awso-navy));
}

@media (max-width: 849px) {
  body.admin-bar.awso-universal-chrome #header { top: 46px; }
  #header .header-wrapper { border-top-width: 3px; }
  #header .header-inner { min-height: 76px; padding-inline: 13px; }
  #header #logo { width: 208px !important; }
  #header #logo > a { min-height: 62px; }
  #header #logo img { height: 62px !important; }

  #header .mobile-nav > li > a,
  #header .mobile-nav .nav-icon > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0 !important;
    color: var(--awso-navy) !important;
    border: 1px solid rgba(7,26,61,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    box-shadow: 0 6px 16px rgba(7,26,61,.1);
  }

  #header .mobile-nav > li > a:hover,
  #header .mobile-nav > li > a:focus-visible {
    color: #fff !important;
    border-color: var(--awso-royal);
    background: linear-gradient(135deg, var(--awso-navy), var(--awso-royal));
  }

  #header .mobile-nav i { font-size: 20px; }

  .mfp-bg.main-menu-overlay {
    z-index: 10001 !important;
    opacity: .9 !important;
    background: rgba(3,14,35,.9) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .mfp-wrap.off-canvas { z-index: 10002 !important; }

  .mfp-wrap.off-canvas .mfp-content {
    position: static !important;
    display: block !important;
    width: 100%;
    height: 100%;
    transform: none !important;
    vertical-align: top !important;
  }

  #main-menu.mobile-sidebar {
    position: fixed !important;
    inset: 0 auto 0 0;
    width: min(350px, calc(100vw - 34px));
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    color: #fff;
    border-right: 1px solid rgba(212,175,79,.45);
    background:
      radial-gradient(circle at 18% 8%, rgba(23,86,169,.4), transparent 34%),
      linear-gradient(155deg, #071a3d, #0b356d 60%, #071a3d) !important;
    box-shadow: 24px 0 70px rgba(0,0,0,.42);
  }

  #main-menu .sidebar-menu {
    padding: 76px 22px 34px;
    text-align: left !important;
  }

  #main-menu .sidebar-menu::before {
    content: "AMERICA WE STAND AS ONE";
    display: block;
    margin: 0 0 18px;
    padding: 0 10px 16px;
    color: #f4d777;
    border-bottom: 1px solid rgba(255,255,255,.18);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
  }

  #main-menu .header-button-1,
  #main-menu .header-button-2 { display: none !important; }

  #main-menu .nav-sidebar { width: 100%; }
  #main-menu .nav-sidebar > li { margin: 3px 0; }

  #main-menu .nav-sidebar > li > a {
    min-height: 48px;
    padding: 13px 44px 13px 14px;
    color: rgba(255,255,255,.9);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .07em;
  }

  #main-menu .nav-sidebar > li.current-menu-item > a,
  #main-menu .nav-sidebar > li.current-menu-ancestor > a,
  #main-menu .nav-sidebar > li > a:hover,
  #main-menu .nav-sidebar > li > a:focus-visible {
    color: #fff !important;
    border-color: rgba(255,255,255,.16);
    background: linear-gradient(90deg, rgba(198,31,59,.95), rgba(198,31,59,.5));
  }

  #main-menu .nav-sidebar .toggle {
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 9px;
  }

  #main-menu .sub-menu {
    margin: 3px 0 8px 12px;
    padding: 5px 0 5px 10px;
    border-left: 2px solid rgba(212,175,79,.55);
  }

  #main-menu .sub-menu a {
    padding: 9px 10px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    text-transform: none;
  }

  .mfp-wrap.off-canvas .mfp-close {
    top: 14px;
    right: calc(100vw - min(350px, calc(100vw - 34px)) + 12px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
  }
}

@media (max-width: 549px) {
  #header .header-inner { min-height: 72px; }
  #header #logo { width: 192px !important; }
  #header #logo > a { min-height: 58px; }
  #header #logo img { height: 58px !important; }
  #header .mobile-nav > li > a,
  #header .mobile-nav .nav-icon > a { width: 40px; height: 40px; min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .awso-seasonal-layer, #awso-fireworks, .awso-effect-toggle { display: none !important; }
}
