/* ============================================
   RESPONSIVE - Mobile-first breakpoints
   ============================================ */

/* Extra small devices (portrait phones, less than 576px) */
/* Default styles are mobile-first */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-4xl);
  }

  .page-header__title {
    font-size: var(--text-3xl);
  }

  .section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .header__inner {
    height: var(--header-height);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .mobile-menu-btn,
  .btn,
  .pagination,
  .top-casinos,
  .kw-section {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .main-content {
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
