:root {
  --navy-950: #030712;
  --navy-900: #061022;
  --navy-800: #0a1a35;
  --blue-600: #128cff;
  --cyan-400: #2ed7ff;
  --green-500: #68ef45;
  --orange-500: #ff7a13;
  --ink: #061a3a;
  --text: #21314c;
  --muted: #65748c;
  --line: #dce6f3;
  --surface: #ffffff;
  --surface-blue: #f4f8ff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(5, 30, 70, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-600);
  transform: translateY(-80px);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  color: #fff;
}

.brand {
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  color: #1aa6ff;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  transition: color .18s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--cyan-400);
}

.header-trust {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}

.header-trust span {
  padding: 8px 10px;
  border: 1px solid rgba(85, 195, 255, .38);
  border-radius: 999px;
  background: rgba(3, 13, 35, .4);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 19% 70%, rgba(17, 147, 255, .32), transparent 25%),
    linear-gradient(105deg, #040816 0%, #061638 56%, #020611 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 17, .86));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 510px);
  align-items: center;
  gap: 64px;
  width: min(1360px, calc(100% - 48px));
  min-height: 900px;
  margin: 0 auto;
  padding-top: 96px;
}

.hero-copy {
  max-width: 610px;
  align-self: start;
  padding-top: 84px;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  top: 42px;
  width: min(680px, 92vw);
  height: 360px;
  background: radial-gradient(ellipse at 26% 42%, rgba(1, 8, 24, .82), rgba(1, 8, 24, .52) 54%, transparent 78%);
  filter: blur(18px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 610px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .62);
}

h1 span {
  color: var(--blue-600);
  text-shadow: 0 0 36px rgba(18, 140, 255, .42);
}

.lead {
  max-width: 560px;
  color: #d9e8ff;
  font-size: 19px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .6);
}

.hero-seo-line {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(225, 239, 255, .88);
  font-size: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.hero-saving {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  padding: 12px 18px 13px;
  border: 1px solid rgba(104, 239, 69, .28);
  border-radius: 8px;
  color: #f6fbff;
  background: linear-gradient(135deg, rgba(2, 14, 34, .74), rgba(6, 35, 42, .58));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24), inset 0 0 24px rgba(104, 239, 69, .06);
  backdrop-filter: blur(10px);
  font-size: 25px;
  font-weight: 900;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .7);
  animation: savingNudge 4.8s ease-in-out infinite;
  transform-origin: center;
}

.hero-saving strong {
  color: var(--green-500);
  font-size: 38px;
  line-height: .9;
  text-shadow: 0 0 26px rgba(104, 239, 69, .34);
  display: inline-block;
  animation: euroWiggle 4.8s ease-in-out infinite;
  transform-origin: center;
}

.hero-saving span {
  white-space: nowrap;
}

.saving-prefix,
.saving-suffix {
  display: inline-block;
}

.saving-note {
  max-width: 420px;
  margin: 8px 0 0 2px;
  color: rgba(230, 241, 255, .82);
  font-size: 13px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .65);
}

.hero-flame-visual {
  position: relative;
  width: min(610px, 100%);
  height: 255px;
  margin-top: 2px;
  margin-left: -6px;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 34px rgba(28, 164, 255, .16));
  mask-image: radial-gradient(ellipse at 38% 62%, #000 0 50%, rgba(0,0,0,.66) 66%, transparent 86%);
}

.hero-flame-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.04);
}

.hero-flame-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 33% 66%, rgba(24, 166, 255, .12), transparent 44%),
    linear-gradient(90deg, #06112d 0%, rgba(6, 17, 45, .96) 16%, transparent 36%, transparent 68%, #06112d 100%),
    linear-gradient(180deg, #06112d 0%, transparent 20%, transparent 72%, #06112d 100%);
  pointer-events: none;
}

.heating-tips-box {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
  gap: 34px;
  align-items: center;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(19, 105, 224, .16);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #f6fbff);
  box-shadow: 0 22px 60px rgba(10, 36, 84, .14);
}

.heating-tips-copy h3 {
  margin: 6px 0 10px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
}

.heating-tips-copy > p:not(.eyebrow) {
  margin-bottom: 18px;
  color: #263e63;
}

.heating-tip-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0;
  padding-left: 19px;
  color: #061a3d;
  font-size: 14px;
  line-height: 1.3;
}

.heating-tip-list li::marker {
  color: var(--blue-600);
  font-weight: 900;
}

.steps-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(19, 105, 224, .18);
  border-radius: 10px;
  background: #030a1b;
  box-shadow: 0 16px 40px rgba(10, 36, 84, .18);
}

.steps-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


@keyframes savingNudge {
  0%, 74%, 100% { transform: translateX(0) rotate(0deg); }
  77% { transform: translateX(-2px) rotate(-.4deg); }
  80% { transform: translateX(3px) rotate(.45deg); }
  83% { transform: translateX(-2px) rotate(-.35deg); }
  86% { transform: translateX(2px) rotate(.25deg); }
  89% { transform: translateX(0) rotate(0deg); }
}

@keyframes euroWiggle {
  0%, 73%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
  76% { transform: scale(1.04) rotate(-1deg); filter: brightness(1.1); }
  80% { transform: scale(1.1) rotate(1.2deg); filter: brightness(1.2); }
  84% { transform: scale(1.05) rotate(-.8deg); filter: brightness(1.12); }
  88% { transform: scale(1) rotate(0deg); filter: brightness(1); }
}

.compare-panel {
  align-self: center;
  border: 1px solid rgba(54, 174, 255, .8);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(6, 26, 65, .92), rgba(3, 10, 30, .88));
  box-shadow: 0 0 55px rgba(0, 123, 255, .22), inset 0 0 35px rgba(38, 155, 255, .08);
  backdrop-filter: blur(16px);
}

.compare-panel h2 {
  margin-bottom: 8px;
  color: var(--cyan-400);
  text-align: center;
  font-size: 24px;
}

.compare-panel p {
  color: #cfe0f8;
  text-align: center;
}

.compare-intro {
  max-width: 430px;
  margin: 10px auto 24px;
  font-size: 16px;
  line-height: 1.35;
}

.primary-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(90deg, #ffad16, #ff4d0b);
  box-shadow: 0 14px 34px rgba(255, 102, 8, .34);
  font-size: 20px;
  font-weight: 950;
  font-family: inherit;
  cursor: pointer;
}

.primary-cta-large {
  min-height: 72px;
  border-radius: 10px;
  font-size: 23px;
  letter-spacing: .01em;
  box-shadow: 0 18px 44px rgba(255, 102, 8, .44), 0 0 32px rgba(255, 173, 22, .22);
}

.primary-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 34%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .18) 38%, rgba(255, 255, 255, .72) 50%, rgba(255, 255, 255, .18) 62%, transparent 100%);
  transform: skewX(-22deg);
  animation: ctaShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.primary-cta:hover::after {
  animation-duration: 1.6s;
}

.cta-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.cta-benefits span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid rgba(46, 215, 255, .34);
  border-radius: 7px;
  color: #e1efff;
  background: linear-gradient(135deg, rgba(16, 90, 184, .46), rgba(6, 22, 54, .72));
  box-shadow: inset 0 0 24px rgba(46, 215, 255, .08), 0 10px 28px rgba(0, 0, 0, .18);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.cta-benefits span::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #061022;
  background: var(--green-500);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(104, 239, 69, .35);
}

.cta-benefits strong {
  display: block;
  color: #fff;
  margin-bottom: 3px;
  font-size: 17px;
}

@keyframes ctaShine {
  0%, 42% { left: -45%; opacity: 0; }
  52% { opacity: .95; }
  68% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue-600), #0d62df);
  box-shadow: 0 14px 34px rgba(18, 140, 255, .24);
  font-weight: 900;
}

.micro-trust {
  margin: 16px 0 0;
  font-size: 14px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #dfeaff;
  background: #061432;
  border-top: 1px solid rgba(70, 169, 255, .35);
  border-bottom: 1px solid rgba(70, 169, 255, .25);
}

.trust-strip div {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(89, 154, 229, .18);
}

.trust-strip strong {
  color: #fff;
  font-size: 22px;
}

.trust-strip span {
  color: #aebfda;
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.content-band h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.calculator-section {
  width: min(1240px, calc(100% - 48px));
}

.affiliate-box {
  min-height: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-grid,
.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-grid article,
.advice-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 36, 76, .08);
}

.step-grid article {
  padding: 28px;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), #0e58d8);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 950;
}

.step-grid h3,
.advice-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.steps,
.faq {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: var(--surface-blue);
}

.advice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.advice-grid article {
  padding: 25px;
}

.content-band {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 50px;
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  color: #dceaff;
  background: linear-gradient(135deg, #061432, #082a60);
}

.content-band h2 {
  color: #fff;
}

.intent-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intent-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 16px 40px rgba(8, 36, 76, .08);
}

.intent-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.intent-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-600);
  font-weight: 900;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.text-columns p {
  color: #d2def1;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.more-savings-cta {
  display: grid;
  place-items: center;
  padding: 42px 24px 48px;
  background: #f6fbff;
}

.more-savings-button {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 38px;
  border-radius: 999px;
  color: #061022;
  background: linear-gradient(135deg, #7cff54, var(--green-500));
  box-shadow: 0 16px 34px rgba(80, 210, 45, .32);
  font-size: 20px;
  font-weight: 950;
  text-decoration: none;
}

.more-savings-button small {
  color: rgba(6, 16, 34, .72);
  font-size: 13px;
  font-weight: 850;
}

.more-savings-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(80, 210, 45, .42);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: #dceaff;
  background: var(--navy-950);
}

.site-footer .brand {
  font-size: 24px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: #b7c6dc;
  font-size: 14px;
}

.compare-page {
  background: var(--surface-blue);
}

.compare-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--navy-950);
}

.compare-header .main-nav {
  justify-content: end;
}

.compare-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 48px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 72%, rgba(19, 148, 255, .25), transparent 26%),
    linear-gradient(120deg, #061022, #08265a 58%, #030814);
}

.compare-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(46px, 4.7vw, 72px);
}

.compare-hero .lead {
  max-width: 760px;
}

.compare-help {
  border: 1px solid rgba(54, 174, 255, .55);
  border-radius: 12px;
  padding: 26px;
  background: rgba(3, 13, 35, .45);
}

.compare-help h2 {
  margin-bottom: 14px;
  color: var(--cyan-400);
  font-size: 22px;
}

.compare-help ul {
  margin: 0;
  padding-left: 20px;
  color: #d9e8ff;
}

.calculator-wide {
  width: min(1320px, calc(100% - 48px));
  min-height: 740px;
  margin: 30px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-notes {
  padding-top: 46px;
}

.compare-smallprint {
  max-width: 900px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  background: var(--surface-blue);
}

.legal-header {
  padding: 28px max(24px, calc((100vw - 920px) / 2));
  color: #fff;
  background: var(--navy-950);
}

.legal-content {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 90px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
}

.legal-content h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 26px;
}

.legal-content a {
  color: var(--blue-600);
  font-weight: 850;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-nav {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
  }

  .main-nav a {
    padding: 7px 10px;
    border: 1px solid rgba(85, 195, 255, .28);
    border-radius: 999px;
    background: rgba(3, 13, 35, .36);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .compare-panel {
    max-width: 560px;
  }

  .trust-strip,
  .step-grid,
  .advice-grid,
  .intent-grid,
  .content-band,
  .text-columns,
  .compare-hero {
    grid-template-columns: 1fr;
  }

  .compare-header {
    grid-template-columns: 1fr;
  }

  .compare-header .main-nav {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero-content,
  .section,
  .calculator-section {
    width: min(100% - 32px, 1180px);
  }

  .header-trust {
    display: none;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a {
    padding: 6px 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-flame-visual {
    width: 100%;
    height: 190px;
    margin-top: 10px;
    margin-left: 0;
  }

  .lead {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-seo-line {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-saving {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    width: 100%;
    margin-top: 14px;
    padding: 15px 14px 16px;
    font-size: clamp(21px, 6.2vw, 28px);
    line-height: 1.05;
    text-align: center;
  }

  .hero-saving strong {
    display: block;
    font-size: clamp(42px, 15vw, 62px);
    line-height: .88;
  }

  .hero-saving .saving-prefix,
  .hero-saving .saving-suffix {
    display: block;
  }

  .saving-note {
    max-width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .compare-panel {
    padding: 24px;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
  }

  .compare-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .calculator-wide {
    width: min(100% - 32px, 1320px);
    min-height: 620px;
    padding: 14px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    min-height: 84px;
  }

  .section {
    padding: 58px 0;
  }

  .steps,
  .faq,
  .content-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .heating-tips-box {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
