/* ============================================
   SLNS Temple Website - Shared Component Styles
   ============================================ */

/* =============================================
   HEADER
   ============================================= */

/* Header Accent Bar */
.header-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-primary-red), var(--color-gold));
}

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

/* Header Container */
.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--spacing-md);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-red);
  line-height: 1.2;
}

/* Logo: hide text on mobile, show on tablet+ */
@media (max-width: 767px) {
  .header-logo-text {
    display: none;
  }
}

/* Hamburger Button (Mobile) */
.hamburger-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: var(--spacing-xs);
  display: block;
  line-height: 1;
  transition: color 0.2s ease;
}

.hamburger-btn:hover {
  color: var(--color-primary-red);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  flex-direction: row;
  gap: var(--spacing-xs);
  align-items: center;
}

/* Nav Link */
.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary-red);
}

.nav-link:not(.active):not(.nav-dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:not(.active):not(.nav-dropdown-toggle):hover::after {
  width: 60%;
  left: 20%;
}

.nav-link.active {
  background-color: var(--color-primary-red);
  color: var(--color-white);
}

.nav-link.active:hover {
  background-color: var(--color-dark-red);
  color: var(--color-white);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xs) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 14px;
  color: var(--color-text-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-off-white);
  color: var(--color-primary-red);
}

.nav-dropdown-menu a.active {
  color: var(--color-primary-red);
  font-weight: 600;
  background-color: transparent;
}

/* Mobile nav section headers */
.mobile-nav-section-header {
  display: block;
  padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-xs);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-accessible);
  border-bottom: none;
}

/* Donate Button (Desktop Nav) */
.donate-btn {
  background-color: var(--color-dark-red);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.donate-btn:hover {
  background-color: var(--color-primary-red);
  box-shadow: var(--shadow-md);
}

.donate-btn {
  animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(139, 0, 0, 0); }
}

/* Desktop breakpoint */
@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }
}


/* =============================================
   MOBILE NAVIGATION
   ============================================= */

/* Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
  transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-header .header-logo-text {
  font-size: 15px;
}

/* Mobile Nav Close */
.mobile-nav-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.mobile-nav-close:hover {
  color: var(--color-primary-red);
}

/* Mobile Nav Links */
.mobile-nav-links {
  list-style: none;
  padding: 60px 0 0 0;
  margin: 0;
}

.mobile-nav-link {
  display: block;
  padding: var(--spacing-md) var(--spacing-lg);
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: var(--color-off-white);
  color: var(--color-primary-red);
}

.mobile-nav-link.active {
  color: var(--color-primary-red);
}

/* Mobile Nav Donate Button */
.mobile-nav-donate {
  display: block;
  margin: var(--spacing-lg);
  padding: 12px 24px;
  background-color: var(--color-dark-red);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-nav-donate:hover {
  background-color: var(--color-primary-red);
}


/* =============================================
   HERO CAROUSEL
   ============================================= */

.hero-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-off-white);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Overlay (optional text overlay) */
.carousel-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
}

.carousel-slide .slide-overlay h2 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}

.carousel-slide .slide-overlay p {
  color: var(--color-gold-light);
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
}

.carousel-slide .slide-overlay .hero-cta {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.carousel-slide .slide-overlay .hero-cta:hover {
  background: var(--color-saffron);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .carousel-slide .slide-overlay h2 { font-size: 32px; }
  .carousel-slide .slide-overlay p { font-size: 16px; }
}

@media (min-width: 992px) {
  .carousel-slide .slide-overlay h2 { font-size: 40px; }
  .carousel-slide .slide-overlay p { font-size: 18px; }
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-arrow:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* Responsive carousel height */
@media (min-width: 768px) {
  .hero-carousel {
    height: 350px;
  }
}

@media (min-width: 992px) {
  .hero-carousel {
    height: 400px;
  }
}

/* Carousel Decorative Bottom Border */
.hero-carousel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-red), var(--color-gold), var(--color-saffron), var(--color-gold), var(--color-primary-red));
  z-index: 5;
}

/* Carousel Slide Text Entrance Animation */
.carousel-slide.active .slide-overlay h2 {
  animation: heroFadeInUp 0.8s ease 0.2s both;
}

.carousel-slide.active .slide-overlay p {
  animation: heroFadeInUp 0.8s ease 0.4s both;
}

.carousel-slide.active .slide-overlay .hero-cta {
  animation: heroFadeInUp 0.8s ease 0.6s both;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =============================================
   INNER PAGE HERO (replaces carousel on inner pages)
   ============================================= */

.inner-hero {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 10, 10, 0.85) 0%, rgba(183, 28, 28, 0.7) 50%, rgba(91, 10, 10, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-content {
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-md);
  position: relative;
  z-index: 2;
}

/* Ensure ALL h1 inside inner-hero are white and visible */
.inner-hero-content h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.inner-hero-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.inner-hero-subtitle {
  font-size: 14px;
  color: var(--color-gold-light);
  opacity: 0.9;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--spacing-sm);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb-sep {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
  color: var(--color-white);
  font-weight: 500;
}

@media (min-width: 768px) {
  .inner-hero { height: 260px; }
  .inner-hero-content h1,
  .inner-hero-title { font-size: 36px; }
  .inner-hero-subtitle { font-size: 15px; }
}

@media (min-width: 992px) {
  .inner-hero { height: 300px; }
  .inner-hero-content h1,
  .inner-hero-title { font-size: 42px; }
  .inner-hero-subtitle { font-size: 16px; }
}


/* =============================================
   PAGE TITLE SECTION
   ============================================= */

.page-title-section {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.page-title {
  color: var(--color-primary-red);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.page-subtitle {
  color: var(--color-primary-red);
  font-size: 14px;
  font-weight: 500;
}

.page-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.page-title-divider::before,
.page-title-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-border);
}

.page-title-divider span {
  color: var(--color-gold);
  font-size: 10px;
  line-height: 1;
}


/* =============================================
   FAQ ACCORDION
   ============================================= */

.faqs-section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faqs-title {
  text-align: center;
  color: var(--color-primary-red);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

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

.faq-item {
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--spacing-sm);
}

.faq-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--spacing-xs) 0;
  transition: opacity 0.2s ease;
}

.faq-header:hover {
  opacity: 0.8;
}

.faq-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-question {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  padding-top: 5px;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 14px;
  color: var(--color-text-gray);
  transition: transform 0.3s ease;
  padding-top: 5px;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  /* max-height is set dynamically via JavaScript */
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-gray);
  padding-top: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
  margin-bottom: 0;
}


/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: linear-gradient(180deg, var(--color-footer-bg) 0%, #ECECEC 100%);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-red), var(--color-gold), var(--color-primary-red));
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Footer Social */
.footer-social {
  margin-bottom: var(--spacing-lg);
}

.footer-social h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.social-icon.instagram {
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.social-icon.youtube {
  background: #FF0000;
}

.social-icon.facebook {
  background: #1877F2;
}

.social-icon.twitter {
  background: #1DA1F2;
}

/* Footer Subscribe */
.footer-subscribe {
  margin-bottom: var(--spacing-lg);
}

.footer-subscribe h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-subscribe h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-subscribe p {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-sm);
}

.subscribe-form {
  display: flex;
  max-width: 400px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--color-primary-red);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  font-size: 14px;
  color: var(--color-text-dark);
  transition: box-shadow 0.2s ease;
}

.subscribe-form input:focus {
  box-shadow: 0 0 0 2px rgba(183, 28, 28, 0.15);
}

.subscribe-form input::placeholder {
  color: #888888;
}

.subscribe-form button {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  border: none;
  padding: 10px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background-color: var(--color-dark-red);
}

/* Footer Links */
.footer-links {
  margin-bottom: var(--spacing-lg);
}

.footer-links h3 {
  color: var(--color-primary-red);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xs);
}

.links-grid a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.links-grid a:hover {
  color: var(--color-primary-red);
}

/* Footer Contact */
.footer-contact {
  margin-bottom: var(--spacing-lg);
}

.footer-contact h3 {
  color: var(--color-primary-red);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-contact p {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--color-primary-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Footer Bottom / Copyright */
.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-text-gray);
  margin-bottom: 0;
}

.content-section a {
  color: var(--color-primary-red);
  font-weight: 600;
}

.policy-meta {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.footer-policies a {
  font-size: 13px;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: var(--color-primary-red);
}

/* Footer Responsive - Grid layout on desktop */
@media (min-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1.2fr 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .footer {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
  }
}
