/* ── ARTICLE HERO ── */
.article-hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.article-hero-img {
  width: 100%;
  height: 100%;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── ARTICLE LAYOUT ── */
.article-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

/* ── ARTICLE HEADER ── */
.article-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 12px;
}

.article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  color: #f0ede6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #5a5550;
  padding-bottom: 20px;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-author {
  color: #e8342a;
  font-weight: 600;
}

/* ── ARTICLE BODY ── */
.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #c8c5be;
  margin-bottom: 20px;
}

.article-body .article-lead {
  font-size: 18px;
  color: #e0ddd6;
  border-left: 3px solid #e8342a;
  padding-left: 16px;
}

.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #f0ede6;
  margin: 32px 0 12px;
}

.article-body strong {
  color: #f0ede6;
}

/* ── SIDEBAR WIDGETS ── */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 4px;
}

.sidebar-widget {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  overflow: hidden;
}

.widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a5550;
  padding: 12px 16px;
  border-bottom: 1px solid #1e1e1e;
}

.widget-item {
  padding: 12px 16px;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background 0.15s;
}

.widget-item:hover { background: #1a1a1a; }
.widget-item:last-child { border-bottom: none; }

.widget-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8342a;
  margin-bottom: 4px;
}

.widget-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c8c5be;
  line-height: 1.3;
  transition: color 0.15s;
}

.widget-item:hover .widget-link { color: #e8342a; }

.widget-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background 0.15s;
}

.widget-review:hover { background: #1a1a1a; }
.widget-review:last-child { border-bottom: none; }

.widget-review-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c8c5be;
}

.widget-review-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
}

/* ═══════════════════════════════════
   MOBILE — hasta 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  /* HERO */
  .article-hero {
    height: 240px;
  }

  /* LAYOUT — una sola columna */
  .article-container {
    grid-template-columns: 1fr;
    margin: 24px auto;
    padding: 0 16px;
    gap: 24px;
  }

  /* HEADER */
  .article-title {
    font-size: 28px;
  }

  .article-meta {
    gap: 8px;
    font-size: 11px;
  }

  /* BODY */
  .article-body p {
    font-size: 15px;
    line-height: 1.7;
  }

  .article-body .article-lead {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  /* SIDEBAR — va abajo del artículo */
  .article-sidebar {
    gap: 16px;
  }
}

/* ═══════════════════════════════════
   TABLET — entre 769px y 1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .article-hero {
    height: 340px;
  }

  .article-container {
    grid-template-columns: 1fr 240px;
    gap: 24px;
    padding: 0 16px;
  }

  .article-title {
    font-size: 32px;
  }

  .article-body p {
    font-size: 15px;
  }
}
