/* =========================================================
   CuoreNero Food and Relax — Casino Bonus Landing
   Stile: gambling / casinò con colori bandiera italiana
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f4f6f4;
  overflow-x: hidden;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #008c45;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #cd212a;
}

:root {
  --green: #008c45;
  --green-dark: #006a34;
  --green-light: #e6f5ec;
  --red: #cd212a;
  --red-dark: #a9181f;
  --white: #ffffff;
  --cream: #fff9ee;
  --gold: #f4c430;
  --gold-dark: #d4a820;
  --dark: #1a1a1a;
  --text: #2b2b2b;
  --muted: #6b7280;
  --border: #e3e3e3;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 22px rgba(0,0,0,.09);
  --shadow-lg: 0 14px 38px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --gradient-italy: linear-gradient(90deg, var(--green) 0%, var(--green) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--red) 66.66%, var(--red) 100%);
  --gradient-gold: linear-gradient(135deg, #f7d774 0%, #f4c430 50%, #d4a820 100%);
  --gradient-red: linear-gradient(135deg, #e02a35 0%, #cd212a 50%, #a9181f 100%);
  --gradient-green: linear-gradient(135deg, #00a352 0%, #008c45 50%, #006a34 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-cta {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(205, 33, 42, .35), inset 0 -2px 0 rgba(0,0,0,.12);
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff;
  box-shadow: 0 10px 24px rgba(205, 33, 42, .45), inset 0 -2px 0 rgba(0,0,0,.12);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-play {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.icon-gift {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gradient-italy);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.logo {
  height: 42px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-italy);
  transition: width .25s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 11px 18px;
  font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 48px 0 36px;
  background:
    radial-gradient(ellipse at top left, rgba(0,140,69,.08), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(205,33,42,.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff9ee 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(244,196,48,.08) 0, transparent 3px),
    radial-gradient(circle at 85% 20%, rgba(0,140,69,.08) 0, transparent 3px),
    radial-gradient(circle at 45% 70%, rgba(205,33,42,.08) 0, transparent 3px),
    radial-gradient(circle at 75% 80%, rgba(244,196,48,.08) 0, transparent 3px);
  background-size: 60px 60px, 80px 80px, 70px 70px, 90px 90px;
  pointer-events: none;
  opacity: .6;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.chip {
  position: absolute;
  font-size: 28px;
  opacity: .18;
  animation: floatChip 8s ease-in-out infinite;
}

.chip-1 { top: 12%; left: 6%; animation-delay: 0s; }
.chip-2 { top: 70%; left: 8%; animation-delay: 1.5s; font-size: 34px; color: var(--red); }
.chip-3 { top: 18%; right: 8%; animation-delay: 3s; font-size: 34px; color: var(--red); }
.chip-4 { top: 72%; right: 6%; animation-delay: 4.5s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--dark);
  max-width: 900px;
  letter-spacing: -.5px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: var(--gradient-italy);
  border-radius: 3px;
  margin-top: 14px;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text);
  max-width: 820px;
  margin: 0 0 26px;
}

.hero-lead strong {
  color: var(--red);
}

/* Author Box */
.author-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.author-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 999px;
}

.verified-badge svg {
  width: 14px;
  height: 14px;
}

.author-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- LISTING SECTION ---------- */
.listing-section {
  padding: 36px 0 50px;
  background: #f4f6f4;
  position: relative;
}

.listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,140,69,.015) 30px, rgba(0,140,69,.015) 31px);
  pointer-events: none;
}

.listing-title {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 30px;
  color: var(--dark);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.listing-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-italy);
  border-radius: 3px;
  margin: 14px auto 0;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* ---------- CASINO CARD ---------- */
.casino-card {
  display: grid;
  grid-template-columns: 60px 1.3fr 1.3fr 1.4fr 180px;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-italy);
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.casino-card:first-child {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.casino-card:first-child::after {
  content: "TOP 1";
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--gradient-gold);
  color: #4a3500;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 36px;
  transform: rotate(35deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.rank {
  font-size: 32px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
  text-align: center;
  font-family: Georgia, serif;
  line-height: 1;
}

.casino-card:first-child .rank {
  -webkit-text-stroke: 2px var(--gold-dark);
  color: var(--gold);
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.brand-logo {
  max-width: 130px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.rating {
  display: flex;
  gap: 1px;
  font-size: 14px;
  letter-spacing: 1px;
}

.star {
  color: #d1d5db;
  line-height: 1;
}

.star.full {
  color: var(--gold);
}

.star.half {
  color: var(--gold);
  opacity: .55;
}

.bonus-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.bonus-label {
  display: inline-block;
  background: var(--gradient-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}

.bonus-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.bonus-code {
  font-size: 12px;
  color: var(--muted);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: var(--green-dark);
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.cta-block {
  display: flex;
  justify-content: center;
}

/* ---------- CONTENT SECTION ---------- */
.content-section {
  padding: 40px 0 50px;
  background: #fff;
}

.content-inner {
  max-width: 900px;
}

.content-inner h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 14px;
  line-height: 1.3;
  position: relative;
  padding-left: 18px;
}

.content-inner h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  background: var(--gradient-italy);
  border-radius: 3px;
}

.content-inner h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin: 24px 0 10px;
  line-height: 1.35;
}

.content-inner p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
}

.content-inner ul,
.content-inner ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text);
}

.content-inner li {
  margin-bottom: 8px;
}

.content-inner ul li::marker {
  color: var(--green);
}

.content-inner ol li::marker {
  color: var(--red);
  font-weight: 700;
}

.content-inner strong {
  color: var(--dark);
  font-weight: 700;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.content-inner table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.content-inner table tr:first-child td {
  background: var(--gradient-green);
  color: #fff;
  font-weight: 700;
}

.content-inner table tr:first-child td p {
  margin: 0;
  color: #fff;
}

.content-inner table tr:first-child td strong {
  color: #fff;
}

.content-inner table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
}

.content-inner table td p {
  margin: 0;
  font-size: 14px;
}

.content-inner table tr:nth-child(even) td {
  background: #fafafa;
}

.content-inner table tr:not(:first-child):hover td {
  background: var(--green-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 50px 16px 20px;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  display: inline;
  margin: 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--gradient-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: var(--gradient-red);
}

.faq-item summary:hover h3 {
  color: var(--green);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #141414;
  color: #bcbcbc;
  padding: 40px 0 20px;
  margin-top: 30px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-italy);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.footer-nav a {
  color: #bcbcbc;
  font-size: 14px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--gold);
}

.responsible-gaming {
  padding: 18px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.rg-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 6px;
  border: 2px solid #fff;
}

.rg-badge-text {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .3px;
}

.rg-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: #9a9a9a;
  margin: 0;
}

.rg-disclaimer strong {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6a6a6a;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 90;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 50px 1fr 1fr 1fr 150px;
    gap: 12px;
    padding: 16px;
  }

  .rank {
    font-size: 28px;
  }

  .brand-logo {
    max-width: 110px;
    max-height: 50px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 768px) {

  /* Hide main nav on mobile */
  .main-nav {
    display: none;
  }

  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    height: 36px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 13px;
  }

  .header-cta .icon-gift {
    width: 16px;
    height: 16px;
  }

  /* Hero */
  .hero {
    padding: 28px 0 24px;
  }

  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .hero-lead {
    font-size: .98rem;
  }

  .chip {
    font-size: 22px;
  }

  /* Author box mobile */
  .author-box {
    padding: 8px 14px 8px 8px;
    gap: 10px;
  }

  .author-img {
    width: 42px;
    height: 42px;
  }

  .author-name {
    font-size: 14px;
  }

  .author-meta {
    font-size: 12px;
  }

  /* Listing */
  .listing-section {
    padding: 24px 0 34px;
  }

  .listing-title {
    font-size: 1.25rem;
    margin-bottom: 22px;
  }

  /* Casino card mobile — stacked layout */
  .casino-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px 18px;
    text-align: center;
    position: relative;
  }

  .casino-card::before {
    width: 100%;
    height: 5px;
    top: 0;
    bottom: auto;
  }

  .rank {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 24px;
    margin: 0;
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--green);
    -webkit-text-stroke: 0;
    color: var(--green);
  }

  .casino-card:first-child .rank {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
    -webkit-text-stroke: 0;
  }

  .casino-card:first-child::after {
    top: 14px;
    right: -34px;
    padding: 3px 36px;
    font-size: 10px;
  }

  .brand-block {
    padding-top: 8px;
  }

  .brand-logo {
    max-width: 150px;
    max-height: 60px;
  }

  .brand-name {
    font-size: 16px;
  }

  .rating {
    font-size: 16px;
  }

  .bonus-block {
    align-items: center;
    text-align: center;
  }

  .bonus-text {
    font-size: 18px;
  }

  .features-list {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn-play {
    font-size: 15px;
    padding: 13px 18px;
  }

  /* Content */
  .content-section {
    padding: 28px 0 36px;
  }

  .content-inner h2 {
    font-size: 1.25rem;
    margin: 26px 0 12px;
    padding-left: 14px;
  }

  .content-inner h3 {
    font-size: 1.08rem;
    margin: 18px 0 8px;
  }

  .content-inner p,
  .content-inner li {
    font-size: 15px;
  }

  .content-inner table {
    font-size: 13px;
    min-width: 450px;
  }

  .content-inner table td {
    padding: 10px 10px;
  }

  .content-inner table td p {
    font-size: 13px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 14px 46px 14px 16px;
  }

  .faq-item summary h3 {
    font-size: 15px;
  }

  .faq-item summary::after {
    right: 12px;
    width: 26px;
    height: 26px;
    font-size: 18px;
  }

  .faq-item p {
    padding: 0 16px 14px;
    font-size: 14px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-nav ul {
    gap: 12px 20px;
  }

  .rg-disclaimer {
    font-size: 12.5px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
  }

  .logo {
    height: 32px;
  }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .hero-decor,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
