.doc-link {
  min-height: 112px;
  padding: 22px 22px 22px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,244,239,0.82)),
    rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.doc-link:hover,
.doc-link:active {
  transform: translateY(-2px);
  border-color: rgba(212,179,106,0.56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 26px 54px rgba(17, 35, 28, 0.11);
}

.doc-link__content {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.doc-link__index {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,234,213,0.82)),
    rgba(255,255,255,0.92);
  border: 1px solid rgba(212,179,106,0.34);
  color: #7a5d25;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
}

.doc-link strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.doc-link em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}

.doc-link__arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(19,49,38,0.06);
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-top {
    flex-wrap: wrap;
  }

  .doc-link {
    align-items: flex-start;
  }

  .doc-link__content {
    align-items: flex-start;
  }

  .doc-link__arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,248,244,0.88)),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 24px 48px rgba(17, 35, 28, 0.16);
  backdrop-filter: blur(24px);
}

.cookie-banner.is-hidden { display: none; }
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--text); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cookie-banner__button,
.cookie-banner__link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cookie-banner__button {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #2d654f 0%, #17372b 58%, #0b1d16 100%);
}

.cookie-banner__link {
  color: var(--text);
  border: 1px solid rgba(19,49,38,0.1);
  background: rgba(255,255,255,0.78);
}
