.blog-page {
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
}
.blog-head { text-align: center; margin: 0 auto 70px; }
.blog-head h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}
.blog-sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 1em auto 0;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.blog-list > li { display: flex; }
.blog-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: background .25s;
  border: 1px solid var(--line);
  width: 100%;
}
.blog-card:not(.blog-card--placeholder):hover {
  background: var(--bg-2);
  cursor: pointer;
}
.blog-date {
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card h2 {
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.2;
}
.blog-card p {
  color: var(--text-dim);
  margin: 0;
  font-size: .98rem;
}
.blog-card--placeholder { opacity: .55; }
.blog-card--placeholder h2 { color: var(--text-dim); }

/* ---------- Карточка с превью-картинкой ---------- */
.blog-card-link {
  background: var(--bg);
  color: inherit;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .35s ease, background .25s;
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
}
.blog-card-link:hover { background: var(--bg-2); opacity: 1; }
.blog-card-link:hover .blog-card-cover img { transform: scale(1.04); }
.blog-card-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
  flex: 0 0 auto;
}
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(.85) contrast(1.02);
}
.blog-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,22,26,.7));
  pointer-events: none;
}
.blog-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 220px;
}
.blog-card-body h2 {
  font-size: 1.45rem;
  margin: 0;
  line-height: 1.2;
}
.blog-card-body p {
  color: var(--text-dim);
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
}
.blog-card-more {
  margin-top: auto;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
}

/* кропы для «уникализации» карточек */
.blog-card-cover.crop-1 img { object-position: center 40%; }
.blog-card-cover.crop-2 img { object-position: center 55%; transform: scale(1.02); }
.blog-card-cover.crop-3 img { object-position: 60% 50%; }
.blog-card-cover.crop-4 img { object-position: center 30%; filter: saturate(.9) contrast(1.04) brightness(.96); }
.blog-card-cover.crop-5 img { object-position: 45% 50%; filter: saturate(.8) contrast(1.05); }

/* ---------- Страница отдельной статьи ---------- */
.article-page {
  padding: clamp(40px, 5vw, 70px) 0 clamp(70px, 9vw, 120px);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.article-back:hover { color: var(--accent); opacity: 1; }
.article-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.article-date {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.article-head h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.article-hero {
  max-width: 680px;
  margin: 0 auto 50px;
  aspect-ratio: 16/10;
  max-height: 380px;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 2px;
  position: relative;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02);
}
.article-hero.crop-1 img { object-position: center 35%; }
.article-hero.crop-2 img { object-position: center 60%; }
.article-hero.crop-3 img { object-position: 55% 45%; }
.article-hero.crop-4 img { object-position: center 40%; }
.article-hero.crop-5 img { object-position: 45% 55%; }

.article-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}
.article-body > p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: .9;
  padding: 6px 14px 0 0;
  color: var(--accent-soft);
}
.article-body p {
  margin: 0 0 1.2em;
  color: var(--text-dim);
}
.article-body p strong { color: var(--text); font-weight: 500; }
.article-body h2 {
  font-size: 1.6rem;
  margin: 1.8em 0 .6em;
  color: var(--text);
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 1.8em 0 .4em;
}
.article-body ul, .article-body ol {
  padding-left: 22px;
  color: var(--text-dim);
  margin: 0 0 1.2em;
}
.article-body li { margin-bottom: .4em; }
.article-body ul.check-list {
  list-style: none;
  padding-left: 0;
}
.article-body ul.check-list li {
  padding-left: 4px;
  margin-bottom: .55em;
}
.article-body blockquote {
  margin: 1.4em 0;
  padding: 18px 24px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.4em auto;
  width: 80px;
}

.article-footer {
  max-width: 680px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.article-footer .btn { margin-top: 10px; }
.article-footer p {
  color: var(--text-dim);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.article-prev-next {
  max-width: 1080px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-prev-next a {
  background: var(--bg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .25s;
}
.article-prev-next a:hover { background: var(--bg-2); opacity: 1; }
.article-prev-next a.is-disabled { background: var(--bg); opacity: .4; pointer-events: none; }
.article-prev-next .arrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-prev-next .title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.3;
}
.article-prev-next a.next { text-align: right; align-items: flex-end; }

@media (max-width: 700px) {
  .article-body { font-size: 1.02rem; }
  .article-body > p:first-child::first-letter { font-size: 2.6em; padding: 4px 10px 0 0; }
  .article-prev-next { grid-template-columns: 1fr; }
  .article-prev-next a.next { text-align: left; align-items: flex-start; }
  .article-hero { aspect-ratio: 4/3; margin-bottom: 36px; }
}
