/* =============================================
   blog.css
   ============================================= */

.blog__hero {
  padding: 32px 24px;
  overflow: hidden;
}

.blog__hero-inner {
  display: flex;
  gap: 16px;
}

.blog__hero-text {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.blog__hero-date {
  color: #ff6b35;
  text-transform: capitalize;
}


.blog__hero-title {
}

.blog__hero-title strong,
.blog__hero-title .highlight {
  color: #ff6b35;
}

.blog__hero-title em {
  font-style: italic;
  font-weight: 700;
}

.blog__hero-title h1 {
  font-size: 2.8rem;
  margin-bottom: 0;
  margin-top: 0;
}

.blog__hero-subtitle {
  font-family: var(--font-fraunces);
}

.blog__hero-subtitle a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #1a1a5e;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a1a5e;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.blog__hero-subtitle a::after {
  content: '↗';
  font-size: 0.7rem;
}

.blog__hero-subtitle a:hover {
  background: #1a1a5e;
  color: #fff;
}

.blog__hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}


.blog__hero-image picture,
.blog__hero-image img,
.blog__hero-image svg {
  width: 782px;
  height: auto;
  display: block;
}

.blog__content h2 {
  margin-bottom: 0;
  font-size: 1.944rem;
}

.blog__content h3 {
  font-size: var(--title-m);
}

.blog__content .text__content p a:not(.ck-cta--orange-arrow),
.blog__content .text__content li a:not(.ck-cta--orange-arrow) {
    color: #ff6b35;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.blog__content .text__content p a:not(.ck-cta--orange-arrow):hover,
.blog__content .text__content li a:not(.ck-cta--orange-arrow):hover {
    color: #c9481f;
    text-decoration-color: #c9481f;
}

h2:has(> span.title-xl):not(:has(> *:not(.title-xl))) {
  line-height: 0;
  margin-bottom: 0;
}

.blog__infos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  max-width: 840px;
  margin: 0 auto;
}

.blog__category,
.blog__hero-date time {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: default;
}

.blog__category {
  background-color: var(--color-primary--4);
  color: var(--color-white);
  text-decoration: none;
}

.blog__hero-date time {
  background-color: transparent;
  border: 1.5px solid #ff6b35;
  color: #ff6b35;
}


@media (min-width: 900px) {
  .blog__hero {
    padding: 76px 48px 36px 48px
  }

  .blog__hero-inner {
    grid-template-columns: 806px minmax(0, 600px);
    align-items: center;
    gap: 48px;
  }

  .blog__hero-title h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .blog__hero-title h1 {
    font-size: 4rem;
  }
  .blog__content h2 {
    font-size: 2.222rem;
  }
}


.blog .layout--twocol {
  align-items: center;
}

.blog h3 {
  margin-bottom: 0;
  line-height: 50%;
}

@media (min-width: 1200px) {
  .blog h3 {
    line-height: 80%;
  }
}