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

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

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  /* Brand colors */
  --color-header: #c60038;
  --color-navbar: #333;
  --color-red: #ff383c;
  --color-purple: #cb30e0;
  --color-accent: #b88b58;
  --color-bg: #fafafa;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #000000;
  --color-gray: #626262;
  --color-link: #45688e;
  --color-border: #dae1e8;
  --color-button: #fa8a32;
  --color-button-shadow: #e37016;
  /* Fonts */
  --font-georgia: "Georgia", serif;
  --font-pt-serif: "PT Serif", serif;
  --font-inter: "Inter", sans-serif;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-georgia);
  color: var(--color-text);
}

.header {
  width: 100%;
}
.header__main {
  background-color: var(--color-header);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 966px) {
  .header__main {
    padding: 10px 20px;
    justify-content: flex-start;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 30px;
  padding: 5px;
}
@media (max-width: 966px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header__main--wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 966px) {
  .header__main--wrapper {
    margin-left: 0;
  }
}
.header__nav {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 966px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background-color: var(--color-header);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    z-index: 1000;
  }
  .header__nav.active {
    display: flex;
  }
}
.header__link {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-white);
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.header__link:hover {
  color: #f2b2b2;
}
@media (max-width: 768px) {
  .header__link {
    font-size: 14px;
    white-space: normal;
  }
}
.header__navbar--wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.header__navbar {
  background-color: var(--color-navbar);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__navbar {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.header__navbar-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  color: var(--color-white);
  line-height: 1.2;
  width: 277px;
}
@media (max-width: 768px) {
  .header__navbar-title {
    width: 100%;
  }
}
.header__navbar-nav {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__navbar-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.header__navbar-link {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-white);
  line-height: 1.2;
  transition: all 100ms ease;
}
.header__navbar-link:hover {
  color: #1a6394;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header__navbar-link {
    font-size: 12px;
  }
}

.main {
  width: 100%;
}

.content-wrapper {
  background-color: var(--color-white);
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .content-wrapper {
    margin: 10px auto;
    padding: 15px;
  }
}

.content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.article-header__category {
  background-color: var(--color-accent);
  padding: 4px 8px;
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.2;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
}
.article-header__meta {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .article-header__meta {
    flex-direction: column;
    align-items: center;
  }
}
.article-header__meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 16px;
}
.article-header__icon {
  width: auto;
  height: 10px;
  flex-shrink: 0;
}
.article-header__text {
  font-family: var(--font-georgia);
  font-size: clamp(14px, 1.067vw, 16px);
  color: #808080;
  line-height: 1.2;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article__title {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(24px, 3.90625vw, 32px);
  color: var(--color-black);
  line-height: 1.2;
  text-align: center;
}
.article__subtitle {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
}
.article__img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  height: auto;
  display: block;
}
.article__product-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 20px auto;
}
.article__text {
  font-family: var(--font-georgia);
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
}
.article__text p {
  margin-bottom: 20px;
}
.article__text p:last-child {
  margin-bottom: 0;
}
.article__text--center {
  text-align: center;
}
.article__text--bold {
  font-weight: 700;
}
.article__text--red {
  color: var(--color-red);
}
.article__text--purple {
  color: var(--color-purple);
}
.article__text--small {
  font-weight: 700;
  font-size: clamp(14px, 2.0833333333vw, 16px);
}
.article__text--mixed p {
  margin-bottom: 20px;
}
.article__text--mixed p:last-child {
  margin-bottom: 0;
}
.article__text--mixed span {
  font-family: var(--font-georgia);
  font-weight: 700;
}
.article__text--mixed strong {
  font-family: var(--font-georgia);
  font-weight: 700;
}
.article__text--mixed strong.article__text--red {
  color: var(--color-red);
}
.article__alert {
  background-color: rgba(255, 0, 0, 0.14);
  border: 1px solid var(--color-red);
  padding: 16px;
}
.article__alert p {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article__alert p:last-child {
  margin-bottom: 0;
}
.article__alert p.light {
  font-weight: 400;
}
.article__alert p.article__text--center {
  text-align: center;
}
.article__alert p.article__text--red {
  color: var(--color-red);
}
.article__highlight {
  border: 1px solid var(--color-red);
  padding: 16px;
}
.article__highlight p {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-red);
  line-height: 1.2;
  text-align: center;
}
.article__age-badge {
  cursor: pointer;
  padding: 10px;
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.article__age-badge::before {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: 1;
  opacity: 1;
  transition: all 500ms ease;
}
.article__age-badge-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(38px, 4.9479166667vw, 48px);
  color: var(--color-white);
  line-height: 1.2;
  z-index: 2;
  opacity: 1;
  transition: all 500ms ease;
}
.article__age-badge:hover::before {
  opacity: 0;
}
.article__age-badge:hover .article__age-badge-circle {
  opacity: 0;
}
.article__age-badge-img {
  width: 100%;
  position: relative;
  z-index: 0;
}
.article__age-badge-bg {
  display: block;
  width: 82%;
  height: auto;
  margin: 32px auto;
}
.article__nail-changes {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.article__nail-changes-header {
  background: linear-gradient(90deg, #4f378b 0%, #4f378b 100%);
  padding: 10px;
  text-align: center;
  font-family: var(--font-inter);
  font-size: clamp(20px, 3.125vw, 26px);
  color: var(--color-white);
  line-height: 1.2;
}
.article__herbs {
  background-color: #e4e4e4;
  display: grid;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .article__herbs {
    grid-template-columns: 1fr;
  }
}
.article__herbs-img {
  flex: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__list {
  font-family: var(--font-georgia);
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
  list-style: decimal;
  padding-left: 33px;
}
.article__list li {
  margin-bottom: 10px;
}
.article__list li:last-child {
  margin-bottom: 0;
}
.article__bullet-list {
  font-family: var(--font-georgia);
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
  list-style: disc;
  padding-left: 33px;
}
.article__bullet-list li {
  margin-bottom: 10px;
}
.article__bullet-list li:last-child {
  margin-bottom: 0;
}

.article__nail-changes-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .article__nail-changes-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    max-width: none;
  }
}

.article__nail-changes-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  align-items: center;
  padding: 10px 0;
  font-family: var(--font-inter);
  font-size: clamp(12px, 1.953125vw, 15px);
  color: var(--color-black);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .article__nail-changes-labels {
    gap: 10px;
  }
}
.article__nail-changes-labels:first-of-type {
  order: 1;
}
@media (min-width: 768px) {
  .article__nail-changes-labels:first-of-type {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.article__nail-changes-labels:last-of-type {
  order: 3;
}
@media (min-width: 768px) {
  .article__nail-changes-labels:last-of-type {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}

.nails-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nails-desktop {
    display: block;
    width: 100%;
    height: auto;
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

.nail-1 {
  width: 100%;
  height: auto;
  order: 2;
}
@media (min-width: 768px) {
  .nail-1 {
    display: none;
  }
}

.nail-2 {
  width: 100%;
  height: auto;
  order: 4;
}
@media (min-width: 768px) {
  .nail-2 {
    display: none;
  }
}

.cta {
  background-color: #faf2df;
  padding: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.cta__intro {
  background-color: #f9f9f9;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .cta__intro {
    padding: 20px;
  }
}
.cta__box {
  background-color: var(--color-white);
  border: 1px solid #b5b5b5;
  border-radius: 15px;
  padding: 20px;
}
.cta__box-text {
  font-family: var(--font-georgia);
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-black);
  line-height: 1.2;
  text-align: center;
}
.cta__box-text p {
  margin-bottom: 20px;
}
.cta__box-text p:last-child {
  margin-bottom: 0;
}
.cta__box-date {
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-gray);
}
.cta__heading {
  padding: 50px 0 15px;
  text-align: center;
  font-family: var(--font-georgia);
  color: var(--color-black);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .cta__heading {
    padding: 30px 0 15px;
  }
}
.cta__heading-main {
  font-size: clamp(28px, 4.1666666667vw, 40px);
  margin-bottom: 10px;
}
.cta__heading-sub {
  font-size: clamp(22px, 3.125vw, 30px);
}
.cta__wins {
  width: 100%;
}
.cta__wins-header {
  background: linear-gradient(90deg, #f67c32 0%, #fd9b30 100%);
  height: auto;
  min-height: 40px;
  display: flex;
  padding: 5px 0;
}
.cta__wins-header-col {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 15px 0 15px;
  font-family: var(--font-georgia);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-black);
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}
.cta__wins-row {
  background-color: var(--color-white);
  border: 1px solid #b5b5b5;
  border-top: none;
  height: auto;
  min-height: 40px;
  padding: 5px 0;
  display: flex;
}
.cta__wins-row--last {
  border-radius: 0 0 15px 15px;
}
.cta__wins-col {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 15px 0 15px;
  font-family: var(--font-georgia);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-black);
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}
.cta__subtitle {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-black);
  line-height: 1.2;
  text-align: center;
}
.cta__banner {
  background-color: #3a4752;
  padding: 10px 20px;
  border-radius: 15px;
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 22px);
  color: var(--color-white);
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.doors__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(10px, 3.2552083333vw, 40px);
  width: 100%;
}

.door {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  cursor: pointer;
  perspective: 1000px;
}
.door__panel {
  transition: transform 0.6s ease;
  z-index: 2;
  transform-origin: left center;
  border-radius: 10px;
  overflow: hidden;
}
.door__panel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.door__offer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 2.6041666667vw, 28px);
  font-weight: 700;
  text-align: center;
  z-index: 1;
  border-radius: 4px;
  padding: 40px;
  cursor: default;
}
.door__offer.free-product {
  background: #fff;
  color: rgb(168, 0, 0);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 3px solid #000;
}
.door__offer.discount {
  background: #fff;
  color: #000;
  border: 3px solid #000;
}
.door:hover .door__panel {
  transform: rotateY(-30deg);
}
.door.opened .door__panel {
  transform: rotateY(-90deg);
}
.door.opened .door__offer {
  display: flex;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
}
.comment__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comment__name {
  font-family: var(--font-pt-serif);
  font-weight: 700;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-link);
  line-height: 1.2;
}
.comment__text {
  font-family: var(--font-pt-serif);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-black);
  line-height: 1.2;
}
.comment__img {
  width: 280px;
  height: auto;
}
@media (max-width: 768px) {
  .comment__img {
    width: 100%;
  }
}
.comment__time {
  font-family: var(--font-pt-serif);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: #999;
  line-height: 1.2;
}

.sticky-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.sticky-button__btn {
  background-color: var(--color-button);
  box-shadow: 0px 2px 0px 0px var(--color-button-shadow);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  color: var(--color-white);
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sticky-button__btn:hover {
  transform: translateY(-2px);
  background: #e37016;
  box-shadow: 0 2px 0 0 #e37016;
}
.sticky-button__btn:active {
  transform: translateY(0);
}

.footer {
  background-color: var(--color-navbar);
  color: var(--color-white);
  padding: 40px 20px 100px 20px;
  text-align: center;
}
.footer__copyright {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--font-georgia);
  font-size: clamp(12px, 1.8229166667vw, 14px);
  line-height: 1.5;
}
.footer__copyright p {
  margin-bottom: 10px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
}
.footer__links a {
  color: var(--color-white);
  text-decoration: underline;
}
.footer__links a:hover {
  text-decoration: none;
}
.footer__text {
  margin-bottom: 20px;
}
.footer__text:last-child {
  margin-bottom: 0;
}

/* ========================================
   SUMMARY PAGE
   ======================================== */
.summary-wrapper {
  padding: 40px 16px;
}

.summary-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary__title {
  color: #00913c;
  text-align: center;
  font-family: var(--font-inter);
  font-size: clamp(24px, 4.1666666667vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.summary__large {
  color: #000;
  text-align: center;
  font-family: var(--font-georgia);
  font-size: clamp(19px, 2.8645833333vw, 22px);
  font-weight: 400;
  line-height: 1.2;
}

.summary__product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary__product-img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.summary__description {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 40px 0;
  text-align: center;
}

.summary__highlight {
  color: #078c3e;
  font-weight: 700;
}

.summary__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
}

.summary__btn {
  background-color: #ff8a3d;
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: clamp(16px, 2.34375vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #fa8a32;
  box-shadow: 0 2px 0 0 #e37016;
  text-align: center;
  transition: all 0.3s ease;
}
.summary__btn.hidden {
  display: none;
}
.summary__btn:hover {
  background: #e37016;
  box-shadow: 0 2px 0 0 #e37016;
}
.summary__btn:active {
  background: #e37016;
  box-shadow: 0 2px 0 0 #e37016;
}

.summary__btn-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #fa8a32;
  color: #000;
  font-family: var(--font-inter);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .summary__btn-link {
    min-width: 500px;
  }
}
.summary__btn-link.hidden {
  display: none;
}

.summary__hours {
  font-family: var(--font-inter);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 20px 0;
  text-align: center;
}

.summary__warning {
  font-family: var(--font-inter);
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  text-align: center;
}

.summary__warning-label {
  color: #e31e24;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */