/* =========================
   BLOG LAYOUT
   ========================= */

.blog-posts-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

/* =========================
   BLOG POST CARD
   ========================= */

.blog-post {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 24px;
  padding: 35px 40px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* =========================
   HEADER
   ========================= */

.post-header {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: center;
}

/* Date block */
.post-date {
  min-width: 80px;
  text-align: center;
  background: linear-gradient(145deg, #d4af37, #a8862c);
  border-radius: 14px;
  padding: 12px 8px;
  color: #111;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.post-date .day {
  font-size: 30px;
  line-height: 1;
}

.post-date .month {
  font-size: 14px;
  letter-spacing: 1px;
}

.post-date .year {
  font-size: 12px;
  opacity: 0.9;
}

/* Title area */
.post-title h3 {
  margin: 0;
  font-size: 26px;
  color: #d4af37;
  letter-spacing: 0.5px;
}

/* =========================
   TAGS
   ========================= */

.post-tags {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.featured-tag {
  background: linear-gradient(145deg, #d4af37, #a8862c);
  color: #111;
  font-weight: 600;
}

/* =========================
   POST CONTENT
   ========================= */

.post-content h2 {
  color: #d4af37;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.post-content p {
  color: #e0e0e0;
  line-height: 1.75;
  margin-bottom: 15px;
  font-size: 15.5px;
}

/* =========================
   SUBTLE DIVIDER
   ========================= */

.post-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 8px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .post-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-date {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .post-date .day {
    font-size: 24px;
  }
}

/* =========================
   PAGE TITLE – BEHIND THE MASTERS
   ========================= */

.page-title {
  text-align: center;
  margin: 80px 0 60px;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  background: linear-gradient(
    145deg,
    #f5e6a8,
    #d4af37,
    #a8862c
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
}

/* Decorative underline */
.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );
  border-radius: 999px;
}

/* Soft glow */
.page-title {
  text-shadow:
    0 0 25px rgba(212, 175, 55, 0.25);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
    letter-spacing: 1.5px;
  }
}
.page-subtitle {
  text-align: center;
  margin-top: -35px;
  color: rgba(212, 175, 55, 0.75);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


