:root {
  --navy: #0F172A;
  --blue: #1E3A8A;
  --blue-dark: #172F73;
  --gold: #C9A227;
  --white: #FFFFFF;
  --soft: #F8FAFC;
  --muted: #64748B;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);

  --container: 1080px;
  --radius: 18px;
}

/*===== BASE =====*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 72px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  color: var(--navy);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/*===== LAYOUT =====*/
.container {
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

/*===== HEADER =====*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.nav__brand:hover {
  color: var(--blue);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav__link:hover {
  color: var(--blue);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 9px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy);
  transition: 0.2s ease;
}

/*===== HERO =====*/
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 162, 39, 0.14), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(30, 58, 138, 0.12), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow-x: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 100%;
}

.hero__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.hero__text {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
}

.button--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button--secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(30, 58, 138, 0.22);
}

.button--secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/*===== HERO VISUAL =====*/
.hero__visual {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.visual-card {
  position: relative;
  width: min(100%, 390px);
  max-width: 100%;
  height: 420px;
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.visual-card--notes {
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 162, 39, 0.18), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(30, 58, 138, 0.14), transparent 32%),
    #FFFFFF;
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -54px;
  top: -54px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.20);
}

.visual-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.14);
}

.visual-card__top {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.visual-card__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.22);
}

.visual-card__top span:nth-child(2) {
  background: rgba(201, 162, 39, 0.65);
}

.visual-card__title {
  width: 72%;
  height: 16px;
  border-radius: 999px;
  background: var(--navy);
  margin-bottom: 28px;
}

.visual-card__line {
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.22);
  margin-bottom: 16px;
}

.visual-card__line--long {
  width: 100%;
}

.visual-card__line--medium {
  width: 82%;
}

.visual-card__line--short {
  width: 58%;
}

.visual-card__quote {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 150px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.92);
  z-index: 2;
}

.visual-card__quote span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.18);
  margin-bottom: 10px;
}

.visual-card__quote span:first-child {
  width: 86%;
}

.visual-card__quote span:last-child {
  width: 62%;
  margin-bottom: 0;
}

.visual-card__tag {
  position: absolute;
  z-index: 3;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.visual-card__tag--one {
  left: 28px;
  bottom: 96px;
  animation: moveTagOne 5s ease-in-out infinite;
}

.visual-card__tag--two {
  right: 26px;
  bottom: 42px;
  color: var(--gold);
  animation: moveTagTwo 5.8s ease-in-out infinite;
}

.visual-card__tag--three {
  left: 28px;
  bottom: 36px;
  color: var(--navy);
  animation: moveTagThree 6.2s ease-in-out infinite;
}

/*===== SECTION HEADING =====*/
.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.section-heading,
.section-heading h2,
.section-heading p {
  overflow-wrap: break-word;
}

/*===== ARTICLES =====*/
.articles {
  overflow-x: hidden;
}

.article-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  min-width: 0;
  max-width: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
  overflow-wrap: break-word;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card--empty {
  background: var(--soft);
}

.article-card__meta {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow-wrap: break-word;
}

.article-card__meta span {
  color: var(--blue);
}

.article-card h3 {
  max-width: 100%;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.article-card h3 a:hover {
  color: var(--blue);
}

.article-card p,
.article-card a,
.article-card time {
  max-width: 100%;
  overflow-wrap: break-word;
}

.read-more {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
}

.read-more:hover {
  color: var(--gold);
}

/*===== ABOUT =====*/
.about {
  background: var(--soft);
  overflow-x: hidden;
}

.about__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  max-width: 100%;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.about p + p {
  margin-top: 18px;
}

/*===== ARTICLE PAGE =====*/
.article-page {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 162, 39, 0.10), transparent 26%),
    radial-gradient(circle at 88% 28%, rgba(30, 58, 138, 0.10), transparent 28%),
    #FFFFFF;
}

.article-layout {
  max-width: 820px;
}

.article-header {
  margin-bottom: 42px;
}

.article-header h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.06;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.language-note a {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-note a:hover {
  background: var(--blue);
  color: var(--white);
}

.language-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-section > .language-label + p {
  margin-top: 0;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 1.04rem;
}

.article-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.language-section + .language-section {
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.article-disclaimer {
  margin-top: 46px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  border-radius: 12px;
}

.article-disclaimer p {
  font-size: 0.95rem;
}

.article-disclaimer p + p {
  margin-top: 12px;
}

.article-back {
  margin-top: 34px;
}

.article-back a {
  display: inline-flex;
  color: var(--blue);
  font-weight: 800;
}

.article-back a:hover {
  color: var(--gold);
}

/*===== ARTICLE ILLUSTRATION =====*/
.article-illustration {
  position: relative;
  height: 320px;
  margin: 34px 0 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.16), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(30, 58, 138, 0.14), transparent 32%),
    var(--soft);
  overflow: hidden;
}

.article-illustration__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.article-illustration__glow--one {
  width: 180px;
  height: 180px;
  left: -60px;
  top: -60px;
  background: rgba(201, 162, 39, 0.20);
}

.article-illustration__glow--two {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
  background: rgba(30, 58, 138, 0.16);
}

.article-illustration__doc {
  position: absolute;
  top: 54px;
  width: 230px;
  height: 210px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}

.article-illustration__doc--left {
  left: 70px;
  transform: rotate(-3deg);
}

.article-illustration__doc--right {
  right: 70px;
  transform: rotate(3deg);
}

.article-illustration__doc-top {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.article-illustration__doc-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.22);
}

.article-illustration__doc-top span:nth-child(2) {
  background: rgba(201, 162, 39, 0.65);
}

.article-illustration__title {
  width: 70%;
  height: 13px;
  border-radius: 999px;
  background: var(--navy);
  margin-bottom: 22px;
}

.article-illustration__line {
  height: 9px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.22);
  margin-bottom: 13px;
}

.article-illustration__line--long {
  width: 100%;
}

.article-illustration__line--medium {
  width: 82%;
}

.article-illustration__line--short {
  width: 58%;
}

.article-illustration__highlight {
  height: 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.28);
  margin-bottom: 12px;
}

.article-illustration__highlight--one {
  width: 74%;
}

.article-illustration__highlight--two {
  width: 48%;
}

.article-illustration__label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-illustration__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.article-illustration__center span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}


/*===== RETURN TO TOP =====*/
.return-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.return-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.return-top:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.return-top:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.55);
  outline-offset: 4px;
}

.return-top span:first-child {
  font-size: 1.15rem;
  line-height: 1;
}

/*===== FOOTER =====*/
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  background: var(--navy);
  overflow-x: hidden;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 100%;
}

.footer__container p {
  color: #CBD5E1;
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links a {
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--gold);
}

/*===== ANIMATIONS =====*/
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes moveTagOne {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(12px, -8px);
  }
}

@keyframes moveTagTwo {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, 8px);
  }
}

@keyframes moveTagThree {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 7px);
  }
}

/*===== TABLET =====*/
@media screen and (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.6rem);
    line-height: 1.06;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero__text {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero__visual {
    width: 100%;
    justify-content: center;
  }

  .visual-card {
    width: min(100%, 360px);
    max-width: 100%;
    height: 360px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/*===== MOBILE NAV =====*/
@media screen and (max-width: 860px) {
  .nav {
    height: 72px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav__menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px;
    border-radius: 12px;
    color: var(--navy);
  }

  .nav__link:hover {
    background: var(--soft);
    color: var(--blue);
  }
}

/*===== ARTICLE ILLUSTRATION TABLET =====*/
@media screen and (max-width: 760px) {
  .article-illustration {
    height: 360px;
  }

  .article-illustration__doc {
    width: 210px;
    height: 190px;
  }

  .article-illustration__doc--left {
    left: 22px;
    top: 42px;
  }

  .article-illustration__doc--right {
    right: 22px;
    top: 128px;
  }

  .article-illustration__center span {
    width: 54px;
    height: 54px;
  }
}

/*===== SMALL MOBILE =====*/
@media screen and (max-width: 520px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-top: 64px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    height: 64px;
  }

  .nav__menu {
    inset: 64px 16px auto 16px;
  }

  .hero {
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
    line-height: 1.08;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visual-card {
    width: min(100%, 320px);
    height: 320px;
    padding: 22px;
  }

  .visual-card__quote {
    left: 22px;
    right: 22px;
    bottom: 132px;
    padding: 14px;
  }

  .visual-card__tag {
    font-size: 0.68rem;
    padding: 9px 12px;
  }

  .visual-card__tag--one {
    left: 20px;
    bottom: 88px;
  }

  .visual-card__tag--two {
    right: 18px;
    bottom: 38px;
  }

  .visual-card__tag--three {
    left: 20px;
    bottom: 24px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .article-card {
    padding: 22px;
  }

  .article-card__meta {
    flex-direction: column;
    gap: 6px;
  }

  .article-page {
    padding: 42px 0 64px;
  }

  .article-header {
    margin-bottom: 34px;
  }

  .article-header h1 {
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    margin-bottom: 16px;
  }

  .article-meta {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .language-note {
    gap: 10px;
    margin: 24px 0 30px;
  }

  .language-note a {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .language-label {
    font-size: 0.72rem;
    padding: 7px 11px;
    margin-bottom: 20px;
  }

  .article-content p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .article-content h2 {
    font-size: 1.45rem;
  }

  .article-illustration {
    height: 280px;
    margin-top: 26px;
    border-radius: 24px;
  }

  .article-illustration__doc {
    width: 178px;
    height: 158px;
    padding: 15px;
    border-radius: 18px;
  }

  .article-illustration__doc--left {
    left: 14px;
    top: 48px;
  }

  .article-illustration__doc--right {
    right: 14px;
    top: 108px;
  }

  .article-illustration__doc-top {
    gap: 6px;
    margin-bottom: 15px;
  }

  .article-illustration__doc-top span {
    width: 8px;
    height: 8px;
  }

  .article-illustration__title {
    height: 11px;
    margin-bottom: 15px;
  }

  .article-illustration__line {
    height: 8px;
    margin-bottom: 9px;
  }

  .article-illustration__highlight {
    height: 8px;
    margin-bottom: 9px;
  }

  .article-illustration__label {
    left: 15px;
    bottom: 14px;
    font-size: 0.58rem;
    padding: 6px 8px;
  }

  .article-illustration__center span {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
  }


  .return-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    min-height: 48px;
    padding: 0;
  }

  .return-top__text {
    display: none;
  }

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

/*===== EXTRA SMALL MOBILE =====*/
@media screen and (max-width: 360px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero h1 {
    font-size: 2rem;
  }

  .visual-card {
    width: 100%;
    height: 300px;
  }

  .visual-card__quote {
    bottom: 124px;
  }

  .visual-card__tag {
    font-size: 0.62rem;
  }

  .visual-card__tag--one {
    left: 16px;
    bottom: 82px;
  }

  .visual-card__tag--two {
    right: 14px;
    bottom: 34px;
  }

  .visual-card__tag--three {
    left: 16px;
    bottom: 22px;
  }

  .article-header h1 {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .article-illustration {
    height: 260px;
  }

  .article-illustration__doc {
    width: 160px;
    height: 145px;
  }

  .article-illustration__doc--left {
    left: 6px;
    top: 46px;
  }

  .article-illustration__doc--right {
    right: 6px;
    top: 104px;
  }

  .article-illustration__center span {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }
}

/*===== ACCESSIBILITY =====*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}