.blogs-grid-page {
  padding-top: 0 !important;
}

.blog-list-hero {
  background: #fff;
  color: var(--dark);
  border-bottom: 1px solid #eee;
  padding: 1.75rem 0 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blog-list-hero::before { 
  display: none;
}

.blog-list-hero .container-xl {
  position: relative;
  z-index: 1;
}

.blog-list-hero .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.blog-list-hero h1 {
  font-size: clamp(1.9rem, 4.3vw, 2.65rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.07em !important;
  line-height: 0.95 !important;
  margin: 0 0 0.5rem;
  color: var(--red);
  text-transform: uppercase;
}

.blog-list-hero p,
.blog-list-hero h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  color: #4b5563;
  font-weight: 600;
  text-transform: none;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-bottom: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border-color: var(--red);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #fff;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-card-media::after {
  display: none;
}

.blog-card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.65rem 0.85rem 0.85rem;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}

.blog-card-body h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem); 
  font-weight: 900;
  line-height: 1.1;
  color: var(--red);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.blog-card-body h2 a {
  color: inherit;
  transition: color 0.2s ease;
}

.blog-card-body h2 a:hover {
  color: var(--red);
}

.blog-card-excerpt {
  font-size: 0.88rem; 
  line-height: 1.4;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 0.5rem;
  flex: 1;
}

.blog-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: none;
}

.blog-card-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

.blog-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.4rem 0.9rem;
  background: var(--red);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 900; /* Maximum boldness for CTA */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-card-cta:hover {
  background: #a80000;
  transform: translateX(3px);
}

.blog-card-cta::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.blog-page {
  padding-bottom: 2rem !important;
}

.blog-page .page-title {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 0.75rem;
  padding-top: 0.75rem;
}

.blog-page .page-title h1 {
  font-size: clamp(1.9rem, 4.3vw, 2.65rem) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.07em !important;
  color: var(--red) !important;
  text-transform: uppercase !important;
}

.blog-hero-image {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  border-radius: 14px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 16px 48px rgba(200, 0, 0, 0.12);
  border: 3px solid #fff;
  outline: 1px solid rgba(200, 0, 0, 0.15);
}

.blog-article {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--ink);
}

.blog-article > p,
.blog-article li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #374151;
  font-weight: 500;
}

.blog-article > p {
  margin-bottom: 0.75rem;
}

.blog-highlight {
  font-size: 1.12rem !important;
  line-height: 1.7 !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  background: #fff;
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.75rem !important;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 20px rgba(200, 0, 0, 0.06);
}

.blog-article h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 900;
  color: var(--red);
  margin: 1rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(200, 0, 0, 0.15);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.blog-article h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  margin: 1.25rem 0 0.5rem;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 1rem;
  padding-left: 0;
  list-style: none;
}

.blog-article ul li,
.blog-article ol li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.blog-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.blog-article ol {
  counter-reset: blog-ol;
}

.blog-article ol li {
  counter-increment: blog-ol;
}

.blog-article ol li::before {
  content: counter(blog-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
}

.blog-article strong {
  color: var(--dark);
  font-weight: 900;
}

.blog-page .nested-faq {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(200, 0, 0, 0.12);
}

.blog-page .nested-faq > h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  color: var(--dark) !important;
  margin-bottom: 1.25rem !important;
}

.blog-page .nested-faq details {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-page .nested-faq details[open] {
  border-color: rgba(200, 0, 0, 0.35);
  box-shadow: 0 6px 20px rgba(200, 0, 0, 0.08);
}

.blog-page .nested-faq summary {
  padding: 1rem 1.25rem;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-page .nested-faq summary::-webkit-details-marker {
  display: none;
}

.blog-page .nested-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
  transition: transform 0.25s ease;
}

.blog-page .nested-faq details[open] summary::after {
  content: "\2212";
}

.blog-page .nested-faq details p {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 500;
  color: #4b5563;
}

.blog-page .final-cta {
  margin-top: 1.5rem;
  padding: 2rem 1.75rem;
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  text-align: center;
}

.blog-page .final-cta h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  margin: 0 0 1rem !important;
  border: none !important;
  padding: 0 !important;
}

.blog-page .final-cta p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1rem !important;
  font-weight: 500;
  line-height: 1.65 !important;
  margin-bottom: 0.75rem !important;
}

.blog-page .final-cta p:last-child {
  margin-bottom: 0 !important;
}

.blog-page .final-cta strong {
  color: #fff;
}

.blog-back-bar {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding-top: 1.25rem;
  display: none;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.25s ease;
}

.blog-back-link::before {
  content: "\2190";
}

.blog-back-link:hover {
  gap: 0.65rem;
  color: #a80000;
}

@media (max-width: 767px) {
  .blog-list-hero {
    padding: 2rem 0 2.5rem;
    margin-bottom: 1.75rem;
  }

  .blog-hero-image {
    border-radius: 10px;
    margin-bottom: 1.75rem;
  }

  .blog-highlight {
    padding: 1rem 1.15rem;
    font-size: 1rem !important;
  }

  .blog-page .final-cta {
    padding: 1.5rem 1.25rem;
  }
}
