/* Журнал MAÎTRE — стили */
.blog-page {
  background: #0b0b0d;
  color: #f4ecd9;
}

.blog-main {
  padding-top: 96px;
  min-height: 80vh;
}

.blog-hero {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 166, 97, 0.18);
}

.blog-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.02em;
  margin: 16px 0 14px;
  line-height: 1.08;
}
.blog-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #c9a661;
}
.blog-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  color: rgba(244, 236, 217, 0.7);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.55;
}

.blog-list-section {
  padding: 56px 0 96px;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-empty {
  text-align: center;
  color: rgba(244, 236, 217, 0.55);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  padding: 60px 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 24, 0.85);
  border: 1px solid rgba(201, 166, 97, 0.15);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 97, 0.45);
}
.blog-card__cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(201, 166, 97, 0.05) center/cover no-repeat;
}
.blog-card__cover--empty {
  background: linear-gradient(135deg, rgba(201, 166, 97, 0.1) 0%, rgba(20, 20, 24, 1) 100%);
}
.blog-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog-card__tags span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9a661;
  border: 1px solid rgba(201, 166, 97, 0.35);
  padding: 3px 9px;
  border-radius: 999px;
}
.blog-card__title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.blog-card__excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(244, 236, 217, 0.75);
  margin: 0 0 16px;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.55);
  letter-spacing: 0.03em;
}

/* Article */
.blog-article {
  padding: 32px 0 80px;
}
.blog-article__container {
  max-width: 760px;
  margin: 0 auto;
}
.blog-article__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(201, 166, 97, 0.05) center/cover no-repeat;
  border-radius: 6px;
  margin-bottom: 36px;
  border: 1px solid rgba(201, 166, 97, 0.15);
}
.blog-article__head {
  text-align: center;
  padding: 8px 0 32px;
  border-bottom: 1px solid rgba(201, 166, 97, 0.18);
  margin-bottom: 36px;
}
.blog-article__title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0.015em;
  margin: 16px 0 16px;
}
.blog-article__lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(244, 236, 217, 0.78);
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 600px;
}
.blog-article__meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-article__body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244, 236, 217, 0.88);
}
.blog-article__body h2 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 36px 0 16px;
  color: #c9a661;
}
.blog-article__body p {
  margin: 0 0 18px;
}
.blog-article__body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.blog-article__body li {
  margin-bottom: 8px;
}
.blog-article__body strong {
  color: #f4ecd9;
  font-weight: 500;
}
.blog-article__tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 166, 97, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-article__tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9a661;
  border: 1px solid rgba(201, 166, 97, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .blog-main { padding-top: 72px; }
  .blog-list { grid-template-columns: 1fr; gap: 18px; }
}
