/* Оглавление блога — колонка по центру, текст слева */

.blog-index-page {
  --blog-col: min(100%, 760px);
  max-width: var(--blog-col);
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 32px) 88px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.blog-index-page--wide {
  --blog-col: min(100%, 1080px);
}

.blog-index-hero {
  text-align: left;
  width: 100%;
  margin: 0 0 40px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-index-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22d3ee;
  margin: 0 0 14px;
}

.blog-index-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.blog-index-lead {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

.blog-index-feed {
  width: 100%;
  margin-bottom: 48px;
}

.blog-index-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 20px;
  text-align: left;
}

.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.blog-cards--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .blog-index-page--wide .blog-cards--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.blog-card {
  margin: 0;
  width: 100%;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 26px;
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-card-link:hover {
  background: rgba(30, 41, 59, 0.65);
  border-color: rgba(6, 182, 212, 0.4);
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.12);
  padding: 5px 10px;
  border-radius: 6px;
}

.blog-card-top time {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.blog-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(19px, 2.5vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px;
  text-align: left;
}

.blog-card-excerpt {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: #64748b;
}

.blog-card-arrow {
  font-weight: 600;
  color: #22d3ee;
}

.blog-index-cta.cta-box {
  width: 100%;
  text-align: center;
}
