/* ========================================
   BLOG STYLES - Stile giornale professionale
   ======================================== */

/* BACK BUTTON - MINIMAL */
.back-to-previous {
  position: absolute;
  top: 100px;
  left: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 0;
  transition: all 0.3s ease;
}

.back-to-previous i {
  font-size: 32px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.back-to-previous:hover i {
  color: #B7061A;
  transform: translateX(-5px);
}

@media screen and (max-width: 768px) {
  .back-to-previous {
    display: none;
  }
}

/* ========================================
   BLOG HERO
   ======================================== */

.blog-hero {
  background: #fff;
  padding: 120px 0 60px 0;
  margin-top: 80px;
}

.blog-hero-content {
  max-width: 800px;
}

.blog-hero .red-line {
  width: 180px;
  height: 3px;
  background: #B7061A;
  margin-bottom: 25px;
}

.blog-hero-title {
  font-size: 56px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.blog-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ========================================
   FILTRI CATEGORIE
   ======================================== */

.blog-filters {
  background: #f5f5f5;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filters-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #666;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Forum', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #B7061A;
  color: #B7061A;
}

.filter-btn.active {
  background: #B7061A;
  border-color: #B7061A;
  color: #fff;
}

/* ========================================
   ARTICOLO IN EVIDENZA
   ======================================== */

.blog-featured {
  padding: 80px 0;
  background: #fff;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.featured-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #B7061A;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content {
  padding: 40px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-category {
  color: #B7061A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date,
.article-read-time {
  color: #999;
  font-size: 14px;
}

.featured-title {
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

.featured-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.featured-btn {
  background: #B7061A;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: #8f0515;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 6, 26, 0.3);
}

/* ========================================
   GRIGLIA ARTICOLI
   ======================================== */

.blog-grid-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.section-header-blog {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-blog h2 {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(183, 6, 26, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 30px;
}

.card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #999;
}

.card-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-card:hover .card-title {
  color: #B7061A;
}

.card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.card-link {
  color: #B7061A;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.card-link .arrow {
  transition: transform 0.3s ease;
}

/* ========================================
   PAGINAZIONE
   ======================================== */

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #666;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: #B7061A;
  color: #B7061A;
}

.pagination-btn.active {
  background: #B7061A;
  border-color: #B7061A;
  color: #fff;
}

.pagination-next {
  width: 45px;
}

/* ========================================
   NEWSLETTER BLOG
   ======================================== */

.blog-newsletter {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.newsletter-form-inline {
  display: flex;
  gap: 15px;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-form-inline input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  font-family: 'Forum', serif;
}

.newsletter-form-inline input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form-inline input:focus {
  outline: none;
  border-color: #B7061A;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form-inline .btn-primary {
  padding: 16px 32px;
  white-space: nowrap;
}

/* ========================================
   PAGINA ARTICOLO - BREADCRUMB
   ======================================== */

.article-breadcrumb {
  background: #f5f5f5;
  padding: 20px 0;
  margin-top: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-breadcrumb a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
  color: #B7061A;
}

.breadcrumb-separator {
  color: #ccc;
  margin: 0 10px;
}

.article-breadcrumb span:last-child {
  color: #1a1a1a;
  font-weight: 500;
}

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

.article-container {
  background: #fff;
}

.article-header {
  background: #fff;
  padding: 60px 0 40px 0;
}

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

.article-meta-top {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.article-category-tag {
  background: #B7061A;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 52px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.article-lead {
  font-size: 22px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 35px;
  font-weight: 400;
}

.article-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
}

.author-role {
  font-size: 14px;
  color: #999;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-share span {
  font-size: 14px;
  color: #999;
}

.share-btn {
  width: 38px;
  height: 38px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  border-color: #B7061A;
  color: #B7061A;
  transform: translateY(-3px);
}

/* ========================================
   IMMAGINE HERO ARTICOLO
   ======================================== */

.article-hero-image {
  width: 100%;
  height: 500px;
  margin-bottom: 60px;
  overflow: hidden;
}

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

/* ========================================
   CONTENUTO ARTICOLO
   ======================================== */

.article-content {
  padding: 0 0 80px 0;
}

.article-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: start;
}

/* INDICE (TOC) */
.article-toc {
  position: sticky;
  top: 100px;
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
}

.article-toc h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc li {
  margin-bottom: 10px;
}

.article-toc a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
}

.article-toc a:hover {
  color: #B7061A;
}

/* TESTO ARTICOLO */
.article-text {
  max-width: 100%;
}

.article-text h2 {
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 50px 0 25px 0;
  padding-top: 20px;
}

.article-text h2:first-child {
  margin-top: 0;
}

.article-text h3 {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 40px 0 20px 0;
}

.article-text h4 {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 30px 0 15px 0;
}

.article-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.article-text ul,
.article-text ol {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0;
  padding-left: 30px;
}

.article-text li {
  margin-bottom: 12px;
}

.article-text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.article-text a {
  color: #B7061A;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.article-text a:hover {
  opacity: 0.8;
}

/* BOX SPECIALI ARTICOLO */
.article-highlight {
  background: #fff3f3;
  border-left: 4px solid #B7061A;
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 0 8px 8px 0;
}

.article-highlight p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
}

.article-callout {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin: 35px 0;
}

.article-callout h4 {
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.article-callout p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.article-quote {
  border-left: 4px solid #1a1a1a;
  padding: 30px 40px;
  margin: 40px 0;
  background: #fafafa;
}

.article-quote p {
  font-size: 24px;
  line-height: 1.6;
  color: #1a1a1a;
  font-style: italic;
  margin: 0 0 15px 0;
}

.article-quote cite {
  font-size: 16px;
  color: #666;
  font-style: normal;
}

.article-tip {
  background: #fff;
  border: 2px solid #B7061A;
  padding: 25px 30px;
  border-radius: 12px;
  margin: 35px 0;
}

.article-tip h4 {
  font-size: 20px;
  color: #B7061A;
  margin: 0 0 15px 0;
}

.article-tip p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.article-cta-box {
  background: linear-gradient(135deg, #B7061A 0%, #8f0515 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.article-cta-box h3 {
  font-size: 32px;
  color: #fff;
  margin: 0 0 15px 0;
}

.article-cta-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  line-height: 1.7;
}

.btn-primary-article {
  background: #fff;
  color: #B7061A;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary-article:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.article-sources {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin: 50px 0 0 0;
}

.article-sources h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.article-sources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-sources li {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.article-sources li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B7061A;
  font-weight: bold;
}

/* ========================================
   CTA FINALE ARTICOLO
   ======================================== */

.article-footer-cta {
  background: #f5f5f5;
  padding: 80px 0;
}

.footer-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-cta-content h2 {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.footer-cta-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 35px;
}

.footer-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================
   ARTICOLI CORRELATI
   ======================================== */

.related-articles {
  padding: 80px 0;
  background: #fff;
}

.related-title {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-content {
  padding: 25px;
}

.related-category {
  color: #B7061A;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 10px 0 15px 0;
}

.related-link {
  color: #B7061A;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.related-link:hover {
  opacity: 0.8;
}

/* ========================================
   FIX BOTTONI - Border Radius Uniformi
   ======================================== */

/* Bottone primario standard (rosso) - usato ovunque nel sito */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: #B7061A;
  border: none;
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px !important; /* ← Angoli poco arrotondati */
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: #8f0515;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 6, 26, 0.3);
}

/* Bottone outline (bianco con bordo) */
.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px !important; /* ← Angoli poco arrotondati */
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: #fff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Bottone featured nel blog */
.featured-btn {
  background: #B7061A;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px !important; /* ← FIX: era 6px */
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: #8f0515;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 6, 26, 0.3);
}

/* Bottone articolo (bianco su rosso) */
.btn-primary-article {
  background: #fff;
  color: #B7061A;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px !important; /* ← FIX: era 8px */
  font-size: 17px;
  font-weight: 600;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary-article:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Bottone outline scuro */
.btn-outline-dark {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px !important; /* ← FIX: era 8px */
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* Bottoni paginazione */
.pagination-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #666;
  border-radius: 4px !important; /* ← FIX: era 8px */
  font-size: 16px;
  font-weight: 500;
  font-family: 'Forum', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: #B7061A;
  color: #B7061A;
}

.pagination-btn.active {
  background: #B7061A;
  border-color: #B7061A;
  color: #fff;
}

/* Bottoni filtri categorie */
.filter-btn {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #666;
  padding: 12px 24px;
  border-radius: 4px !important; /* ← FIX: era 30px (troppo arrotondato) */
  font-size: 15px;
  font-weight: 500;
  font-family: 'Forum', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #B7061A;
  color: #B7061A;
}

.filter-btn.active {
  background: #B7061A;
  border-color: #B7061A;
  color: #fff;
}

/* Input newsletter */
.newsletter-form-inline input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px !important; /* ← FIX: era 8px */
  font-size: 16px;
  color: #fff;
  font-family: 'Forum', serif;
}

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

@media screen and (max-width: 768px) {
  .btn-primary,
  a.btn-primary,
  button.btn-primary,
  .featured-btn,
  .btn-primary-article,
  .btn-outline-dark,
  .btn-outline-white {
    padding: 14px 28px;
    font-size: 15px;
  }

  .footer-cta-buttons {
    flex-direction: column;
  }

  .footer-cta-buttons .btn-primary,
  .footer-cta-buttons .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .btn-primary,
  a.btn-primary,
  button.btn-primary,
  .featured-btn,
  .btn-primary-article {
    padding: 12px 24px;
    font-size: 14px;
  }
}


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

@media screen and (max-width: 1200px) {
  .featured-article {
    gap: 40px;
  }

  .featured-content {
    padding: 30px;
  }

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

  .article-body {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 400px;
  }

  .article-body {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    margin-bottom: 40px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .blog-hero {
    padding: 80px 0 40px 0;
  }

  .blog-hero-title {
    font-size: 42px;
  }

  .blog-hero-subtitle {
    font-size: 18px;
  }

  .filters-wrapper {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }

  .featured-content {
    padding: 25px;
  }

  .featured-title {
    font-size: 28px;
  }

  .featured-excerpt {
    font-size: 16px;
  }

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

  .article-lead {
    font-size: 18px;
  }

  .article-hero-image {
    height: 300px;
  }

  .article-author {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .article-text h2 {
    font-size: 28px;
  }

  .article-text h3 {
    font-size: 24px;
  }

  .article-text p,
  .article-text ul,
  .article-text ol {
    font-size: 17px;
  }

  .article-quote p {
    font-size: 20px;
  }

  .newsletter-form-inline {
    flex-direction: column;
  }

  .footer-cta-buttons {
    flex-direction: column;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .blog-hero-title {
    font-size: 32px;
  }

  .blog-hero-subtitle {
    font-size: 16px;
  }

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

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

  .article-text h2 {
    font-size: 24px;
  }

  .article-text h3 {
    font-size: 20px;
  }

  .article-text p,
  .article-text ul,
  .article-text ol {
    font-size: 16px;
  }

  .article-cta-box {
    padding: 30px 20px;
  }

  .article-cta-box h3 {
    font-size: 26px;
  }

  .footer-cta-content h2,
  .related-title {
    font-size: 32px;
  }
}