/*
 * Casino Screener Ukraine - Custom Styles
 * Project: casino_screener_ua_1731516000000
 * Design: Purple-Gold Gradient Theme
 * Framework: Bootstrap 5.3
 */

/* ===================================
   CSS CUSTOM PROPERTIES (Variables)
   =================================== */

:root {
  /* Primary Purple Spectrum */
  --color-purple-deep: #4C1D95;
  --color-purple-royal: #6B46C1;
  --color-purple-bright: #9333EA;
  --color-purple-light: #A855F7;

  /* Accent Gold Spectrum */
  --color-gold-deep: #D97706;
  --color-gold-rich: #F59E0B;
  --color-gold-bright: #FBBF24;
  --color-gold-light: #FCD34D;

  /* Grayscale */
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-500: #6B7280;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Functional Colors */
  --color-warning: #DC2626;
  --color-warning-light: #FEE2E2;
  --color-success: #10B981;
  --color-info: #3B82F6;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #4C1D95 0%, #6B46C1 35%, #9333EA 70%, #F59E0B 100%);
  --gradient-button: linear-gradient(90deg, #9333EA 0%, #F59E0B 100%);
  --gradient-button-hover: linear-gradient(90deg, #6B46C1 0%, #D97706 100%);
  --gradient-footer: linear-gradient(180deg, #4C1D95 0%, #2D1B69 100%);
  --gradient-card-border: linear-gradient(135deg, #A855F7, #FBBF24);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(76, 29, 149, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(76, 29, 149, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(76, 29, 149, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(76, 29, 149, 0.1);
  --shadow-gold: 0 10px 30px -5px rgba(245, 158, 11, 0.3);

  /* Overlays */
  --overlay-dark: rgba(76, 29, 149, 0.85);
  --overlay-light: rgba(255, 255, 255, 0.9);
}

/* ===================================
   GLOBAL STYLES
   =================================== */

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

body {
  font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--color-gold-bright);
  outline-offset: 2px;
}

button:focus-visible {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
  box-shadow: 0 2px 12px rgba(76, 29, 149, 0.05);
  transition: all 0.3s ease;
}

.navbar--scrolled {
  padding: 12px 24px;
  box-shadow: 0 4px 20px rgba(76, 29, 149, 0.1);
}

.navbar__logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #9333EA, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.navbar__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  color: var(--color-gray-800);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar__link:hover {
  color: var(--color-purple-bright);
}

.navbar__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

/* Mobile Navigation */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-purple-bright);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-white);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__menu li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
  }
}

/* ===================================
   WARNING BANNER 18+
   =================================== */

.warning-banner {
  position: sticky;
  top: 60px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 24px;
  min-height: 60px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  border-bottom: 3px solid #991B1B;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.warning-banner__icon {
  font-size: 24px;
  flex-shrink: 0;
  animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.warning-banner__text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warning-banner__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  color: var(--color-warning);
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.warning-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.warning-banner__link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .warning-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    min-height: 80px;
  }

  .warning-banner__text {
    flex-direction: column;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 24px;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-purple-royal);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--color-white);
  transform: translateY(-4px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 6px 16px rgba(251, 191, 36, 0.5);
}

/* ===================================
   CASINO CARD COMPONENT
   =================================== */

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  gap: 32px;
  justify-content: center;
  padding: 60px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.casino-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  min-height: 420px;
  padding: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(76, 29, 149, 0.05),
    0 2px 4px -1px rgba(76, 29, 149, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.casino-card:hover::before {
  left: 100%;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 25px -5px rgba(245, 158, 11, 0.15),
    0 10px 10px -5px rgba(245, 158, 11, 0.08);
  border-color: transparent;
  border-image: var(--gradient-card-border) 1;
}

.casino-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.casino-card__logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

.casino-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
  color: var(--color-gray-800);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.casino-card__bonus-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-500);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.casino-card__bonus-amount {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.casino-card__free-spins {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.casino-card__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E5E7EB 20%, #E5E7EB 80%, transparent);
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.casino-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-500);
  margin: 16px 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.casino-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.casino-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}

.casino-card__feature::before {
  content: '✅';
  font-size: 14px;
}

.casino-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  background: var(--gradient-button);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(147, 51, 234, 0.3),
    0 2px 4px rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.casino-card__cta:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(147, 51, 234, 0.4),
    0 4px 8px rgba(245, 158, 11, 0.3);
}

.casino-card__cta:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .casinos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px;
  }

  .casino-card {
    max-width: 100%;
    padding: 20px;
  }

  .casino-card__bonus-amount {
    font-size: 24px;
  }

  .casino-card__free-spins {
    font-size: 16px;
  }
}

/* ===================================
   BLOG CARD COMPONENT
   =================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  gap: 32px;
  justify-content: center;
  padding: 60px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  min-height: 450px;
  background: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.02);
  box-shadow:
    0 10px 20px rgba(76, 29, 149, 0.1),
    0 4px 8px rgba(76, 29, 149, 0.05);
  border-color: var(--color-purple-bright);
}

.blog-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gradient-button);
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.blog-card__category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 4px 12px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #EDE9FE, #FEF3C7);
  color: var(--color-purple-royal);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-800);
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-500);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--color-purple-bright);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card__link:hover {
  color: var(--color-purple-royal);
  gap: 10px;
}

.blog-card__link svg {
  transition: transform 0.3s ease;
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px;
  }
}

/* ===================================
   COOKIE CONSENT POPUP
   =================================== */

.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 48px);
  padding: 24px;
  background: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(76, 29, 149, 0.15),
    0 10px 10px -5px rgba(76, 29, 149, 0.08);
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.cookie-popup.hidden {
  display: none;
}

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

.cookie-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-popup__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gray-800);
}

.cookie-popup__icon {
  font-size: 24px;
}

.cookie-popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--color-gray-500);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-popup__close:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-800);
}

.cookie-popup__content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-500);
  margin-bottom: 20px;
}

.cookie-popup__actions {
  display: flex;
  gap: 12px;
}

.cookie-popup__btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-popup__btn--primary {
  background: var(--gradient-button);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.cookie-popup__btn--primary:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(147, 51, 234, 0.4);
}

.cookie-popup__btn--secondary {
  background: var(--color-gray-100);
  color: var(--color-gray-800);
  border: 1px solid #E5E7EB;
}

.cookie-popup__btn--secondary:hover {
  background: #E5E7EB;
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .cookie-popup__actions {
    flex-direction: column;
  }
}

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

.footer {
  background: var(--gradient-footer);
  color: #E5E7EB;
  padding: 60px 24px 24px;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section-title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  color: #E5E7EB;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--color-gold-bright);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #9CA3AF;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
  padding: 80px 24px;
}

.section--gray {
  background-color: var(--color-gray-50);
}

.section__title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gray-900);
}

.section__subtitle {
  text-align: center;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--color-gray-500);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   ARTICLE STYLES
   =================================== */

.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.article__header {
  margin-bottom: 48px;
}

.article__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-gray-900);
}

.article__meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--color-gray-500);
}

.article__content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray-800);
}

.article__content h2 {
  font-size: 32px;
  margin: 48px 0 24px;
}

.article__content h3 {
  font-size: 24px;
  margin: 36px 0 20px;
}

.article__content p {
  margin-bottom: 24px;
}

.article__content ul,
.article__content ol {
  margin: 24px 0 24px 24px;
}

.article__content li {
  margin-bottom: 12px;
}

/* ===================================
   POLICY PAGE STYLES
   =================================== */

.policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.policy__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-gray-900);
}

.policy__section {
  margin-bottom: 40px;
}

.policy__section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gray-900);
}

.policy__content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-800);
}

.policy__content p {
  margin-bottom: 16px;
}

.policy__content ul {
  margin: 16px 0 16px 24px;
}

.policy__content li {
  margin-bottom: 8px;
}

/* ===================================
   UTILITIES
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
