/**
 * Main Stylesheet - Danske Casino Guide
 * Pixel-perfect styling from Figma design
 *
 * @package DanskeCasinoGuide
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
  /* Colors */
  --color-bg-primary: #0b0d16;
  --color-bg-topbar: #0e1019;
  --color-bg-card: #161928;
  --color-bg-logo-area: #1b5032;

  --color-text-white: #ffffff;
  --color-text-light-gray: #939393;
  --color-text-medium-gray: #b7b7b7;
  --color-text-dark-gray: #8e8e8e;
  --color-text-darker-gray: #717171;

  --color-blue-accent: #2881e6;
  --color-green-cta: #28e667;
  --color-border: #686868;

  /* Gold Gradient */
  --gradient-gold: linear-gradient(
    102.97deg,
    rgb(179, 125, 51) 1.9261%,
    rgb(240, 203, 89) 33.849%,
    rgb(251, 236, 133) 69.295%,
    rgb(187, 155, 73) 100.01%
  );

  /* Typography */
  --font-family: "Gabarito", sans-serif;

  /* Spacing */
  --container-max-width: 1440px;
  --content-max-width: 1100px;
  --spacing-section: 32px;

  /* Border Radius */
  --border-radius-small: 5px;
  --border-radius-button: 6px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--color-text-white);
  background-color: var(--color-bg-primary);
  background-image: url("./../images/bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  opacity: 0.8;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

/* ========================================
   Top Bar
   ======================================== */
.topbar {
  width: 100%;
  background-color: var(--color-bg-topbar);
  overflow: hidden;
}

.topbar-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: var(--color-text-white);
  margin: 0;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  padding: 20px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.site-logo {
  width: 59px;
  height: 53px;
  margin-bottom: 9px;
}

.site-logo a {
  display: block;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   Navigation
   ======================================== */
.main-navigation {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.menu-toggle-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-white);
  transition: all 0.3s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-white);
  transition: all 0.3s ease;
}

.menu-toggle-icon::before {
  top: -8px;
}

.menu-toggle-icon::after {
  bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.main-navigation li {
  margin: 0;
}

.main-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 114px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
  color: var(--color-text-light-gray);
  transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a {
  color: var(--color-text-white);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  text-align: center;
}

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

.hero-title {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-white);
  margin: 0 0 20px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-white);
}

/* ========================================
   Brands Table Section
   ======================================== */
.brands-table-section {
  padding: 40px 20px;
}

.brands-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-section);
}

/* Table Header */
.table-header {
  display: grid;
  grid-template-columns: 177px 1fr 0.5fr 0.5fr 1fr;
  gap: 37px;
  padding: 0 14px;
  height: 54px;
  background: linear-gradient(
    180deg,
    rgba(12, 15, 25, 0.9) -61.9%,
    rgba(77, 77, 77, 0.9) 135.71%
  );

  border-radius: var(--border-radius-small);
  align-items: center;
  overflow: hidden;
}

.table-header-cell {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
  color: var(--color-text-white);
}

/* Table Body */
.table-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-section);
}

/* Brand Row Wrapper */
.brand-row-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* Brand Card */
.brand-card {
  width: 100%;
  display: grid;
  grid-template-columns: 177px 1fr 0.5fr 0.5fr 1fr;
  gap: 37px;
  padding: 10px 14px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Top Pick Badge */
.top-pick-badge {
  position: absolute;
  top: -10px;
  left: calc(14px + 177px / 2);
  transform: translateX(-50%);
  z-index: 10;
  padding: 6px 12px;
  background: var(--gradient-gold);
  border-radius: var(--border-radius-small);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #000000;
  white-space: nowrap;
}

/* Brand Logo */
.brand-cell.cell-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 89px;
  /* background-color: var(--color-bg-logo-area); */
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
  /* padding: 10px; */
}

.brand-logo img {
  /* max-width: 100%;
  max-height: 100%;
  object-fit: contain; */
  width: 100%;
  object-fit: contain;
}

/* Offer Cell */
.brand-cell.cell-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offer-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-white);
  margin-bottom: 4px;
}

.offer-text p {
  margin: 0;
}

.offer-subtitle {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text-white);
}

/* Minimum Deposit Cell */
.brand-cell.cell-deposit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.min-deposit {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-blue-accent);
}

/* Rating Cell */
.brand-cell.cell-rating {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.rating-number {
  font-size: 39.397px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.rating-number.rating-blue {
  color: var(--color-blue-accent);
}

.rating-number.rating-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 14px;
  line-height: 1;
}

.star-blue {
  color: var(--color-blue-accent);
}

.star-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Cell */
.brand-cell.cell-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  width: 100%;
  height: 44.862px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #000000;
  border-radius: var(--border-radius-button);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.cta-button.cta-gold {
  background: var(--gradient-gold);
}

.cta-button.cta-green {
  background-color: var(--color-green-cta);
}

/* Terms & Conditions */
.brand-tcs {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.67;
  text-align: center;
  color: var(--color-text-medium-gray);
  padding: 10px 20px;
}

.brand-tcs p {
  margin: 0;
}

/* ========================================
   Content Section
   ======================================== */
.content-section {
  padding: 40px 20px;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.67;
  color: var(--color-text-dark-gray);
}

.content-inner p {
  margin: 0 0 16px;
}

.content-inner h2,
.content-inner h3,
.content-inner h4 {
  color: var(--color-text-white);
  margin: 24px 0 16px;
  font-weight: 700;
}

.content-inner a {
  color: var(--color-blue-accent);
  text-decoration: underline;
}

.content-inner a:hover {
  opacity: 0.8;
}

/* ========================================
   Default Page Template
   ======================================== */
.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.entry-header {
  text-align: center;
  margin-bottom: 20px;
}

.entry-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-white);
  margin: 0;
}

.entry-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-white);
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--color-text-white);
  margin: 30px 0 15px;
  font-weight: 700;
}

.entry-content a {
  color: var(--color-blue-accent);
  text-decoration: underline;
}

.entry-content a:hover {
  opacity: 0.8;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
  padding: 40px 20px 60px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page .page-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-page .page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-white);
  margin: 0;
}

.page-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-medium-gray);
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form-section {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--color-text-white);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  background-color: var(--color-green-cta);
  border: none;
  border-radius: var(--border-radius-button);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Thank You Message */
.thank-you-message {
  text-align: center;
  padding: 60px 40px;
}

.thank-you-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-white);
  margin: 0 0 15px;
}

.thank-you-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-medium-gray);
  margin: 0 0 30px;
}

/* ========================================
   Responsible Gaming Page
   ======================================== */
.responsible-gaming-page {
  padding: 40px 20px 60px;
}

.responsible-gaming-container {
  max-width: 1100px;
  margin: 0 auto;
}

.responsible-gaming-page .page-header {
  text-align: center;
  margin-bottom: 40px;
}

.responsible-gaming-page .page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-white);
  margin: 0;
}

.featured-image-section {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
}

.featured-image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-small);
}

.responsible-gaming-page .page-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-white);
}

.responsible-gaming-page .page-content p {
  margin: 0 0 20px;
}

.responsible-gaming-page .page-content h2,
.responsible-gaming-page .page-content h3 {
  color: var(--color-text-white);
  margin: 30px 0 15px;
  font-weight: 700;
}

.responsible-gaming-page .page-content a {
  color: var(--color-blue-accent);
  text-decoration: underline;
}

.responsible-gaming-page .page-content a:hover {
  opacity: 0.8;
}

/* ========================================
   Blogs Section
   ======================================== */
.blogs-section {
  padding: 30px 20px;
}

.blogs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-image {
  width: 100%;
  margin-bottom: 15px;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-small);
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-white);
  margin: 0 0 10px;
}

.blog-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-medium-gray);
  margin: 0;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  padding: 60px 20px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.footer-logo a {
  display: block;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.67;
  text-align: center;
  color: var(--color-text-dark-gray);
}
/* Footer Navigation */
.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-navigation li {
  margin: 0;
}

.footer-navigation a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light-gray);
  transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus {
  color: var(--color-text-white);
}

/* Footer Disclaimer */
.footer-disclaimer {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  text-align: center;
  color: var(--color-text-darker-gray);
  letter-spacing: -0.176px;
  max-width: 1100px;
}

.footer-disclaimer p {
  margin: 0 0 16px;
}

/* Footer Logos */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logos a {
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer-logos a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   Responsive Design
   ======================================== */

@media screen and (max-width: 992px) {
  .table-header,
  .brand-card {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .table-header {
    display: none; /* Hide header on mobile */
  }

  .brand-card {
    padding: 20px;
  }

  .brand-logo {
    margin: 0 auto;
    max-width: 200px;
  }

  /* Top Pick Badge on Mobile */
  .top-pick-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-title {
    font-size: 28px;
  }

  /* Blogs - 2 columns on tablet */
  .blogs-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Mobile Header Layout */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .site-logo,
  .site-branding {
    margin-bottom: 0;
    order: 1;
  }

  /* Mobile Menu Styles */
  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    width: auto;
    order: 2;
  }

  .main-navigation ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: calc(100vw - 40px);
    max-width: 100%;
    padding: 20px 0;
    margin: 15px 0 0 0;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--color-bg-topbar);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .main-navigation.is-open ul {
    display: flex;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-navigation li:last-child {
    border-bottom: none;
  }

  .main-navigation a {
    width: 100%;
    min-width: unset;
    padding: 15px 30px;
    height: auto;
    justify-content: flex-start;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  .brand-card {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: center;
  }
  .brand-cell.cell-deposit {
    display: none;
  }
  .offer-text {
    font-size: 20px;
  }

  .rating-number {
    font-size: 32px;
  }

  .cta-button {
    font-size: 16px;
  }

  /* Blogs - 1 column on mobile */
  .blogs-wrapper {
    grid-template-columns: 1fr;
  }

  /* Responsible Gaming Page - Mobile */
  .responsible-gaming-page .page-title {
    font-size: 24px;
  }

  /* Default Page Template - Mobile */
  .entry-title {
    font-size: 24px;
  }

  /* Contact Page - Mobile */
  .contact-page .page-title {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-section {
    padding: 25px;
  }

  .thank-you-message {
    padding: 40px 20px;
  }

  .thank-you-content h3 {
    font-size: 22px;
  }
}

/* ========================================
   Accessibility
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-bg-card);
  color: var(--color-text-white);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   Cookie Bar
   ======================================== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-bar-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-medium-gray);
  flex: 1;
}

.cookie-bar-text a {
  color: var(--color-blue-accent);
  text-decoration: underline;
}

.cookie-bar-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--border-radius-button);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}

.cookie-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-bar-btn--accept {
  background-color: var(--color-green-cta);
  color: #000;
  border: none;
}

.cookie-bar-btn--decline {
  background: transparent;
  color: var(--color-text-light-gray);
  border: 1px solid var(--color-border);
}

.cookie-bar-btn--decline:hover {
  color: var(--color-text-white);
  border-color: var(--color-text-light-gray);
}

@media screen and (max-width: 768px) {
  .cookie-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-bar-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-bar-btn {
    flex: 1;
    max-width: 160px;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .topbar,
  .site-header,
  .site-footer,
  .cta-button {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
