@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::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: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

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

:root {
  --color-primary-300: #7fb2e8;
  --color-primary-500: #2f80ed;
  --color-primary-800: #154c94;
  --color-text-primary: #3d3d3d;
  --color-text-invert: #ffffff;
  --color-text-link: #2f80ed;
  --color-text-error: #9b3d3d;
  --color-text-highlight: #2e8b57;
  --color-nav-link: #262626;
  --color-nav-link-active: #154c94;
  --color-badge-bg: #c8e6d4;
  --color-badge-text: #1e6a42;
  --color-bg-page: #ffffff;
  --color-bg-surface: #f6f8f9;
  --color-bg-surface-alt: #faf9f6;
  --color-error-bg: #f8dada;
  --color-border-error: #9b3d3d;
  --color-border-light: #f6f6f6;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Raleway", sans-serif;
  --font-brand: "Monda", sans-serif;
}

.header-wrapper {
  width: 100%;
  background-color: var(--color-bg-page);
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .header-wrapper {
    padding: 32px 32px;
  }
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
}

.header__logo-img {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .header__logo-img {
    width: 67px;
    height: 67px;
  }
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1;
  letter-spacing: -0.48px;
}
@media (min-width: 769px) {
  .header__logo-text {
    letter-spacing: -0.32px;
  }
}

.header__logo-subtitle {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 24px;
  color: var(--color-primary-300);
  line-height: 1.05;
}
@media (min-width: 769px) {
  .header__logo-subtitle {
    font-size: 16px;
  }
}

.header__logo-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary-500);
  text-transform: uppercase;
  letter-spacing: -0.52px;
}
@media (min-width: 769px) {
  .header__logo-title {
    font-size: 26px;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 1100px) {
  .header__nav {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}

.header__nav-link {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-nav-link);
  text-align: center;
  transition: color 0.2s ease;
}
.header__nav-link--active {
  color: var(--color-nav-link-active);
}
.header__nav-link:not(.header__nav-link--active):hover {
  color: #2f80ed;
}

.article-wrapper {
  width: 100%;
  background-color: var(--color-bg-surface);
  padding: 24px 16px;
  border-radius: 16px;
}
@media (min-width: 769px) {
  .article-wrapper {
    padding: 64px 32px;
    border-radius: 32px;
  }
}
@media (min-width: 1264px) {
  .article-wrapper {
    margin: 0 auto;
    width: calc(100% - 64px);
  }
}

.article-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .article-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.article__main {
  width: 100%;
  max-width: 828px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1200px) {
  .article__main {
    flex: 1;
    gap: 24px;
  }
}

.article__badge {
  background-color: var(--color-badge-bg);
  padding: 8px 16px;
  border-radius: 100vmax;
  width: 100%;
}
@media (min-width: 769px) {
  .article__badge {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
  }
}
.article__badge p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-badge-text);
  letter-spacing: 0;
}
.article__badge .article__badge-underline {
  text-decoration: underline;
}

.article__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .article__title {
    font-size: 42px;
  }
}

.article__title-highlight {
  color: var(--color-text-highlight);
}

.article__main-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.article__main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article__main-image-caption {
  background-color: var(--color-error-bg);
  padding: 8px 0;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-error);
  letter-spacing: 0.84px;
}

.article__lead {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .article__lead {
    font-size: 20px;
  }
}

.article__strip {
  background-color: var(--color-primary-800);
  padding: 16px;
  border-radius: 8px;
}
.article__strip p {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-invert);
}
@media (min-width: 769px) {
  .article__strip p {
    font-size: 20px;
  }
}

.article__author-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .article__author-section {
    flex-direction: row;
    align-items: flex-start;
  }
}

.article__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 769px) {
  .article__author {
    flex-shrink: 0;
  }
}

.article__author-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border-light);
}
@media (min-width: 769px) {
  .article__author-img {
    width: 150px;
    height: 150px;
  }
}
.article__author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__author-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article__author-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-primary);
  letter-spacing: 0.84px;
}

.article__author-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-primary);
  letter-spacing: 0.84px;
}

.article__author-copy {
  flex: 1;
}
.article__author-copy p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__heading {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .article__heading {
    font-size: 32px;
  }
}
.article__heading--testimonials {
  font-size: 28px;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .article__heading--testimonials {
    font-size: 24px;
  }
}

.article__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.article__text strong {
  font-weight: 700;
}

.article__signal-box {
  position: relative;
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border-error);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 910px) {
  .article__signal-box {
    flex-direction: row;
  }
}

.article__signal-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 910px) {
  .article__signal-content {
    flex: 1;
    gap: 24px;
    max-width: 550px;
  }
}

.article__signal-title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-text-error);
}
@media (min-width: 769px) {
  .article__signal-title {
    font-size: 28px;
  }
}

.article__signal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px;
}
@media (min-width: 769px) {
  .article__signal-list {
    padding-left: 20px;
  }
}

.article__signal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.article__signal-item span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  flex: 1;
}

.article__signal-icon {
  width: 22.8px;
  height: 22.8px;
  flex-shrink: 0;
}

.article__signal-footer {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__signal-image {
  width: 100%;
  height: 384px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 910px) {
  .article__signal-image {
    z-index: 0;
    position: absolute;
    width: auto;
    max-width: calc(100% - 550px);
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
  }
}
.article__signal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.article__signal-image-mobile {
  display: block;
}
@media (min-width: 910px) {
  .article__signal-image-mobile {
    display: none;
  }
}

.article__signal-image-desktop {
  display: none;
}
@media (min-width: 910px) {
  .article__signal-image-desktop {
    display: block;
  }
}

.article__ingredients {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article__ingredient {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .article__ingredient {
    gap: 24px;
  }
}

.article__ingredient-number {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  background-color: var(--color-primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-text-invert);
  text-align: center;
}
@media (min-width: 769px) {
  .article__ingredient-number {
    font-size: 48px;
  }
}

.article__ingredient-content {
  flex: 1;
}

.article__ingredient-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.article__ingredient-text span {
  font-weight: 700;
  color: #2f80ed;
}

.article__grafika3-captions {
  display: none;
}
@media (min-width: 769px) {
  .article__grafika3-captions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.article__grafika3-caption-item {
  padding: 4px;
  border-radius: 8px;
  background: #2f80ed;
  text-align: center;
  color: var(--colors-text-invert, #fff);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.article__grafika3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .article__grafika3 {
    gap: 16px;
  }
}
.article__grafika3 img {
  width: 100%;
  height: auto;
}

.article__grafika3-caption {
  padding: 0;
}
.article__grafika3-caption p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__frame8 {
  width: 100%;
  padding: 16px;
  background-color: var(--color-bg-surface-alt);
  background-image: none;
  border: 1px solid #1e6a42;
  border-radius: 8px;
}
@media (min-width: 1000px) {
  .article__frame8 {
    background-image: url("../img/frame-2-img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.article__frame8-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}
@media (min-width: 1000px) {
  .article__frame8-content {
    max-width: 565px;
    gap: 24px;
  }
}

.article__frame8-title {
  max-width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #2e8b57;
}
@media (min-width: 1000px) {
  .article__frame8-title {
    font-size: 28px;
    max-width: 420px;
  }
}

.article__frame8-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  padding-left: 0;
}
@media (min-width: 1000px) {
  .article__frame8-list {
    padding-left: 20px;
    max-width: 512px;
  }
}

.article__frame8-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.article__frame8-item span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  flex: 1;
}

.article__frame8-icon {
  width: 22.8px;
  height: 22.8px;
  flex-shrink: 0;
}

.article__frame8-footer {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__testimonial {
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1000px) {
  .article__testimonial {
    gap: 24px;
    flex-direction: row;
    align-items: stretch;
  }
}

.article__testimonial-header {
  min-width: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.article__testimonial-img {
  margin-bottom: 8px;
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e9f2fb;
}
@media (min-width: 1000px) {
  .article__testimonial-img {
    border-radius: 50%;
  }
}

.article__testimonial-info {
  color: #3d3d3d;
  /* body/sm */
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.article__testimonial-city {
  font-weight: 400;
}

.article__testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1000px) {
  .article__testimonial-content-wrapper {
    padding-left: 24px;
    border-left: 1px solid #d1d1d1;
    height: 100%;
    gap: 16px;
  }
}
.article__testimonial-content-wrapper h4 {
  color: #3d3d3d;
  /* body/xl */
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1000px) {
  .article__testimonial-content-wrapper h4 {
    font-size: 20px;
  }
}

.article__testimonial-text {
  color: #3d3d3d;
  /* quote/md */
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

.article__product {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #1e6a42;
  background: #faf9f6;
}
@media (min-width: 769px) {
  .article__product {
    gap: 24px;
  }
}

.article__product-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 950px) {
  .article__product-content {
    flex-direction: row;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
  }
}

.article__product-content-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 950px) {
  .article__product-content-text {
    gap: 24px;
    max-width: 488px;
    min-width: 488px;
  }
}

.article__product-text {
  color: #3d3d3d;
  /* body/md */
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.article__product-title {
  color: #2e8b57;
  /* heading/h3 */
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 769px) {
  .article__product-title {
    font-size: 28px;
  }
}

.article__product-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article__product-img img {
  max-width: 296px;
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .article__product-img img {
    max-width: 308px;
  }
}

.article__product-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 950px) {
  .article__product-benefits {
    gap: 20px;
  }
}

.article__product-benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article__product-benefit > p {
  color: #3d3d3d;
  /* body/md */
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.article__product-benefit-icon {
  width: 22.8px;
  height: 22.8px;
  flex-shrink: 0;
}

.article__product-benefit-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article__product-benefit-header span {
  color: #2e8b57;
  /* body/md */
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.article__product-before-after {
  width: 100%;
}
.article__product-before-after img {
  width: 100%;
  height: auto;
}

.article__product-footer,
.article__product-cta {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.article__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 769px) {
  .article__notice {
    align-items: center;
  }
}

.article__notice-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .article__notice-icon {
    width: 91px;
    height: 90px;
  }
}

.article__notice-text {
  flex: 1;
  color: #195bb4;
  /* body/xl */
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .article__notice-text {
    font-size: 20px;
  }
}

.article__cta-link,
.comments__cta-link {
  color: #00f;
  /* body/link */
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease;
}
.article__cta-link:hover,
.comments__cta-link:hover {
  color: #0000cc;
}
@media (min-width: 769px) {
  .article__cta-link,
  .comments__cta-link {
    font-size: 20px;
  }
}

.article__aside {
  width: 100%;
  background-color: #faf9f6;
  padding: 16px;
  border-radius: 8px;
}
@media (min-width: 769px) {
  .article__aside {
    width: 340px;
    flex-shrink: 0;
  }
}

.article__aside-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

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

.article__aside-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article__aside-item:hover .article__aside-text {
  color: #3d3d3d;
}

.article__aside-img {
  width: 56px;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid #e9f2fb;
}

.article__aside-text {
  flex: 1;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6d6d6d;
  transition: color 0.2s ease;
}

.comments-wrapper {
  width: 100%;
  background-color: var(--color-bg-page);
  padding: 48px 16px;
}
@media (min-width: 769px) {
  .comments-wrapper {
    padding: 64px 32px;
  }
}

.comments-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.comments__main {
  max-width: 828px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.comments__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.comments__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .comments__title {
    font-size: 32px;
  }
}

.comments__subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #888888;
}

.comments__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (min-width: 769px) {
  .comments__list {
    flex: 1;
    gap: 32px;
  }
}

.comment-card {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.comment-card:last-child {
  border-bottom: none;
}

.comment-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.comment-card__avatar {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.comment-card__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comment-card__name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.comment-card__date {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-primary);
  letter-spacing: 0.72px;
  display: none;
}

.comment-card__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.footer {
  width: 100%;
  background-color: var(--color-bg-page);
  padding: 48px 16px;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  background: #3d3d3d;
  color: var(--color-text-invert);
}
@media (min-width: 769px) {
  .footer {
    padding: 64px 32px;
    width: calc(100% - 64px);
    margin: 0 auto 48px;
    border-radius: 32px;
  }
}

.footer__copyright {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.footer__copyright p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
@media (min-width: 769px) {
  .footer__links {
    flex-direction: row;
  }
}
.footer__links a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
}

.footer__text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 16px;
}

.summary-wrapper {
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .summary-wrapper {
    margin-bottom: 48px;
  }
}

.summary-container {
  max-width: 792px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-primary);
}
@media (min-width: 769px) {
  .summary-container {
    gap: 24px;
  }
}

.summary__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .summary__title {
    gap: 24px;
  }
}
.summary__title .summary__title-icon {
  width: 49.22px;
  height: 51.339px;
}
.summary__title .summary__title-text {
  color: #2e8b57;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .summary__title .summary__title-text {
    font-size: 48px;
  }
}

.summary__lead {
  color: #3d3d3d;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .summary__lead {
    font-size: 20px;
  }
}
.summary__lead .summary__lead-highlight {
  color: #1e7f3f;
}

.summary__img {
  width: 100%;
  height: auto;
  max-width: 390px;
  display: block;
  margin: 0 auto;
}

.summary__box {
  padding: 12px;
  border-radius: 8px;
  background: rgba(155, 61, 61, 0.15);
  color: var(--colors-text-primary, #3d3d3d);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.summary__box .summary__box-highlight {
  color: #9b3d3d;
}

.summary__text {
  color: #3d3d3d;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.summary__cta-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .summary__cta-info {
    gap: 16px;
  }
}
.summary__cta-info p {
  color: var(--colors-text-primary, #3d3d3d);
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

p.summary__cta-info--highlight {
  color: #9b3d3d;
}

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

.summary__cta-button {
  min-height: 62px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100vmax;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 4px 12px 4px 4px;
}
@media (min-width: 769px) {
  .summary__cta-button {
    min-width: 476px;
    gap: 24px;
  }
}
.summary__cta-button p {
  position: relative;
  z-index: 1;
  color: #3d3d3d;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  text-align: left;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.4s ease;
}
@media (min-width: 769px) {
  .summary__cta-button p {
    font-size: 20px;
    text-align: center;
  }
}
.summary__cta-button.hidden {
  display: none;
}
.summary__cta-button:hover p {
  color: #fff;
}
.summary__cta-button:hover .summary__cta-bg {
  transform: scale(18);
}

.summary__cta-link {
  min-height: 62px;
  position: relative;
  background: #1e7f3f;
  color: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100vmax;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 4px 12px 4px 4px;
}
@media (min-width: 769px) {
  .summary__cta-link {
    min-width: 476px;
    gap: 24px;
  }
}
.summary__cta-link p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 110%;
  background: #1e7f3f;
}
@media (min-width: 769px) {
  .summary__cta-link p {
    font-size: 48px;
  }
}
.summary__cta-link.hidden {
  display: none;
}
.summary__cta-link .summary__cta-wrapper-icon {
  background: #fff;
  color: #1e7f3f;
}

.summary__cta-bg {
  position: absolute;
  z-index: 0;
  display: block;
  background: #1e7f3f;
  width: 54px;
  height: 54px;
  z-index: 0;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.summary__cta-wrapper-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e7f3f;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.summary__cta-wrapper-icon svg {
  width: 30px;
  height: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}
.terms .terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms .terms-error.show {
  display: block;
}

.clause {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */