@font-face {
  font-family: 'VelaSans';
  src: url('static.tildacdn.pub/tild6332-3564-4837-b666-373233396334/VelaSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'VelaSans';
  src: url('static.tildacdn.pub/tild3035-6635-4037-b066-663637313531/VelaSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'VelaSans';
  src: url('static.tildacdn.pub/tild6565-6564-4635-b763-366333643737/VelaSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --article-bg: #f7ecdf;
  --article-ink: #5a6f82;
  --article-panel: #d3e4f1;
  --article-accent: #9d9a58;
  --article-white: #ffffff;
  --article-shadow: 0 24px 70px rgba(63, 76, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--article-ink);
  background: var(--article-bg);
  font-family: 'VelaSans', Arial, sans-serif;
  line-height: 1.65;
}

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

.article-shell {
  min-height: 100vh;
  overflow: hidden;
}

.article-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 236, 223, 0.88);
  border-bottom: 1px solid rgba(90, 111, 130, 0.14);
  backdrop-filter: blur(16px);
}

.article-nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.article-logo {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.article-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-menu a {
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.article-menu a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.article-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.article-kicker {
  margin: 0 0 18px;
  color: var(--article-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 400;
}

.article-lead {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
}

.article-hero-card {
  position: relative;
  min-height: 410px;
  border-radius: 5px;
  background: var(--article-panel);
  box-shadow: var(--article-shadow);
  overflow: hidden;
}

.article-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  object-fit: cover;
  filter: saturate(0.95);
}

.article-hero-card::after {
  content: '';
  position: absolute;
  inset: auto 28px 28px 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--article-accent);
  opacity: 0.72;
}

.article-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 96px;
}

.article-content {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 46px rgba(63, 76, 86, 0.08);
}

.article-content p {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
}

.article-content p + p {
  margin-top: 24px;
}

.article-content .article-author {
  margin-top: 34px;
  color: var(--article-accent);
  font-weight: 600;
}

.article-cta {
  margin-top: 42px;
  padding: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 5px;
  color: var(--article-white);
  background: var(--article-ink);
}

.article-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.article-cta p {
  margin: 12px 0 0;
  max-width: 560px;
  font-size: 17px;
  opacity: 0.86;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.article-button {
  min-height: 52px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.article-button:hover {
  transform: translateY(-2px);
}

.article-button_primary {
  color: var(--article-ink);
  background: var(--article-white);
}

.article-button_secondary {
  color: var(--article-white);
  background: transparent;
}

.article-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(90, 111, 130, 0.78);
  font-size: 14px;
}

@media (max-width: 900px) {
  .article-nav,
  .article-menu,
  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-menu {
    gap: 12px 18px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .article-hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .article-hero-card {
    min-height: 360px;
  }

  .article-hero-card img {
    min-height: 360px;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .article-nav,
  .article-hero,
  .article-main,
  .article-footer {
    width: min(100% - 24px, 1120px);
  }

  .article-nav {
    min-height: 0;
    padding: 18px 0;
  }

  .article-menu {
    font-size: 11px;
  }

  .article-hero {
    gap: 32px;
  }

  .article-hero-card,
  .article-hero-card img {
    min-height: 300px;
  }

  .article-button {
    width: 100%;
  }
}
