:root {
  --articleGold: #beaa76;
  --articleInk: #0b0f14;
  --articleMuted: #5b6678;
  --articleBorder: rgba(15, 23, 42, 0.1);
}

.blog-article-page {
  min-height: 100vh;
  background: #ffffff;
  padding: 128px 20px 72px;
}

.blog-article-shell {
  max-width: 1220px;
  margin: 0 auto;
}

.blog-article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7a6a43;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-card {
  margin-top: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.06);
}

.blog-article-loading,
.blog-article-empty {
  padding: 72px 28px;
  text-align: center;
  color: var(--articleMuted);
  font-size: 16px;
}

.blog-article-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background: #0b0f14;
}

.blog-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.1) 0%, rgba(11, 15, 20, 0.74) 100%);
  z-index: 1;
}

.blog-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-article-chip,
.blog-article-date,
.blog-article-time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article-chip {
  background: rgba(190, 170, 118, 0.96);
  color: #ffffff;
}

.blog-article-date,
.blog-article-time {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-article-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.blog-article-intro {
  margin: 18px 0 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.78;
}

.blog-article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  padding: 40px;
}

.blog-article-entry-meta {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-entry-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.blog-entry-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0b0f14;
  color: #ffffff;
}

.blog-entry-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-entry-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.blog-entry-label {
  color: #0b0f14;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-entry-value {
  color: #111827;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.blog-article-main {
  min-width: 0;
}

.blog-article-section + .blog-article-section {
  margin-top: 28px;
}

.blog-article-section h2 {
  margin: 0 0 12px;
  color: var(--articleInk);
  font-size: 28px;
  line-height: 1.16;
  font-weight: 800;
}

.blog-article-section p {
  margin: 0;
  color: #364152;
  font-size: 16px;
  line-height: 1.82;
}

.blog-article-section p + p {
  margin-top: 14px;
}

.blog-article-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.blog-article-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.blog-article-panel h3 {
  margin: 0 0 10px;
  color: var(--articleInk);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article-panel p {
  margin: 0;
  color: var(--articleMuted);
  font-size: 14px;
  line-height: 1.7;
}

.blog-article-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(190, 170, 118, 0.96);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(190, 170, 118, 0.24);
}

.blog-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 24, 39, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-share-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #beaa76 0%, #a99047 100%);
  box-shadow: 0 14px 28px rgba(190, 170, 118, 0.26);
}

.blog-share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.blog-list-stack {
  display: grid;
  gap: 10px;
}

.blog-list-link {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--articleInk);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-list-link:hover {
  color: #8b7128;
  transform: translateX(2px);
}

.blog-list-link:first-child {
  border-top: none;
  padding-top: 0;
}

.blog-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.blog-list-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.blog-article-related {
  padding: 0 40px 40px;
}

.blog-article-related-head {
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-article-related-kicker {
  color: #8a7745;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article-related-head h2 {
  margin: 8px 0 0;
  color: var(--articleInk);
  font-size: 28px;
  font-weight: 800;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.blog-related-item {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-related-item:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 170, 118, 0.3);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.blog-related-thumb {
  height: 180px;
  background: #10151e;
}

.blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-related-copy {
  padding: 14px;
}

.blog-related-cat {
  display: block;
  color: #8a7745;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-related-title {
  display: block;
  margin-top: 4px;
  color: var(--articleInk);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 900px) {
  .blog-article-body {
    grid-template-columns: 1fr;
  }

  .blog-article-entry-meta {
    grid-template-columns: 1fr;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-article-page {
    padding: 110px 14px 52px;
  }

  .blog-article-card {
    border-radius: 22px;
  }

  .blog-article-hero {
    min-height: 300px;
    padding: 22px 18px;
  }

  .blog-article-body {
    padding: 22px 18px 24px;
    gap: 20px;
  }

  .blog-article-related {
    padding: 0 18px 24px;
  }

  .blog-article-related-head h2 {
    font-size: 23px;
  }

  .blog-article-section h2 {
    font-size: 22px;
  }

  .blog-entry-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
  }

  .blog-entry-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .blog-entry-label {
    font-size: 12px;
  }

  .blog-entry-value {
    font-size: 15px;
  }

  .blog-chip-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-section p {
    font-size: 15px;
    line-height: 1.75;
  }
}
