:root {
  --accent: #d84500;
  --accent-soft: rgba(216, 69, 0, 0.18);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --bg: #0b0d12;
}

.page-detail {
  width: min(850px, 92%);
  margin: 70px auto 100px;
}

.back-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.detail-header {
  margin-bottom: 40px;
}

.detail-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--text-main);
  line-height: 1.2;
  margin: 15px 0;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.detail-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  margin-bottom: 50px;
}

/* ARTICLE CONTENT */
.article-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #d1d5db;
  text-align: justify;
}

.article-content p {
  margin-bottom: 25px;
}

.article-content h2 {
  color: var(--text-main);
  font-size: 1.7rem;
  margin: 45px 0 20px 0;
  font-weight: 500;
  text-align: left;
}

/* KEY TAKEAWAYS BOX */
.takeaways-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
  text-align: left;
}

.takeaways-box h4 {
  margin: 0 0 15px 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.takeaways-box ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.takeaways-box li {
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.5;
}

/* RECENT UPDATES SECTION */
.bottom-section {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--glass-border);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.recent-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.recent-mini-card .date {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.recent-category-pill {
  padding: 4px 12px;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.recent-mini-card .title {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-mini-card:hover {
  border-color: var(--accent);
  background: var(--glass);
  transform: translateY(-4px);
}

.recent-mini-card:hover .title {
  color: var(--text-main);
}

.recent-mini-card:hover .recent-category-pill {
  color: var(--text-main);
  border-color: var(--accent-soft);
  background: var(--accent-soft);
}

.recent-mini-card:hover .date {
  color: var(--accent);
  opacity: 1;
}

@media (max-width: 768px) {
  .detail-title {
    font-size: 2.2rem;
  }
  .article-content {
    text-align: left;
  }
}
