/*
Theme Name: Cooperstown Family Guide
Theme URI: https://www.cooperstownfamilyguide.com/
Author: Cooperstown Family Guide
Author URI: https://www.cooperstownfamilyguide.com/
Description: Custom theme for the Cooperstown Family Guide. Static homepage plus a dynamic News section (Posts) for title, image, date, author, and rich content (video, images, headings, paragraphs, ordered & unordered lists).
Version: 1.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cooperstown-family-guide
*/

/* ============================================================
   COOPERSTOWN FAMILY GUIDE — THEME STYLESHEET
   (Same design system used by the original static HTML pages.)
   ============================================================ */

/* ============================================
   DESIGN SYSTEM
============================================ */
:root {
  --navy:      #0d1f3c;
  --navy-mid:  #162c52;
  --red:       #c8102e;
  --red-dark:  #a00e25;
  --cream:     #f7f2e8;
  --sand:      #e8dfc9;
  --gold:      #c9a84c;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --muted:     #5a5a72;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  --radius: 3px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); text-decoration: underline; }

/* ============================================
   HEADER / HERO
============================================ */
.site-header {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}

.header-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
}

.site-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  position: relative;
  color: var(--white);
}

.site-header h1 a { color: var(--white); text-decoration: none; }
.site-header h1 span { color: var(--gold); }

.site-header .tagline {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 1rem auto 0;
  position: relative;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ============================================
   NAV BAR (jump links / WP menu)
============================================ */
.jump-nav {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.25);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.jump-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.jump-nav a {
  display: block;
  color: rgba(255,255,255,0.80);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.1rem;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.jump-nav a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

/* Active nav item (current page) */
.jump-nav a.is-active,
.jump-nav .current-menu-item > a,
.jump-nav .current_page_item > a {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

/* ============================================
   CTA STRIP  (homepage)
============================================ */
.cta-strip {
  background: var(--red);
  text-align: center;
  padding: 1.25rem 1.5rem;
}

.cta-strip p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--cream); color: var(--red-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
  margin-left: 0.5rem;
}
.btn-outline-white:hover { border-color: var(--white); }

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section--alt {
  background: var(--sand);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p, .section--dark li { color: rgba(255,255,255,0.82); }
.section--dark .section-eyebrow { color: var(--gold); }
.section--dark a { color: var(--gold); }
.section--dark a:hover { color: #e5c572; }

.inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Wider content wrapper (news listing) */
.inner--wide {
  max-width: 1040px;
}

/* ============================================
   TYPOGRAPHY
============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   INTRO SECTION  (homepage)
============================================ */
.intro-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   CARD GRID (Things To Do — homepage)
============================================ */
.card-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(13,31,60,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13,31,60,0.12);
}

.card-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.card h3 { font-size: 1.05rem; }

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ============================================
   HIGHLIGHTS LIST (Dreams Park — homepage)
============================================ */
.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin-top: 1.2rem;
}

@media (max-width: 500px) {
  .highlight-list { grid-template-columns: 1fr; }
}

.highlight-list li {
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}

.highlight-list li::before {
  content: '⚾';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 0.3em;
}

/* ============================================
   LODGING LIST  (homepage)
============================================ */
.lodging-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}

.lodging-list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   FAQ  (homepage)
============================================ */
.faq-list {
  max-width: 860px;
  margin: 2rem auto 0;
}

details {
  border-bottom: 1px solid rgba(13,31,60,0.12);
}

details:first-child {
  border-top: 1px solid rgba(13,31,60,0.12);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ============================================
   TOPICS GRID  (homepage)
============================================ */
.topics-grid {
  max-width: 860px;
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem;
  box-shadow: 0 1px 6px rgba(13,31,60,0.06);
}

.topic-card h3 {
  font-size: 0.92rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   BOTTOM CTA  (homepage)
============================================ */
.bottom-cta {
  background: var(--navy);
  text-align: center;
  padding: 3rem 1.5rem;
}

.bottom-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.bottom-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.97rem;
}

/* ============================================
   STANDALONE VIDEO BLOCK  (homepage)
============================================ */
.video-container {
  max-width: 960px;
  margin: 20px auto;
}

video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ============================================
   BREADCRUMB  (news pages)
============================================ */
.breadcrumb {
  background: var(--sand);
  font-size: 0.82rem;
  padding: 0.7rem 1.5rem;
}

.breadcrumb ol {
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  color: var(--muted);
}

.breadcrumb--wide ol {
  max-width: 1040px;
}

.breadcrumb li::after {
  content: '/';
  margin-left: 0.4rem;
  color: var(--muted);
}
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--red); font-weight: 600; }

/* ============================================
   NEWS ARTICLE  (single post)
============================================ */
.news-article {
  max-width: 820px;
  margin: 0 auto;
}

.news-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(13,31,60,0.12);
  font-size: 0.9rem;
  color: var(--muted);
}

.news-meta .author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.news-meta .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}

.news-meta time { white-space: nowrap; }

.news-meta .badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
}

.news-featured {
  margin: 0 0 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13,31,60,0.12);
}

.news-featured img {
  width: 100%;
  height: auto;
}

figure { margin: 2rem 0; }

figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 0.6rem;
}

/* Article body (rendered by the_content) */
.news-body { font-size: 1.0625rem; }

.news-body h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
}

.news-body h3 {
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.news-body p { margin-bottom: 1.2rem; }

.news-body a { font-weight: 600; }

.news-body .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
}

/* Lists */
.news-body ul,
.news-body ol {
  margin: 0 0 1.4rem 0;
  padding-left: 0;
  list-style: none;
}

.news-body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}

.news-body ul li::before {
  content: '\26BE'; /* baseball */
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.85rem;
}

.news-body ol {
  counter-reset: news-counter;
}

.news-body ol li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.7rem;
  counter-increment: news-counter;
}

.news-body ol li::before {
  content: counter(news-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blockquote */
.news-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 1.1rem 1.4rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(13,31,60,0.06);
}

.news-body blockquote p { margin-bottom: 0; }

.news-body blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* In-article video frame */
.video-frame {
  margin: 2rem 0 0.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13,31,60,0.12);
  background: #000;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* Two-image gallery */
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (max-width: 560px) {
  .image-row { grid-template-columns: 1fr; }
}

.image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(13,31,60,0.10);
}

/* Tags + share */
.news-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13,31,60,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.tag-list li a {
  display: inline-block;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
}
.tag-list li a:hover { background: var(--gold); color: var(--navy); text-decoration: none; }

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ============================================
   NEWS LISTING  (archive / home)
============================================ */
.lead-text {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13,31,60,0.10);
  margin-bottom: 2.5rem;
  border-top: 3px solid var(--red);
}

@media (max-width: 720px) {
  .featured-article { grid-template-columns: 1fr; }
}

.featured-article .thumb {
  overflow: hidden;
  min-height: 240px;
  background: var(--sand);
}

.featured-article .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.featured-article:hover .thumb img { transform: scale(1.04); }

.featured-article .body {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0.6rem 0 0.7rem;
}

.featured-article h3 a { color: var(--navy); }
.featured-article h3 a:hover { color: var(--red); text-decoration: none; }

.featured-article p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.6rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,31,60,0.07);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13,31,60,0.13);
}

.news-card .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sand);
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.news-card:hover .thumb img { transform: scale(1.05); }

.news-card .body {
  padding: 1.3rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-cat {
  display: inline-block;
  align-self: flex-start;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.news-card h3 a { color: var(--navy); }
.news-card h3 a:hover { color: var(--red); text-decoration: none; }

.news-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.card-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-meta .author { font-weight: 600; color: var(--text); }

.card-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}

.read-more {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   PAGINATION (the_posts_pagination)
============================================ */
.pagination {
  margin-top: 3rem;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  min-width: 40px;
  text-align: center;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(13,31,60,0.15);
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
}

.pagination a.page-numbers:hover { background: var(--sand); text-decoration: none; }

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

.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #080f1e;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.5rem 1.5rem;
  font-size: 0.8rem;
}

.site-footer a { color: rgba(255,255,255,0.55); }
.site-footer a:hover { color: var(--gold); text-decoration: none; }

/* ============================================
   UTILITY
============================================ */
.centered { text-align: center; }

/* ============================================
   WORDPRESS CORE COMPATIBILITY
============================================ */
.alignleft  { float: left;  margin: 0.4rem 1.4rem 1rem 0; }
.alignright { float: right; margin: 0.4rem 0 1rem 1.4rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-block-image, figure.wp-block-image { margin: 2rem 0; }
.wp-block-image img { border-radius: var(--radius); }
.wp-block-image figcaption,
.wp-caption-text,
.wp-element-caption {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 0.6rem;
}
.wp-block-quote { /* falls back to .news-body blockquote */ }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 480px) {
  .btn-outline-white {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
    width: fit-content;
    margin: 0.5rem auto 0;
  }

  .cta-strip p { font-size: 0.88rem; }
}
