/*
Theme Name: American Beautiful
Theme URI: https://americanbeautiful.com
Author: American Beautiful
Description: A responsive national travel, culture, food, history, outdoors, city and state guide theme for American Beautiful, adapted from the proven Chicago Beautiful theme architecture.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: american-beautiful
Tags: news, blog, two-columns, custom-menu, featured-images, sticky-post
*/

/* =========================================================
   GOOGLE FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand-blue: #41B6E6;
  --news-accent:   #E4002B;
  --gray-900:   #111111;
  --gray-800:   #1f2937;
  --gray-600:   #4b5563;
  --gray-500:   #6b7280;
  --gray-400:   #9ca3af;
  --gray-300:   #d1d5db;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --white:      #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand-blue);
}

ul {
  list-style: none;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =========================================================
   SITE HEADER — Centered wordmark
   ========================================================= */
.site-header {
  background: var(--white);
  text-align: center;
  padding: 1.75rem 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.site-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: #E4002B;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  color: #E4002B;
  opacity: 0.85;
}

.site-description {
  display: none; /* Hidden — title speaks for itself */
}


.custom-logo-wrap,
.bundled-logo-wrap {
  width: min(100%, 980px);
  margin: 0 auto;
}

.custom-logo-link,
.bundled-logo-link {
  display: block;
}

.custom-logo,
.bundled-site-logo {
  width: 100%;
  max-width: 980px;
  max-height: 360px;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .site-header {
    padding: 1rem .75rem;
  }

  .custom-logo,
  .bundled-site-logo {
    max-height: 240px;
  }
}

/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */
.main-navigation {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  position: relative;
  z-index: 100;
}

.main-navigation .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-800);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--brand-blue);
}

/* Dropdown indicator */
.main-navigation ul li.menu-item-has-children > a::after {
  content: ' \25BE';
  font-size: 0.6rem;
}

/* Dropdown submenu */
.main-navigation ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--brand-blue);
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li:hover > .sub-menu,
.main-navigation ul li:focus-within > .sub-menu {
  display: flex;
}

.main-navigation ul li .sub-menu li a {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.7rem;
}

.main-navigation ul li .sub-menu li:last-child a {
  border-bottom: none;
}

/* Search icon */
.nav-search {
  border-left: 1px solid var(--gray-200);
  padding-left: 1rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.nav-search a {
  display: flex;
  align-items: center;
  color: var(--gray-900);
  transition: color 0.15s ease;
}

.nav-search a:hover {
  color: var(--brand-blue);
}

.nav-search svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-900);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Fallback nav for no-menu-assigned */
.nav-fallback {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-fallback a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-800);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-fallback a:hover {
  color: var(--brand-blue);
}

/* =========================================================
   NEWS TICKER
   ========================================================= */
.news-ticker {
  background: var(--gray-900);
  color: var(--white);
  height: 2.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  background: var(--news-accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ticker-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ticker-item a:hover {
  color: #B9DCE8;
}

.ticker-date {
  color: var(--gray-400);
  margin-left: 0.4rem;
  font-size: 0.7rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   HERO / FEATURED POST
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  max-height: 800px;
  background: var(--gray-900);
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hero-section {
    height: 80vh;
  }
}

.hero-section a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-section:hover .hero-image {
  transform: scale(1.04);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #41B6E6 0%, #1a1a2e 100%);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  padding: 2.5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .hero-overlay {
    padding: 4rem 3rem 3rem;
  }
}

.hero-overlay-inner {
  max-width: 900px;
}

.hero-category {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
}

/* =========================================================
   LATEST NEWS SECTION
   ========================================================= */
.latest-news-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  color: var(--gray-900);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Carousel wrapper */
.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-card {
  flex: 0 0 calc(100% - 0px);
  min-width: 0;
}

@media (min-width: 640px) {
  .news-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .news-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (min-width: 1280px) {
  .news-card {
    flex: 0 0 calc(25% - 1.125rem);
  }
}

.news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--gray-200);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-card a:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #41B6E6 0%, #0072CE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-category {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

.news-card a:hover .card-title {
  color: var(--brand-blue);
}

.card-date {
  font-size: 0.7rem;
  color: var(--gray-500);
}

/* View All CTA */
.view-all-wrap {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.btn-view-all {
  display: inline-block;
  border: 2px solid var(--gray-900);
  color: var(--gray-900);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.btn-view-all:hover {
  background: var(--gray-900);
  color: var(--white);
}

/* =========================================================
   ARCHIVE / CATEGORY GRID
   ========================================================= */
.archive-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.archive-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.archive-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

/* =========================================================
   SINGLE POST
   ========================================================= */
.single-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.post-hero-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.single-category {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}

.single-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.single-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.single-meta a {
  color: var(--brand-blue);
}

.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-800);
}

.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; margin: 2em 0 0.75em; color: var(--gray-900); }
.entry-content h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; margin: 1.75em 0 0.5em; color: var(--gray-900); }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.5em; padding: 0; }
.entry-content ul li { list-style: disc; margin-bottom: 0.4em; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.4em; }
.entry-content a { color: var(--brand-blue); text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--brand-blue); padding-left: 1.5rem; margin: 1.5em 0; color: var(--gray-600); font-style: italic; }
.entry-content img { margin: 1.5em 0; border-radius: 0; }
.entry-content figure { margin: 1.5em 0; }
.entry-content figcaption { font-size: 0.8rem; color: var(--gray-500); text-align: center; margin-top: 0.5em; }

.post-tags {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.8rem;
}

.post-tags span { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 0.5rem; }
.post-tags a { color: var(--brand-blue); margin-right: 0.5rem; }

/* =========================================================
   PAGE TEMPLATE
   ========================================================= */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--gray-900);
}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */
.search-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.search-form-header {
  margin-bottom: 2.5rem;
}

.search-form-header h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
}

.search-form-wrap {
  display: flex;
  max-width: 600px;
}

.search-form-wrap input[type="search"] {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-right: none;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-sans);
}

.search-form-wrap input[type="search"]:focus {
  border-color: var(--brand-blue);
}

.search-form-wrap button {
  background: var(--brand-blue);
  color: var(--white);
  border: 2px solid var(--brand-blue);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.15s ease;
}

.search-form-wrap button:hover {
  background: #0072CE;
  border-color: #0072CE;
}

.no-results {
  color: var(--gray-600);
  font-size: 1rem;
  padding: 2rem 0;
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404 {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.error-404 .error-number {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-404 h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.error-404 p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.error-404 .btn-home {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  transition: background 0.15s ease;
}

.error-404 .btn-home:hover {
  background: #0072CE;
  color: var(--white);
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gray-300);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: all 0.15s ease;
}

.pagination .page-numbers:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.pagination .page-numbers.current {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 4rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-800);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--brand-blue);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

/* WordPress generated classes */
.wp-caption { max-width: 100%; }
.wp-caption img { display: block; }
.wp-caption .wp-caption-text { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.5rem; }
.alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* =========================================================
   RESPONSIVE — MOBILE NAV
   ========================================================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-navigation .primary-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0.5rem 0;
  }

  .main-navigation .primary-menu.is-open {
    display: flex;
  }

  .main-navigation ul li a {
    padding: 0.75rem 1.5rem;
  }

  .main-navigation ul li .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--brand-blue);
    margin-left: 1.5rem;
    display: none;
    flex-direction: column;
  }

  .main-navigation ul li.is-open > .sub-menu {
    display: flex;
  }

  .nav-search {
    display: none;
  }

  .nav-inner {
    flex-direction: row;
  }
}

/* =========================================================
   AMERICAN BEAUTIFUL FOOD & COFFEE
   ========================================================= */

/* American Food & Travel v1.2 additions */

/* =========================================================
   AMERICAN SPORTS HUB
   ========================================================= */
.pb-sports-page {
  --sports-navy: #071D49;
  --sports-cream: #f7f3ea;
  --sports-line: rgba(255,255,255,.16);
  background: var(--sports-cream);
  overflow: hidden;
}

.pb-sports-shell {
  width: min(1440px, calc(100% - 3rem));
  margin-inline: auto;
}

.pb-sports-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 165, 68, .28), transparent 30%),
    linear-gradient(120deg, rgba(7,27,51,.98), rgba(0,107,143,.92));
}

.pb-sports-hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -35% 38%;
  height: 72%;
  z-index: -1;
  opacity: .16;
  background: repeating-linear-gradient(135deg, #fff 0 2px, transparent 2px 26px);
  transform: skewX(-18deg);
}

.pb-sports-kicker,
.pb-sports-section-heading p {
  margin: 0 0 .8rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pb-sports-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8.5vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.045em;
}

.pb-sports-intro {
  max-width: 700px;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
}

.pb-sports-content {
  padding-block: 0 clamp(4rem, 8vw, 7rem);
}

.pb-sports-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.pb-sports-team-card {
  --team-accent: #41B6E6;
  min-height: 240px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  border-top: 5px solid var(--team-accent);
  background: #0b1726;
  box-shadow: 0 18px 38px rgba(7,27,51,.14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pb-sports-team-card:hover,
.pb-sports-team-card:focus-visible {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(7,27,51,.22);
}

.pb-sports-team-cubs       { --team-accent: #0E3386; }
.pb-sports-team-white-sox  { --team-accent: #27251F; }
.pb-sports-team-bears      { --team-accent: #C83803; }
.pb-sports-team-bulls      { --team-accent: #CE1141; }
.pb-sports-team-blackhawks { --team-accent: #CF0A2C; }
.pb-sports-team-sky        { --team-accent: #5091CD; }
.pb-sports-team-fire       { --team-accent: #41B6E6; }

.pb-sports-team-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 2px solid color-mix(in srgb, var(--team-accent) 78%, white);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  background: var(--team-accent);
}

.pb-sports-team-mark.small {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  font-size: 1.1rem;
}

.pb-sports-team-copy {
  display: grid;
  gap: .25rem;
}

.pb-sports-team-copy strong {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.pb-sports-team-copy > span:last-child {
  color: rgba(255,255,255,.68);
  font-size: .85rem;
}

.pb-sports-league {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.pb-sports-card-arrow {
  align-self: flex-end;
  font-size: 1.4rem;
  color: var(--team-accent);
}

.pb-sports-page-copy {
  max-width: 900px;
  margin: clamp(3rem, 7vw, 6rem) auto 0;
}

.pb-sports-news {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.pb-sports-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #cdd4dc;
}

.pb-sports-section-heading p { color: var(--brand-blue); }
.pb-sports-section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.03em;
}

.pb-sports-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pb-sports-team-news {
  --team-accent: #41B6E6;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(1.35rem, 2vw, 2rem);
  border-top: 5px solid var(--team-accent);
  background: #fff;
  box-shadow: 0 10px 26px rgba(7,27,51,.08);
}

.pb-sports-team-news > header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pb-sports-team-news > header span:not(.pb-sports-team-mark) {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.pb-sports-team-news h3 {
  margin: .1rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
}

.pb-sports-team-news ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pb-sports-team-news li {
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.pb-sports-team-news li a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.pb-sports-team-news time {
  display: block;
  margin-top: .4rem;
  font-size: .72rem;
  color: var(--gray-500);
}

.pb-sports-empty {
  padding: 1rem 0;
  color: var(--gray-600);
}

.pb-sports-view-all {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--team-accent);
}

@media (max-width: 1000px) {
  .pb-sports-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .pb-sports-shell { width: min(100% - 1.5rem, 1440px); }
  .pb-sports-hero { padding-top: 3.6rem; }
  .pb-sports-team-grid,
  .pb-sports-news-grid { grid-template-columns: 1fr; }
  .pb-sports-team-card { min-height: 190px; }
  .pb-sports-team-news { min-height: 0; }
}


/* American Sports Hub v1.5 — dedicated pages and logo uploads */
.pb-sports-team-logo-wrap {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: .55rem;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.pb-sports-team-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pb-team-page {
  --team-accent: #41B6E6;
  background: #f7f3ea;
  min-height: 60vh;
}

.pb-team-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--team-accent) 42%, transparent), transparent 34%),
    linear-gradient(120deg, #071D49, #071D49);
  border-bottom: 7px solid var(--team-accent);
}

.pb-team-hero-inner {
  min-height: 330px;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.pb-team-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6.3rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.pb-team-page-logo-wrap {
  width: clamp(130px, 17vw, 220px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2vw, 1.7rem);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(0,0,0,.25);
}

.pb-team-page-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pb-team-page-mark {
  width: clamp(120px, 16vw, 190px);
  height: clamp(120px, 16vw, 190px);
  flex: 0 0 auto;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.pb-team-page-content {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  min-height: 360px;
}

.pb-team-admin-note {
  padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--team-accent);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,27,51,.08);
  color: #374151;
}

.pb-team-admin-note strong { color: #111827; }

@media (max-width: 680px) {
  .pb-sports-team-logo-wrap { width: 76px; height: 76px; }
  .pb-team-hero-inner { align-items: flex-start; flex-direction: column; min-height: 0; }
  .pb-team-page-logo-wrap { width: 125px; border-radius: 20px; }
}


/* =========================================================
   HOMEPAGE DESTINATION CARDS — v1.6
   ========================================================= */
.pb-home-destinations {
  padding: clamp(3.2rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 9% 0%, rgba(20,125,100,.10), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(0,63,125,.13), transparent 31%),
    #f7f3ea;
}

.pb-home-destinations-inner {
  width: min(1440px, calc(100% - 3rem));
  margin-inline: auto;
}

.pb-home-destinations-heading {
  max-width: 760px;
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
}

.pb-home-destinations-heading p {
  margin: 0 0 .65rem;
  color: var(--news-accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pb-home-destinations-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: #071D49;
}

.pb-home-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.pb-home-destination-card {
  --card-accent: #41B6E6;
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7,27,51,.12), rgba(7,27,51,.96)),
    linear-gradient(135deg, var(--card-accent), #071D49 68%);
  box-shadow: 0 16px 36px rgba(7,27,51,.16);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease;
}

.pb-home-destination-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 230px;
  aspect-ratio: 1;
  top: -80px;
  right: -72px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.05), 0 0 0 58px rgba(255,255,255,.035);
}

.pb-home-destination-card:hover,
.pb-home-destination-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(7,27,51,.24);
  color: #fff;
}

.pb-home-destination-card--sports { --card-accent: #005B5F; }
.pb-home-destination-card--news { --card-accent: #41B6E6; }
.pb-home-destination-card--coffee { --card-accent: #E4002B; }
.pb-home-destination-card--neighborhoods { --card-accent: #4C7A34; }

.pb-home-destination-symbol {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: grid;
  place-items: center;
  min-width: 66px;
  min-height: 66px;
  padding: .6rem;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(5px);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.pb-home-destination-copy {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.pb-home-destination-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}

.pb-home-destination-copy strong {
  max-width: 12ch;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.pb-home-destination-description {
  max-width: 34ch;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.55;
}

.pb-home-destination-arrow {
  margin-top: 1.4rem;
  align-self: flex-end;
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .pb-home-destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pb-home-destination-card { min-height: 285px; }
}

@media (max-width: 620px) {
  .pb-home-destinations-inner { width: min(100% - 1.5rem, 1440px); }
  .pb-home-destination-grid { grid-template-columns: 1fr; }
  .pb-home-destination-card { min-height: 245px; }
  .pb-home-destination-copy strong { max-width: 15ch; }
}


/* =========================================================
   HOMEPAGE AMERICAN INTRODUCTION
   ========================================================= */
.pb-home-introduction {
  padding: clamp(3.25rem, 6vw, 5.75rem) 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(0, 107, 143, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--gray-200);
}

.pb-home-introduction-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pb-home-introduction-kicker {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.8rem;
  color: var(--news-accent);
  background: rgba(20, 125, 100, 0.08);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.pb-home-introduction h1 {
  margin: 0 auto;
  color: var(--gray-900);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.pb-home-introduction-lead {
  max-width: 790px;
  margin: 1.35rem auto 0;
  color: var(--gray-600);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.pb-home-introduction-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.7rem auto 0;
}

.pb-home-introduction-topics span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  color: var(--brand-blue);
  background: #ffffff;
  border: 1px solid rgba(0, 107, 143, 0.16);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.05);
  font-size: 0.86rem;
  font-weight: 700;
}

.pb-home-introduction-summary {
  max-width: 760px;
  margin: 1.65rem auto 0;
  padding-top: 1.4rem;
  color: var(--gray-800);
  border-top: 1px solid var(--gray-200);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .pb-home-introduction {
    padding: 2.75rem 1rem 3.25rem;
  }

  .pb-home-introduction h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .pb-home-introduction-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .pb-home-introduction-topics {
    gap: 0.5rem;
  }

  .pb-home-introduction-topics span {
    min-height: 34px;
    padding: 0.48rem 0.7rem;
    font-size: 0.78rem;
  }
}


/* =========================================================
   SOCIAL MEDIA & SHARING — v1.10
   ========================================================= */
/* Facebook uses a neutral class name to avoid over-aggressive content blockers. */
.pb-network-fb {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}
.site-header .pb-social-profiles-header .pb-network-fb {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}
.pb-network-fb:hover,
.pb-network-fb:focus-visible,
.site-header .pb-social-profiles-header .pb-network-fb:hover,
.site-header .pb-social-profiles-header .pb-network-fb:focus-visible {
  color: #fff;
  background: #0f5fc4;
  border-color: #0f5fc4;
}

.pb-social-profiles {
  margin: 1.5rem auto;
  text-align: center;
}

.pb-social-heading {
  display: block;
  margin-bottom: .8rem;
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pb-social-profile-list,
.pb-share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.pb-social-profile,
.pb-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  min-height: 40px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.pb-social-profile {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.09);
}

.pb-social-icon,
.pb-share-button svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.pb-social-icon svg { width: 100%; height: 100%; }

.pb-social-profile:hover,
.pb-social-profile:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.site-header .pb-social-profiles-header {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  transform: translateY(-50%);
}

.site-header .pb-social-profiles-header .pb-social-heading {
  margin: 0;
  color: var(--gray-600);
}

.site-header .pb-social-profiles-header .pb-social-profile-list { gap: .38rem; }
.site-header .pb-social-profiles-header .pb-social-profile {
  width: 36px;
  height: 36px;
  color: var(--brand-blue);
  border-color: #d6dee8;
  background: #fff;
}
.site-header .pb-social-profiles-header .pb-social-profile:hover,
.site-header .pb-social-profiles-header .pb-social-profile:focus-visible {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.pb-share-bar {
  clear: both;
  margin: 2.4rem 0 1rem;
  padding: 1.15rem;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  background: #f7f9fc;
}

.pb-share-bar-top {
  margin: .3rem 0 1.8rem;
  padding: .85rem 1rem;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(7,27,51,.06);
}

.pb-share-title {
  display: block;
  margin-bottom: .75rem;
  color: var(--gray-900);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.pb-share-bar-top .pb-share-title { margin-bottom: .62rem; }

.pb-share-button {
  appearance: none;
  min-height: 38px;
  padding: .54rem .72rem;
  cursor: pointer;
  color: var(--gray-900);
  background: #fff;
  border: 1px solid #ccd6e2;
}

.pb-share-bar-top .pb-share-button {
  width: 38px;
  padding: 0;
}
.pb-share-bar-top .pb-share-button span { display: none; }

.pb-share-button:hover,
.pb-share-button:focus-visible {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.pb-share-facebook:hover, .pb-share-facebook:focus-visible { background: #1877f2; border-color: #1877f2; }
.pb-share-x:hover, .pb-share-x:focus-visible { background: #111; border-color: #111; }
.pb-share-linkedin:hover, .pb-share-linkedin:focus-visible { background: #0a66c2; border-color: #0a66c2; }
.pb-share-reddit:hover, .pb-share-reddit:focus-visible { background: #ff4500; border-color: #ff4500; }
.pb-share-status {
  display: block;
  min-height: 1.4em;
  margin-top: .55rem;
  color: var(--gray-600);
  font-size: .78rem;
  text-align: center;
}


.pb-share-bar-middle {
  margin: 2.25rem auto;
  border-left: 4px solid var(--brand-blue);
  background: linear-gradient(90deg, rgba(0, 107, 143, .06), rgba(255, 255, 255, .98));
}

.pb-share-bar-middle .pb-share-actions {
  justify-content: center;
}

.pb-share-bar-middle .pb-share-title {
  text-align: center;
}

@media (max-width: 980px) {
  .site-header .pb-social-profiles-header {
    position: static;
    justify-content: center;
    margin: .8rem auto 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  .pb-share-bar { padding: .9rem .72rem; }
  .pb-share-actions { justify-content: center; }
  .pb-share-bar-bottom .pb-share-button { flex: 1 1 calc(50% - .55rem); }
  .pb-share-bar-top .pb-share-button { width: 38px; flex: 0 0 38px; }
  .site-header .pb-social-profiles-header .pb-social-heading { display: none; }
  .site-header .pb-social-profiles-header .pb-social-profile { width: 34px; height: 34px; }
}



/* Social visibility reliability — v1.11.2 */
.site-header .pb-social-profiles-header .pb-network-fb,
.site-footer .pb-network-fb {
  color: #fff !important;
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.site-header .pb-social-profiles-header .pb-network-fb .pb-social-icon,
.site-footer .pb-network-fb .pb-social-icon {
  display: inline-flex !important;
  color: #fff !important;
}
.site-header .pb-social-profiles-header .pb-network-fb svg,
.site-footer .pb-network-fb svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}


/* =========================================================
   EXPANDED FOOTER SOCIAL CTA — v1.12.1
   ========================================================= */
.pb-footer-social-cta {
  width: min(980px, 100%);
  margin: 2rem auto 2.25rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: 1.5rem 2.5rem;
  text-align: left;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: #071D49;
  box-shadow: 0 14px 34px rgba(15, 35, 55, .18);
}

.pb-footer-social-copy { max-width: 650px; }
.pb-footer-social-kicker {
  margin: 0 0 .45rem;
  color: #E4002B !important;
  font-family: Inter, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pb-footer-social-copy h2,
.site-footer .pb-footer-social-copy h2 {
  margin: 0 0 .65rem;
  color: #fff !important;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.12;
}
.pb-footer-social-copy p,
.site-footer .pb-footer-social-copy p,
.pb-footer-social-copy p:last-child {
  margin: 0;
  color: #eef6ff !important;
  font-size: .98rem;
  line-height: 1.7;
}

.pb-footer-social-icons .pb-social-profiles-footer {
  margin: 0;
  text-align: left;
}
.pb-footer-social-icons .pb-social-heading { display: none; }
.pb-footer-social-icons .pb-social-profile-list {
  justify-content: flex-start;
  align-items: flex-start;
  gap: .85rem;
  flex-wrap: wrap;
}
.pb-footer-social-icons .pb-social-profile {
  position: relative;
  width: 66px;
  min-height: 70px;
  height: auto;
  padding: .65rem .4rem .45rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  color: #fff !important;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 14px;
  text-decoration: none;
}
.pb-footer-social-icons .pb-social-profile:hover,
.pb-footer-social-icons .pb-social-profile:focus-visible {
  background: #fff;
  color: #071D49 !important;
  border-color: #fff;
  transform: translateY(-3px);
}
.pb-footer-social-icons .pb-social-icon {
  width: 24px;
  height: 24px;
}
.pb-footer-social-icons .pb-social-count {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: currentColor;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .pb-footer-social-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pb-footer-social-copy { margin: 0 auto; }
  .pb-footer-social-icons .pb-social-profiles-footer { text-align: center; }
  .pb-footer-social-icons .pb-social-profile-list { justify-content: center; }
}


/* =========================================================
   HEADER SOCIAL STRIP RELIABILITY — v1.12.2
   Keeps configured profile links visible below any custom logo.
   ========================================================= */
.pb-header-social-strip {
  display: block !important;
  width: 100%;
  background: #f5f8fc;
  border-bottom: 1px solid #dbe3ec;
  position: relative;
  z-index: 40;
}

.pb-header-social-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .55rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pb-header-social-strip .pb-social-profiles-header {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pb-header-social-strip .pb-social-heading {
  display: inline-block;
  margin: 0;
  color: #284B5A;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pb-header-social-strip .pb-social-profile-list {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .42rem;
}

.pb-header-social-strip .pb-social-profile {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #41B6E6;
  background: #fff;
  border: 1px solid #cad6e4;
  border-radius: 999px;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.pb-header-social-strip .pb-social-icon,
.pb-header-social-strip .pb-social-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  color: inherit;
  fill: currentColor;
  opacity: 1 !important;
  visibility: visible !important;
}

.pb-header-social-strip .pb-social-profile:hover,
.pb-header-social-strip .pb-social-profile:focus-visible {
  color: #fff;
  background: #41B6E6;
  border-color: #41B6E6;
  transform: translateY(-1px);
}

.pb-header-social-strip .pb-network-fb {
  color: #fff !important;
  background: #1877f2 !important;
  border-color: #1877f2 !important;
}

@media (max-width: 700px) {
  .pb-header-social-inner {
    justify-content: center;
    padding: .55rem .75rem;
  }
  .pb-header-social-strip .pb-social-profiles-header,
  .pb-header-social-strip .pb-social-profile-list {
    justify-content: center;
  }
  .pb-header-social-strip .pb-social-heading { display: none; }
  .pb-header-social-strip .pb-social-profile { width: 34px; height: 34px; }
}


/* =========================================================
   HEADER SOCIAL CONTRAST + FACEBOOK RELIABILITY — v1.12.3
   ========================================================= */
.pb-header-social-strip {
  display: block !important;
  width: 100% !important;
  color: #ffffff !important;
  background: #071D49 !important;
  border-top: 1px solid #0072CE !important;
  border-bottom: 3px solid #E4002B !important;
  position: relative !important;
  z-index: 999 !important;
}
.pb-header-social-inner {
  width: min(100%, 1280px) !important;
  margin: 0 auto !important;
  padding: .65rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pb-header-social-strip .pb-social-profiles-header {
  position: static !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .7rem !important;
  margin: 0 !important;
  color: #ffffff !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pb-header-social-strip .pb-social-heading {
  display: inline-block !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: .8rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.pb-header-social-strip .pb-social-profile-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
}
.pb-header-social-strip .pb-social-profile {
  display: inline-flex !important;
  width: auto !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 .72rem !important;
  gap: .42rem !important;
  align-items: center !important;
  justify-content: center !important;
  color: #071D49 !important;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pb-header-social-strip .pb-social-icon,
.pb-header-social-strip .pb-social-icon svg {
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  color: currentColor !important;
  fill: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pb-header-social-strip .pb-social-name {
  display: inline !important;
  color: currentColor !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
.pb-header-social-strip .pb-network-primary {
  color: #ffffff !important;
  background: #1877f2 !important;
  border-color: #8bbcff !important;
}
.pb-header-social-strip .pb-social-profile:hover,
.pb-header-social-strip .pb-social-profile:focus-visible {
  color: #071D49 !important;
  background: #E4002B !important;
  border-color: #E4002B !important;
  transform: translateY(-1px) !important;
}
@media (max-width: 640px) {
  .pb-header-social-strip .pb-social-heading { display: none !important; }
  .pb-header-social-strip .pb-social-profile {
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 .58rem !important;
  }
  .pb-header-social-strip .pb-social-name { font-size: .72rem !important; }
}

/* American Beautiful national wordmark */
.ab-wordmark{display:flex;align-items:baseline;gap:.35rem;text-decoration:none;letter-spacing:.08em;font-family:Georgia,'Times New Roman',serif;font-size:clamp(1.7rem,4vw,3.25rem);color:#102542}.ab-wordmark span{font-weight:500}.ab-wordmark strong{font-weight:800;color:#b22234}.site-header{background:#fff}.pb-home-introduction-kicker{letter-spacing:.18em;text-transform:uppercase}


/* =========================================================
   STATES & CITIES DIRECTORY — v1.2
   ========================================================= */
.ab-geo-page { background:#fff; }
.ab-directory-hero { background:linear-gradient(135deg,#071f3d,#123b66 60%,#1f5b87); color:#fff; padding:5.5rem 0 4.5rem; }
.ab-directory-hero h1 { font-family:var(--font-serif); font-size:clamp(3rem,7vw,6.5rem); line-height:.95; margin:.35rem 0 1.25rem; letter-spacing:-.035em; }
.ab-kicker,.ab-section-heading>p { text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; font-weight:800; color:#e4002b; }
.ab-directory-hero .ab-kicker { color:#fff; opacity:.78; }
.ab-lede { max-width:840px; font-family:var(--font-serif); font-size:clamp(1.12rem,2vw,1.5rem); line-height:1.55; color:#edf5fb; }
.ab-geo-stats { display:flex; flex-wrap:wrap; gap:1rem; margin-top:2rem; }
.ab-geo-stats span { min-width:150px; padding:1rem 1.25rem; border:1px solid rgba(255,255,255,.28); background:rgba(255,255,255,.08); border-radius:4px; }
.ab-geo-stats strong { display:block; font-family:var(--font-serif); font-size:1.45rem; }
.ab-geo-stats small { display:block; text-transform:uppercase; letter-spacing:.1em; opacity:.7; font-size:.66rem; }
.ab-breadcrumbs { display:flex; gap:.65rem; flex-wrap:wrap; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:2rem; color:#d7e7f4; }
.ab-breadcrumbs a:hover { color:#fff; text-decoration:underline; }
.ab-region-nav,.ab-city-jump { display:flex; flex-wrap:wrap; gap:.65rem; padding-top:1.4rem; padding-bottom:1.4rem; border-bottom:1px solid var(--gray-200); }
.ab-region-nav a,.ab-city-jump a { border:1px solid var(--gray-300); padding:.55rem .9rem; border-radius:999px; font-size:.75rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.ab-region-nav a:hover,.ab-city-jump a:hover { background:#071f3d; color:#fff; border-color:#071f3d; }
.ab-region-section,.ab-content-section { padding-top:4.5rem; padding-bottom:4.5rem; }
.ab-section-heading { margin-bottom:1.6rem; }
.ab-section-heading h2 { font-family:var(--font-serif); font-size:clamp(2rem,4vw,3.35rem); line-height:1.05; margin-top:.25rem; }
.ab-state-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1rem; }
.ab-state-card a { display:block; height:100%; border:1px solid var(--gray-200); padding:1.4rem; transition:.18s ease; box-shadow:0 2px 10px rgba(0,0,0,.03); }
.ab-state-card a:hover { transform:translateY(-3px); border-color:#41b6e6; box-shadow:0 10px 28px rgba(7,31,61,.11); color:inherit; }
.ab-state-abbr { display:inline-flex; min-width:44px; height:36px; align-items:center; justify-content:center; background:#e4002b; color:#fff; font-weight:900; letter-spacing:.08em; font-size:.72rem; }
.ab-state-card h3 { font-family:var(--font-serif); font-size:1.45rem; margin:.8rem 0 .2rem; }
.ab-state-card p { color:var(--gray-600); font-size:.85rem; }
.ab-card-meta { display:block; margin-top:1rem; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; color:#16547e; }
.ab-city-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.ab-city-card { border-top:4px solid #071f3d; padding:1.5rem; background:#f7fafc; min-height:210px; }
.ab-city-card>span { text-transform:uppercase; letter-spacing:.1em; font-weight:800; font-size:.65rem; color:#e4002b; }
.ab-city-card h3 { font-family:var(--font-serif); font-size:1.8rem; margin:.25rem 0 .65rem; }
.ab-city-card p { color:var(--gray-600); font-size:.9rem; }
.ab-city-card b { display:block; margin-top:1rem; font-size:.75rem; text-transform:uppercase; letter-spacing:.05em; }
.ab-topic-band,.ab-nearby-band { background:#f3f6f8; padding:4.5rem 0; }
.ab-topic-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.ab-topic-card { background:#fff; border:1px solid var(--gray-200); padding:1.45rem; }
.ab-topic-band .ab-topic-card { min-height:150px; }
.ab-topic-card h3 { font-family:var(--font-serif); font-size:1.3rem; margin-bottom:.4rem; }
.ab-topic-card p { color:var(--gray-600); font-size:.9rem; }
.ab-editorial-content { padding-top:3rem; padding-bottom:1rem; max-width:900px; }
.ab-story-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; }
.ab-story-grid article img { aspect-ratio:16/10; object-fit:cover; margin-bottom:.8rem; }
.ab-story-grid article span { text-transform:uppercase; color:#e4002b; letter-spacing:.08em; font-size:.67rem; font-weight:800; }
.ab-story-grid article h3 { font-family:var(--font-serif); font-size:1.25rem; line-height:1.2; margin-top:.25rem; }
.ab-empty-note { padding:1.5rem; background:#f7fafc; border-left:4px solid #41b6e6; color:var(--gray-600); }
.ab-nearby-links { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.75rem; }
.ab-nearby-links a { display:flex; justify-content:space-between; background:#fff; border:1px solid var(--gray-200); padding:1rem 1.1rem; font-weight:800; }
@media(max-width:900px){.ab-state-grid{grid-template-columns:repeat(2,1fr)}.ab-city-grid,.ab-topic-grid,.ab-story-grid,.ab-nearby-links{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.ab-directory-hero{padding:3.5rem 0 3rem}.ab-state-grid,.ab-city-grid,.ab-topic-grid,.ab-story-grid,.ab-nearby-links{grid-template-columns:1fr}.ab-region-section,.ab-content-section{padding-top:3rem;padding-bottom:3rem}.ab-geo-stats span{flex:1 1 40%}}
