/* =========================================
   PREMIUM EDITORIAL DESIGN SYSTEM
========================================= */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #334155;
  --heading: #0f172a;
  --primary: #f14907;
  --primary-dark: #c63a00;
  --border: #e5e7eb;
  --muted: #94a3b8;

  --radius: 14px;

  --shadow-light: 0 8px 24px rgba(15, 23, 42, 0.04);

  --font: 'Inter', sans-serif;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* CONTAINER */
.container {
  max-width: 1280px;   /* was 1180px */
}


/* GRID */
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px; /* wider content + wider sidebar */
  gap: 6rem; /* was 4rem — more breathing room */
  margin: 2rem 0 4rem;
  align-items: start;
}

/* =========================================
   ARTICLE CARD
========================================= */
.post {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

/* Header */
.kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.post-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Hero */
.post-hero img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 2.5rem;
}

/* =========================================
   TYPOGRAPHY SYSTEM
========================================= */
.post-body {
  max-width: 820px;
}

.post-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3.5rem 0 1.25rem;
  color: var(--heading);
}

.post-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--heading);
}

.post-body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.post-body ul {
  margin: 1.5rem 0 2rem 1.75rem;
}

.post-body li {
  margin-bottom: 0.75rem;
}

/* =========================================
   BUTTONS (Premium Soft Style)
========================================= */
/* ===== PREMIUM BUTTON SYSTEM ===== */

/* ===== REFINED PREMIUM BUTTON ===== */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;   /* smaller */
  font-size: 0.85rem;       /* smaller text */
  font-weight: 600;
  border-radius: 8px;       /* sharper corners */
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Primary - Elegant Dark */
.btn-primary {
  background: #0f172a;      /* deep navy (premium look) */
  color: #ffffff;
  border: 1px solid #0f172a;
}

.btn-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
}

/* Outline - Clean Modern */
.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn-outline:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

/* =========================================
   SIDEBAR (Non-Sticky, Elegant Blocks)
========================================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Widget */
.widget {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.widget-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.widget ul {
  list-style: none;
}

.widget li {
  margin-bottom: 0.85rem;
}

.widget a {
  text-decoration: none;
  color: var(--heading);
  font-weight: 500;
  transition: color 0.2s ease;
}

.widget a:hover {
  color: var(--primary);
}

/* Subscribe */
.subscribe-form input {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.subscribe-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.subscribe-form button {
  width: 100%;
  padding: 0.9rem;
  border-radius: 40px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: var(--primary-dark);
}

/* =========================================
   FAQ (Luxury Minimal Style)
========================================= */
.faq {
  margin-top: 5rem;
}

.faq h2 {
  font-size: 1.9rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--heading);
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin-top: 1rem;
  color: var(--text);
}

.faq-item.active p {
  display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .post {
    padding: 2.25rem;
  }

  .post-title {
    font-size: 2rem;
  }
}
