@charset "UTF-8";

.adatvedelmi-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.adatvedelmi-section {
  width: 100%;
  padding-block: var(--space-xl);
  background-color: var(--color-midnight-indigo);
}

.adatvedelmi-section--alt {
  background-color: var(--color-deep-emerald);
}

.adatvedelmi-copy {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-gutter-desktop);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  min-width: 0;
}

.adatvedelmi-copy > * {
  min-width: 0;
}

.adatvedelmi-copy h1,
.adatvedelmi-copy h2,
.adatvedelmi-copy h3,
.adatvedelmi-copy p,
.adatvedelmi-copy ul,
.adatvedelmi-copy li {
  margin-block-end: 0;
}

.adatvedelmi-copy h1 {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-line-height);
  font-weight: var(--text-h1-weight);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-soft-ivory);
}

.adatvedelmi-copy h2 {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-line-height);
  font-weight: var(--text-h2-weight);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-soft-ivory);
  margin-block-start: var(--space-xs);
}

.adatvedelmi-copy h3 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line-height);
  font-weight: var(--text-h3-weight);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-soft-ivory);
  margin-block-start: var(--space-2xs);
}

.adatvedelmi-copy p {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  font-weight: var(--text-body-weight);
  color: var(--color-text);
}

.adatvedelmi-copy a {
  color: var(--color-deep-raspberry);
  transition: color var(--transition-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.adatvedelmi-copy a:hover {
  color: var(--color-amber-glow);
}

.adatvedelmi-copy a:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
  border-radius: var(--radius-small);
}

.adatvedelmi-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--text-label-tracking);
  text-transform: uppercase;
  color: var(--color-amber-glow);
  margin-block-end: var(--space-3xs);
}

.adatvedelmi-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-muted);
}

.adatvedelmi-list {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  min-width: 0;
}

.adatvedelmi-list > li {
  position: relative;
  padding-inline-start: var(--space-xs);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: var(--color-text);
  min-width: 0;
}

.adatvedelmi-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: var(--color-amber-glow);
}

.adatvedelmi-list--facts > li::before {
  border-radius: 50%;
  background-color: var(--color-raspberry-red);
}

.adatvedelmi-list strong {
  color: var(--color-soft-ivory);
  font-weight: 700;
}

@media (max-width: 900px) {
  .adatvedelmi-section {
    padding-block: var(--space-lg);
  }

  .adatvedelmi-copy {
    padding-inline: var(--container-gutter-mobile);
  }

  .adatvedelmi-copy h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .adatvedelmi-copy h2 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
}

@media (max-width: 480px) {
  .adatvedelmi-section {
    padding-block: var(--space-md);
  }

  .adatvedelmi-copy {
    gap: var(--space-2xs);
  }

  .adatvedelmi-copy h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .adatvedelmi-copy h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-block-start: var(--space-2xs);
  }

  .adatvedelmi-copy h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .adatvedelmi-lead {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .adatvedelmi-list > li {
    padding-inline-start: var(--space-2xs);
  }
}
