/* ===========================================
   TUBA LYRA — Blog Styles
   =========================================== */

/* ---- Blog Hero / Page Header ---- */
.blog-hero {
  background: var(--navy);
  padding: 6rem 0 3.5rem;
  border-bottom: 1px solid rgba(196,147,63,0.15);
}
.blog-hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.blog-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.blog-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

/* ---- Blog Listing Grid ---- */
.blog-section {
  background: #f7f7f5;
  padding: 4rem 0 5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---- Post Card ---- */
.post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.post-card__img {
  height: 210px;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}
.post-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.post-card__excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #999;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}
.post-card__meta-dot { color: #ddd; }
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.post-card__link:hover { gap: 0.6rem; }
.post-card__link svg { transition: transform 0.2s; }
.post-card__link:hover svg { transform: translateX(3px); }

/* ---- Blog CTA Sidebar Banner ---- */
.blog-cta-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1000 60%, #2a1800 100%);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  border: 1px solid rgba(196,147,63,0.25);
}
.blog-cta-banner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.blog-cta-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.blog-cta-banner .btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #B8832A 0%, #E0AB4A 50%, #C4933F 100%);
  color: #1a0e00;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.blog-cta-banner .btn--gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* =========================================
   INDIVIDUAL POST PAGE
   ========================================= */

/* Post header */
.post-hero {
  background: var(--navy);
  padding: 6rem 0 0;
}
.post-hero__inner { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.post-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.post-hero__breadcrumb a { color: var(--gold); text-decoration: none; }
.post-hero__breadcrumb a:hover { text-decoration: underline; }
.post-hero__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.post-hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.post-hero__meta-item { display: flex; align-items: center; gap: 0.4rem; }
.post-hero__img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #1a1a1a;
}
.post-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .post-hero__img { height: 260px; }
}

/* Post body */
.post-body {
  background: #fff;
  padding: 0 0 5rem;
}
.post-body__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}
.post-body__content {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: #2a2a2a;
}
.post-body__content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.post-body__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 0.75rem;
}
.post-body__content p {
  margin-bottom: 1.25rem;
}
.post-body__content ul,
.post-body__content ol {
  margin: 0 0 1.5rem 1.5rem;
}
.post-body__content li {
  margin-bottom: 0.5rem;
}
.post-body__content ul li {
  list-style: disc;
}
.post-body__content ol li {
  list-style: decimal;
}
.post-body__content strong { color: #0A0A0A; font-weight: 700; }
.post-body__content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #faf9f6;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}

/* Post highlight box */
.post-highlight {
  background: linear-gradient(135deg, #fdf8ee 0%, #fff8e7 100%);
  border: 1px solid rgba(196,147,63,0.25);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.post-highlight h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.post-highlight ul { margin-left: 1.25rem; }
.post-highlight li { list-style: disc; color: #444; font-size: 0.95rem; margin-bottom: 0.4rem; }

/* Author bio */
.post-author {
  background: #f7f7f5;
  border-radius: 14px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.post-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B8832A, #E0AB4A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1a0e00;
  flex-shrink: 0;
}
.post-author__name { font-size: 1rem; font-weight: 700; color: #0A0A0A; margin-bottom: 0.25rem; }
.post-author__role { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.post-author__bio { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* Post CTA */
.post-cta {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.post-cta__inner { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }
.post-cta__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.post-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.post-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.post-cta .btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #B8832A 0%, #E0AB4A 50%, #C4933F 100%);
  color: #1a0e00;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(196,147,63,0.4);
}
.post-cta .btn--gold:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* Nav adjustments for blog pages */
.nav--blog .nav__logo { color: #fff; }
