/* olive-reading.css — базова типографіка, шапка й підвал сторінок Blindasd */

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

:root {
  --shade_deep: #3b4224;
  --shade_moss: #626b33;
  --shade_clay: #d2683f;
  --shade_oat: #faf8f1;
  --shade_card: #ffffff;
  --shade_ink: #262b18;
  --shade_soft: #5f6450;
  --shade_line: #e2dfcd;
  --face_plain: "Verdana", "Geneva", "Segoe UI", sans-serif;
  --face_serif: "Iowan Old Style", "Georgia", "Times New Roman", serif;
  --round_small: 10px;
  --round_mid: 18px;
  --round_wide: 26px;
  --lift_low: 0 6px 16px rgba(59, 66, 36, 0.07);
  --lift_mid: 0 14px 34px rgba(59, 66, 36, 0.11);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--face_serif);
  background: var(--shade_oat);
  background-image: radial-gradient(
      circle at 88% 3%,
      rgba(98, 107, 51, 0.09),
      transparent 40%
    ),
    radial-gradient(
      circle at 3% 58%,
      rgba(210, 104, 63, 0.07),
      transparent 34%
    );
  color: var(--shade_ink);
  line-height: 1.74;
  font-size: 16px;
}

a {
  color: var(--shade_moss);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--shade_clay);
}

.brand_bar {
  top: 0;
  z-index: 20;
  padding: 17px 20px;
  background: rgba(250, 248, 241, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--shade_line);
}
.brand_bar_inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.brand_bar_name {
  font-family: var(--face_plain);
  font-size: 20px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--shade_deep);
}
.brand_bar_name::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 11px;
  border-radius: 50% 12% 50% 12%;
  background: var(--shade_clay);
  vertical-align: middle;
}

/* Проста центрована шапка документа — без градієнтів */
.paper_top {
  max-width: 720px;
  margin: 0 auto;
  padding: 58px 22px 12px;
  text-align: center;
}
.paper_top_kind {
  font-family: var(--face_plain);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--shade_clay);
  margin-bottom: 14px;
}
.paper_top_name {
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.16;
  font-weight: 600;
  color: var(--shade_deep);
  margin-bottom: 14px;
}
.paper_top_line {
  width: 74px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--shade_clay);
  border-radius: 2px;
}
.paper_top_say {
  font-family: var(--face_plain);
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--shade_soft);
}
.paper_top_stamp {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 15px;
  border: 1px solid var(--shade_line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--face_plain);
  font-size: 12px;
  color: var(--shade_moss);
}

.footer_strip {
  margin-top: 48px;
  background: #f2f0e4;
  color: #7b7f68;
  padding: 24px 20px 20px;
  text-align: center;
  border-top: 1px solid var(--shade_line);
  font-family: var(--face_plain);
}
.footer_strip_inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer_strip_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  margin-bottom: 12px;
}
.footer_strip_nav a {
  color: #7f8369;
  font-size: 11.5px;
}
.footer_strip_nav a:hover {
  color: var(--shade_clay);
}
.footer_strip_small {
  font-size: 11px;
  color: #8b8f78;
  line-height: 1.75;
  margin: 0 auto 10px;
  max-width: 760px;
}
.footer_strip_mark {
  font-size: 11px;
  color: #9a9e88;
}
