* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

/* ================= GLOBAL ================= */
body {
  background: #0b0e13;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 80px;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 90px;
  padding-top: 60px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 22px;
  line-height: 1.2;
}

.hero h1 span {
  color: #c9a24d;
}

.hero p {
  font-size: 17px;
  color: #9ca3af;
}

/* ================= TAG ================= */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #c9a24d;
  background: rgba(201,162,77,0.08);
  border: 1px solid rgba(201,162,77,0.6);
  box-shadow: inset 0 0 12px rgba(201,162,77,0.15);
}

/* ================= FEATURED ================= */
.featured {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin: 40px 0 70px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #151a23 0%, #0f131b 100%);
  border: 2px solid rgba(201,162,77,0.35);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}

.featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
}

.featured-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 18px 0;
}

.featured-content p {
  color: #9ca3af;
}

.featured-content h2 a {
  transition: color 0.3s ease;
}

.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 rgba(201,162,77,0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.featured:hover {
  transform: translateY(-6px);
}

.featured:hover::after {
  box-shadow: 0 0 40px rgba(201,162,77,0.28);
}

.featured:hover .featured-content h2 a {
  color: #c9a24d;
}

/* ================= LATEST ================= */
.latest-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.latest-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  margin-bottom: 14px;
}

.latest-header h2 span {
  color: #c9a24d;
}

.latest-header p {
  font-size: 16px;
  color: #9ca3af;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

/* ================= POST CARD ================= */
.post-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #151a23 0%, #0f131b 100%);
  border: 1px solid rgba(201,162,77,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(201,162,77,0.35);
}

.post-body {
  padding: 26px;
}

.post-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin: 14px 0;
}

.post-body h3 a {
  transition: color 0.3s ease;
}

.post-body p {
  font-size: 15px;
  color: #9ca3af;
}

.date {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: 0 0 0 rgba(201,162,77,0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.post-card:hover {
  transform: translateY(-8px);
}

.post-card:hover::after {
  box-shadow: 0 0 35px rgba(201,162,77,0.25);
}

.post-card:hover h3 a {
  color: #c9a24d;
}

/* ================= CTA ================= */
.latest-cta {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.btn-outline {
  padding: 14px 42px;
  border-radius: 999px;
  border: 2px solid #c9a24d;
  color: #c9a24d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #c9a24d;
  color: #0b0e13;
  box-shadow: 0 14px 36px rgba(201,162,77,0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .featured {
    grid-template-columns: 1fr;
  }

  .featured img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
    color: #d1d5db;
  }

  .featured {
    margin-top: -100px;
    margin-bottom: 50px;
  }

  .featured img {
    height: 220px;
  }

  .featured-content {
    padding: 26px;
  }

  .latest-header h2 {
    font-size: 32px;
  }

  .latest-cta {
    margin-top: 60px;
  }

  .btn-outline {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}
/* ================= POST PAGE ================= */

.post {
  max-width: 820px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

/* HEADER */

.post-header {
  text-align: center;
  margin-bottom: 60px;
}

.post-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-header h1 span {
  color: #c9a24d;
}

.post-excerpt {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* IMAGE */

.post-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  margin-bottom: 60px;
  border: 1px solid rgba(201,162,77,0.25);
}

/* CONTENT */

.post-content {
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.8;
}

/* TYPOGRAPHY */

.post-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 70px 0 22px;
}

.post-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  margin: 50px 0 18px;
}

.post-content p {
  margin-bottom: 26px;
}

.post-content ul,
.post-content ol {
  margin: 30px 0 40px 20px;
}

.post-content li {
  margin-bottom: 14px;
}

/* LINKS */

.post-content a {
  color: #c9a24d;
  text-decoration: underline;
}

/* QUOTE */

.post-content blockquote {
  margin: 60px 0;
  padding: 30px 40px;
  background: #151a23;
  border-left: 4px solid #c9a24d;
  border-radius: 16px;
  color: #9ca3af;
  font-style: italic;
}

/* IMAGE INSIDE CONTENT */

.post-content img {
  max-width: 100%;
  border-radius: 18px;
  margin: 50px 0;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .post {
    margin-bottom: 80px;
  }

  .post-header h1 {
    font-size: 30px;
  }

  .post-excerpt {
    font-size: 16px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 24px;
    margin-top: 50px;
  }
}
/* ================= POST PAGE ================= */

.post {
  max-width: 820px;
  margin: 0 auto 120px;
}

/* HEADER */

.post-header {
  text-align: center;
  margin-bottom: 60px;
}

.post-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-header h1 span {
  color: #c9a24d;
}

.post-excerpt {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* IMAGE */

.post-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 60px;
  border: 1px solid rgba(201,162,77,0.25);
}

/* CONTENT */

.post-content {
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.85;
}

.post-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 70px 0 22px;
}

.post-content p {
  margin-bottom: 26px;
}

/* ================= POST NAV ================= */

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,162,77,0.2);
}

.post-nav-link {
  flex: 1;
  background: #151a23;
  border: 1px solid rgba(201,162,77,0.25);
  border-radius: 16px;
  padding: 18px 22px;
  font-weight: 600;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.post-nav-link.prev {
  text-align: left;
}

.post-nav-link.next {
  text-align: right;
}

.post-nav-link:hover {
  background: rgba(201,162,77,0.12);
  color: #c9a24d;
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .post-nav {
    flex-direction: column;
    gap: 20px;
  }

  .post-nav-link {
    text-align: center !important;
  }
}
