/*
Theme Name: NAFW Theme
Theme URI: https://www.northamericafashionweek.com
Author: Ampowering
Author URI: https://ampowering.org
Description: Custom theme for North America Fashion Week - a fashion event showcase with portfolio, gallery, news, and event pages.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nafw-theme
Tags: fashion, portfolio, gallery, events, custom-theme
*/

/* ============================================================
   CSS Variables / Design Tokens
   ============================================================ */
:root {
  --nafw-black: #000000;
  --nafw-white: #ffffff;
  --nafw-gold: #c9a84c;
  --nafw-gold-light: #d4b85c;
  --nafw-dark-bg: #111111;
  --nafw-dark-overlay: rgba(0, 0, 0, 0.7);
  --nafw-gray: #333333;
  --nafw-gray-light: #999999;
  --nafw-gray-lighter: #cccccc;
  --nafw-font-primary: 'Montserrat', sans-serif;
  --nafw-font-heading: 'Playfair Display', serif;
  --nafw-transition: all 0.3s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--nafw-font-primary);
  color: var(--nafw-white);
  background-color: var(--nafw-black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--nafw-gold);
  text-decoration: none;
  transition: var(--nafw-transition);
}

a:hover {
  color: var(--nafw-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nafw-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--nafw-gold); }

p {
  margin-bottom: 1em;
  color: var(--nafw-gray-lighter);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--nafw-gold);
  font-family: var(--nafw-font-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--nafw-font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--nafw-gold);
  color: var(--nafw-gold);
  background: transparent;
  cursor: pointer;
  transition: var(--nafw-transition);
  text-align: center;
}

.btn:hover {
  background: var(--nafw-gold);
  color: var(--nafw-black);
}

.btn-filled {
  background: var(--nafw-gold);
  color: var(--nafw-black);
}

.btn-filled:hover {
  background: var(--nafw-gold-light);
  color: var(--nafw-black);
}

/* ============================================================
   Header / Navigation (matching original)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--nafw-transition);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
}

.site-logo img,
.site-logo .logo-img {
  height: 45px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--nafw-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nafw-white);
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.search-toggle {
  background: none;
  border: none;
  color: var(--nafw-white);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 5px;
  transition: var(--nafw-transition);
}

.search-toggle:hover {
  color: var(--nafw-gold);
}

.menu-area {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.menu-label {
  font-family: var(--nafw-font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--nafw-white);
}

.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--nafw-white);
  transition: var(--nafw-transition);
}

.menu-toggle-btn span:nth-child(2) {
  width: 20px;
  margin-left: auto;
}

/* Header dark text on light pages */
.page-header-light-page .site-header:not(.scrolled) .search-toggle,
.page-header-light-page .site-header:not(.scrolled) .menu-label {
  color: var(--nafw-black);
}

.page-header-light-page .site-header:not(.scrolled) .menu-toggle-btn span {
  background: var(--nafw-black);
}

.page-header-light-page .site-header:not(.scrolled) .search-toggle:hover {
  color: var(--nafw-gold);
}

.page-header-light-page .site-header:not(.scrolled) .site-logo img {
  filter: brightness(0);
}

/* Full-screen nav overlay */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--nafw-black);
  transition: right 0.4s ease;
  padding: 100px 50px;
  z-index: 9999;
  overflow-y: auto;
}

.main-nav.active {
  right: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

.nav-overlay.active {
  display: block;
}

.nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--nafw-white);
  font-size: 2rem;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  padding: 0;
}

.main-nav li {
  margin-bottom: 15px;
}

.main-nav a {
  color: var(--nafw-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 0;
  display: block;
  position: relative;
  transition: var(--nafw-transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--nafw-gold);
  padding-left: 10px;
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-overlay .search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--nafw-white);
  font-size: 2.5rem;
  cursor: pointer;
}

.search-form-wrap {
  width: 60%;
  max-width: 600px;
}

.search-overlay .search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--nafw-white);
  color: var(--nafw-white);
  font-size: 2rem;
  font-family: var(--nafw-font-primary);
  padding: 15px 0;
  outline: none;
}

/* Hide WordPress default search form output */
.site-header .search-form,
.site-header form[role="search"] {
  display: none;
}

/* Side Panels (matching original vertical text) */
.side-panel {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.side-panel a {
  font-family: var(--nafw-font-primary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--nafw-white);
  text-transform: uppercase;
  opacity: 0.7;
  transition: var(--nafw-transition);
}

.side-panel a:hover {
  opacity: 1;
  color: var(--nafw-gold);
}

.side-divider {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.3);
}

.side-panel-left {
  left: 15px;
  transform: translateY(-50%) rotate(180deg);
}

.side-panel-right {
  right: 15px;
}

/* ============================================================
   Hero Slider (matching original RevSlider look)
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-content {
  max-width: 700px;
  margin-top: 20px;
}

.hero-heading {
  font-family: var(--nafw-font-primary);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-heading-main {
  font-size: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
}

.hero-script {
  font-family: 'Dancing Script', cursive, serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--nafw-gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-btn-details {
  padding: 16px 35px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--nafw-white);
  font-size: 0.75rem;
  letter-spacing: 3px;
  background: rgba(0,0,0,0.3);
}

.hero-btn-details:hover {
  border-color: var(--nafw-white);
  background: rgba(0,0,0,0.6);
  color: var(--nafw-white);
}

.hero-btn-tickets {
  padding: 16px 35px;
  border: 2px solid var(--nafw-gold);
  color: var(--nafw-white);
  font-size: 0.75rem;
  letter-spacing: 3px;
  background: transparent;
}

.hero-btn-tickets:hover {
  background: var(--nafw-gold);
  color: var(--nafw-black);
}

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-prev,
.slider-next {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--nafw-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--nafw-transition);
}

.slider-prev:hover,
.slider-next:hover {
  border-color: var(--nafw-white);
  background: rgba(0,0,0,0.7);
}

/* ============================================================
   Participate Section
   ============================================================ */
.participate-section {
  padding: 100px 0;
  background: var(--nafw-black);
}

.participate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.participate-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.participate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.participate-card:hover img {
  transform: scale(1.1);
}

.participate-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  text-align: center;
}

.participate-card .card-title {
  font-family: var(--nafw-font-heading);
  font-size: 1.2rem;
  color: var(--nafw-white);
}

/* ============================================================
   Welcome / About Section
   ============================================================ */
.welcome-section {
  padding: 100px 0;
  background: var(--nafw-dark-bg);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-content .section-label {
  margin-bottom: 20px;
}

.welcome-content h2 {
  margin-bottom: 20px;
}

.welcome-content p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.welcome-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.welcome-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.welcome-media video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Editorial / News Section
   ============================================================ */
.news-section {
  padding: 100px 0;
  background: var(--nafw-black);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--nafw-dark-bg);
  overflow: hidden;
  transition: var(--nafw-transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.news-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.news-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .card-image img {
  transform: scale(1.05);
}

.news-card .card-body {
  padding: 25px;
}

.news-card .card-meta {
  font-size: 0.75rem;
  color: var(--nafw-gray-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card .card-title {
  font-family: var(--nafw-font-heading);
  font-size: 1.2rem;
  color: var(--nafw-white);
  margin-bottom: 15px;
}

.news-card .read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--nafw-dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nafw-gold);
  margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item p {
  color: var(--nafw-gray-lighter);
  font-size: 1rem;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--nafw-white);
  font-family: var(--nafw-font-primary);
  font-size: 0.9rem;
  transition: var(--nafw-transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nafw-gold);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--nafw-transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Gallery light theme (matching original white background) */
.gallery-section-light {
  background: var(--nafw-white);
  padding: 60px 0 100px;
}

.gallery-section-light .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-section-light .gallery-item {
  border-radius: 0;
}

/* Gallery Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--nafw-white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================================
   Portfolio / Grid Page
   ============================================================ */
.portfolio-section {
  padding: 100px 0;
}

.portfolio-filters {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  background: none;
  border: 1px solid var(--nafw-gray);
  color: var(--nafw-gray-lighter);
  padding: 8px 25px;
  font-family: var(--nafw-font-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--nafw-transition);
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  border-color: var(--nafw-gold);
  color: var(--nafw-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: var(--nafw-transition);
}

.portfolio-item:hover .item-info {
  transform: translateY(0);
}

.portfolio-item .item-name {
  font-family: var(--nafw-font-heading);
  font-size: 1.2rem;
  color: var(--nafw-white);
}

.portfolio-item .item-category {
  font-size: 0.75rem;
  color: var(--nafw-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   Models Section
   ============================================================ */
.models-section {
  padding: 100px 0;
  background: var(--nafw-black);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.model-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover img {
  transform: scale(1.05);
}

.model-card .model-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  text-align: center;
}

.model-card .model-name {
  font-family: var(--nafw-font-heading);
  font-size: 1.1rem;
}

/* ============================================================
   Page Header (inner pages)
   ============================================================ */
.page-header {
  padding: 180px 0 80px;
  background: var(--nafw-dark-bg);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--nafw-gray-light);
}

.breadcrumb a {
  color: var(--nafw-gray-light);
}

.breadcrumb a:hover {
  color: var(--nafw-gold);
}

/* ============================================================
   Blog / News Page
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--nafw-dark-bg);
  overflow: hidden;
  display: flex;
  transition: var(--nafw-transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-card .card-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .card-body {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   Donate CTA (front page)
   ============================================================ */
.donate-section {
  padding: 60px 0;
  background: var(--nafw-dark-bg);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.donate-section h3 {
  margin-bottom: 10px;
}

.donate-section p {
  margin-bottom: 25px;
}

/* ============================================================
   Donate Page (exact match of ampowering.org/donate/)
   ============================================================ */
.accent-word { color: #b5603e; }

.page-header-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.donate-page-section {
  padding: 48px 16px 64px;
  background: #f7f2ee;
}

.donate-page-wrap {
  max-width: 56rem;
  margin: 0 auto;
}

/* -- Donate Card -- */
.donate-card {
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .donate-card { padding: 32px; }
}

.donate-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 4px;
}

.donate-card-subtitle {
  font-size: 0.875rem;
  color: #5a5049;
  margin-bottom: 24px;
}

.donate-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 12px;
}

/* -- Project & Amount Tags -- */
.donate-projects,
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.donate-tag,
.donate-amt {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid #eadfd8;
  background: #f7f2ee;
  color: #2b2b2b;
  font-family: inherit;
  line-height: 1.4;
}

.donate-tag:hover,
.donate-amt:hover {
  background: rgba(181,96,62,0.1);
}

.donate-tag.active,
.donate-amt.active {
  background: #b5603e;
  color: #fff;
  border-color: #b5603e;
  box-shadow: 0 1px 3px rgba(181,96,62,0.3);
}

/* -- Custom Amount Input -- */
.donate-custom-wrap {
  position: relative;
  margin-bottom: 24px;
}

.donate-custom-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a5049;
  font-weight: 600;
}

.donate-custom-input {
  width: 100%;
  padding: 12px 16px 12px 32px;
  border: 1px solid #eadfd8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #2b2b2b;
  outline: none;
  box-sizing: border-box;
}

.donate-custom-input:focus {
  border-color: #b5603e;
  box-shadow: 0 0 0 3px rgba(181,96,62,0.15);
}

/* -- Summary -- */
.donate-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f2ee;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.donate-summary-label {
  font-size: 0.75rem;
  color: #5a5049;
  margin: 0;
}

.donate-summary-project {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2b2b2b;
  margin: 0;
}

.donate-summary-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b5603e;
  margin: 0;
}

/* -- PayPal Buttons -- */
#paypal-button-container {
  margin-bottom: 4px;
}

/* -- Secured Text -- */
.donate-secured {
  text-align: center;
  font-size: 0.75rem;
  color: #5a5049;
  margin: 16px 0 0;
}

/* -- Success Card -- */
.donate-success {
  text-align: center;
}

.donate-success-icon {
  width: 64px;
  height: 64px;
  color: #22c55e;
  margin: 0 auto 16px;
}

.donate-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.donate-success-text {
  color: #5a5049;
  margin-bottom: 24px;
}

.donate-again-btn {
  background: none;
  border: none;
  color: #b5603e;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

.donate-again-btn:hover {
  text-decoration: underline;
}

/* -- CTA Block -- */
.donate-cta-block {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.donate-cta-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.donate-cta-block p {
  color: #5a5049;
  margin-bottom: 0;
}

/* -- Google Pay Button -- */
#google-pay-container button {
  width: 100%;
  border-radius: 9999px;
  height: 48px;
}

@media (max-width: 640px) {
  .donate-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .donate-amt {
    padding: 8px 16px;
  }
}

/* ============================================================
   Event Tickets Page (matching ampowering.org/tickets/)
   ============================================================ */
.et-hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}

.et-hero-bg {
  position: absolute;
  inset: 0;
  background: #2b2b2b;
  background-image: linear-gradient(to bottom right, #2b2b2b, rgba(43,43,43,0.95), rgba(181,96,62,0.3));
}

.et-hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 80px 16px 0;
}

.et-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.et-hero-sub {
  margin-top: 24px;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 42rem;
}

.et-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 16px;
}

/* Featured Event */
.et-featured {
  padding: 64px 0 96px;
  background: #fff;
}

.et-status-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.et-pulse {
  position: relative;
  display: inline-flex;
  height: 12px;
  width: 12px;
}

.et-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: et-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

.et-pulse::after {
  content: '';
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  background: #22c55e;
}

@keyframes et-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.et-status-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.et-event-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.et-event-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: #b5603e;
  margin-bottom: 32px;
}

.et-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .et-feature-grid {
    grid-template-columns: 2fr 3fr;
  }
}

/* Left Column */
.et-feature-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.et-flyer {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #eadfd8;
}

.et-details-card {
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  padding: 24px;
}

.et-details-title {
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 16px;
  font-size: 1rem;
}

.et-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.et-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(181,96,62,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b5603e;
  font-size: 0.875rem;
}

.et-detail-primary {
  font-weight: 600;
  font-size: 0.875rem;
  color: #2b2b2b;
}

.et-detail-secondary {
  font-size: 0.75rem;
  color: #5a5049;
}

.et-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.et-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: #f7f2ee;
  border-radius: 12px;
  text-align: center;
}

.et-highlight-item i {
  color: #b5603e;
  font-size: 0.875rem;
}

.et-highlight-item span {
  font-size: 0.6875rem;
  color: #5a5049;
  font-weight: 500;
  line-height: 1.2;
}

/* Right Column - Ticket Card */
.et-ticket-card {
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.et-ticket-header {
  background: linear-gradient(to right, #b5603e, rgba(181,96,62,0.8));
  padding: 16px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.et-ticket-iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}

.et-ticket-footer {
  border-top: 1px solid #eadfd8;
  padding: 16px 24px;
  background: #f9fafb;
  text-align: center;
}

.et-ticket-footer a {
  color: #b5603e;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.et-ticket-footer a:hover {
  text-decoration: underline;
}

.et-ticket-footer i {
  font-size: 0.75rem;
  margin-left: 4px;
}

/* Past Events */
.et-past-events {
  padding: 64px 0;
  background: #f7f2ee;
}

.et-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.et-section-sub {
  color: #5a5049;
  margin-bottom: 32px;
}

.et-past-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .et-past-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .et-past-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.et-past-card {
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.et-past-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.et-past-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.et-past-thumb-placeholder {
  width: 100%;
  height: 180px;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
}

.et-past-info {
  padding: 20px;
}

.et-past-date {
  font-size: 0.75rem;
  color: #5a5049;
  margin-bottom: 6px;
}

.et-past-name {
  font-size: 1rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.et-past-desc {
  font-size: 0.8rem;
  color: #5a5049;
  margin-bottom: 12px;
  line-height: 1.5;
}

.et-past-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #5a5049;
  background: #f7f2ee;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid #eadfd8;
}

/* CTA */
.et-cta {
  padding: 48px 0 64px;
  background: rgba(181,96,62,0.1);
  border-top: 1px solid rgba(181,96,62,0.2);
  border-bottom: 1px solid rgba(181,96,62,0.2);
}

.et-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 16px;
}

.et-cta p {
  color: #5a5049;
  margin-bottom: 24px;
}

.et-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.et-cta-outline {
  display: inline-block;
  border: 2px solid #b5603e;
  color: #b5603e;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.et-cta-outline:hover {
  background: #b5603e;
  color: #fff;
}

@media (max-width: 640px) {
  .et-hero h1 { font-size: 2rem; }
  .et-event-title { font-size: 1.5rem; }
  .et-highlights { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Footer (matching original - light/gray background)
   ============================================================ */
.site-footer {
  padding: 70px 0 0;
  background: #f5f5f5;
  border-top: 3px solid var(--nafw-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 0.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

.footer-donate {
  margin-top: 20px;
  background: var(--nafw-white);
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.donate-label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.donate-paypal-btn img {
  height: 30px;
  cursor: pointer;
}

.footer-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--nafw-font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #666;
  font-size: 0.85rem;
  transition: var(--nafw-transition);
}

.footer-links a:hover {
  color: var(--nafw-gold);
}

.footer-contact-block {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.7;
}

.footer-contact-block p {
  color: #444;
  margin-bottom: 5px;
}

.footer-contact-block a {
  color: #444;
  transition: var(--nafw-transition);
}

.footer-contact-block a:hover {
  color: var(--nafw-gold);
}

.footer-col-social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-col-social .social-links {
  display: flex;
  gap: 10px;
}

.footer-col-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #333;
  color: var(--nafw-white);
  font-size: 0.9rem;
  transition: var(--nafw-transition);
  border: none;
}

.footer-col-social .social-links a:hover {
  background: var(--nafw-gold);
  color: var(--nafw-white);
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.footer-bottom a {
  color: #666;
}

.footer-bottom a:hover {
  color: var(--nafw-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #333;
  color: var(--nafw-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: var(--nafw-transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--nafw-gold);
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nafw-gray);
  color: var(--nafw-gray-lighter);
  font-size: 0.9rem;
  transition: var(--nafw-transition);
}

.pagination .current,
.pagination a:hover {
  border-color: var(--nafw-gold);
  color: var(--nafw-gold);
}

/* ============================================================
   FAQ Page
   ============================================================ */
.faq-section {
  background: var(--nafw-white);
  padding: 60px 0 100px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--nafw-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  line-height: 1.4;
  transition: var(--nafw-transition);
}

.faq-question:hover {
  color: var(--nafw-gold);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 20px;
  font-size: 0.8rem;
  color: var(--nafw-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   NAFW News Page - White/Light Theme (matching original)
   ============================================================ */
.page-header-light {
  background: var(--nafw-white);
  padding: 160px 0 50px;
  text-align: center;
}

.page-header-light h1 {
  color: var(--nafw-black);
  font-family: var(--nafw-font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
}

.page-header-light .breadcrumb {
  color: #666;
  font-size: 0.85rem;
  margin-top: 15px;
}

.page-header-light .breadcrumb a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-header-light .breadcrumb a:hover {
  color: var(--nafw-black);
}

.nafw-news-section {
  background: var(--nafw-white);
  padding: 60px 0 100px;
}

.nafw-news-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nafw-news-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 350px;
  border-bottom: 1px solid #eee;
}

.nafw-news-item.news-item-reverse {
  direction: rtl;
}

.nafw-news-item.news-item-reverse > * {
  direction: ltr;
}

.news-item-image {
  overflow: hidden;
  position: relative;
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item-image:hover img {
  transform: scale(1.05);
}

.news-item-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #f0f0f0;
}

.news-item-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--nafw-white);
}

.news-item-title {
  font-family: var(--nafw-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-item-title a {
  color: var(--nafw-black);
  transition: var(--nafw-transition);
}

.news-item-title a:hover {
  color: var(--nafw-gold);
}

.news-item-meta {
  font-family: var(--nafw-font-primary);
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-style: italic;
}

.news-item-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-item-readmore {
  display: inline-block;
  font-family: var(--nafw-font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--nafw-black);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--nafw-black);
  transition: var(--nafw-transition);
  align-self: flex-start;
}

.news-item-readmore:hover {
  color: var(--nafw-gold);
  border-color: var(--nafw-gold);
}

/* Light theme pagination */
.pagination-light a,
.pagination-light span {
  border-color: #ddd;
  color: #333;
}

.pagination-light .current,
.pagination-light a:hover {
  border-color: var(--nafw-black);
  color: var(--nafw-black);
}

/* ============================================================
   WordPress Core Styles
   ============================================================ */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--nafw-gray-light);
  text-align: center;
  padding: 5px 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ============================================================
   Single Post
   ============================================================ */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.single-post-content h1 {
  margin-bottom: 15px;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--nafw-gray-light);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 30px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--nafw-gray-lighter);
}

.post-body h2, .post-body h3 {
  color: var(--nafw-white);
  margin-top: 30px;
}

.post-body ul, .post-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.post-body blockquote {
  border-left: 3px solid var(--nafw-gold);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--nafw-gray-light);
}

/* ============================================================
   Events Page
   ============================================================ */
.events-section {
  padding: 100px 0;
}

.event-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: var(--nafw-dark-bg);
  margin-bottom: 30px;
  overflow: hidden;
  transition: var(--nafw-transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .event-details {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date {
  font-size: 0.75rem;
  color: var(--nafw-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ============================================================
   Map Embed
   ============================================================ */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%);
}

/* ============================================================
   Responsive Design
   ============================================================ */
@media (max-width: 1024px) {
  .participate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .side-panel {
    display: none;
  }

  .nafw-news-item {
    grid-template-columns: 1fr;
  }

  .nafw-news-item.news-item-reverse {
    direction: ltr;
  }

  .news-item-image {
    min-height: 250px;
  }

  .news-item-content {
    padding: 30px 20px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-heading-main {
    font-size: 2.5rem;
  }

  .hero-script {
    font-size: 1.5rem;
  }

  .hero-overlay {
    padding: 0 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .slider-nav {
    right: 20px;
    bottom: 20px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .participate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card .card-image {
    flex: none;
    height: 200px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    padding: 15px 20px;
  }

  .menu-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .participate-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }
}
