.blog-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.blog-hero__breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--dur) ease;
}

.blog-hero__breadcrumb a:hover {
  color: var(--clr-accent);
}

.blog-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.blog-hero__lead {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-list {
  padding: 2rem 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: border-color var(--dur) ease, transform var(--dur) var(--ease), box-shadow var(--dur) ease;
}

.blog-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s var(--ease),
    border-color var(--dur) ease, box-shadow var(--dur) ease;
}

.blog-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.blog-card__img-link {
  display: block;
}

.blog-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 146, 74, .18) 0%, transparent 65%);
  z-index: 1;
}

.blog-card__img--1 {
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--2 {
  background: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--3 {
  background: url("https://images.unsplash.com/photo-1586717791821-3f44a563fa4c?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--4 {
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--5 {
  background: url("https://images.unsplash.com/photo-1518186285589-2f7649de83e0?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--6 {
  background: url("https://images.unsplash.com/photo-1432888498266-38ffec3eaf0a?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--7 {
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--8 {
  background: url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--9 {
  background: url("https://images.unsplash.com/photo-1507238691740-187a5b1d37b8?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--10 {
  background: url("https://images.unsplash.com/photo-1531403009284-440f080d1e12?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--11 {
  background: url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__img--12 {
  background: url("https://images.unsplash.com/photo-1542744094-3a31f272c490?auto=format&fit=crop&q=80&w=1000") center/cover no-repeat;
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.blog-card__cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-accent);
  background: rgba(212, 146, 74, .1);
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
}

.blog-card__date {
  font-size: .8rem;
  color: var(--clr-text-muted);
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) ease;
}

.blog-card__title a:hover {
  color: var(--clr-accent);
}

.blog-card__excerpt {
  font-size: .9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

.blog-card__read-more {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity var(--dur) ease;
}

.blog-card__read-more:hover {
  opacity: .7;
}

.blog-cta {
  padding: 3rem 0 5rem;
}

.blog-cta__inner {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s var(--ease);
}

.blog-cta__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-cta__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: .5rem;
}

.blog-cta__text {
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.post-hero {
  padding: 5rem 0 3rem;
}

.post-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.post-hero__breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--dur) ease;
}

.post-hero__breadcrumb a:hover {
  color: var(--clr-accent);
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.post-hero__cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-accent);
  background: rgba(212, 146, 74, .1);
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
}

.post-hero__date {
  font-size: .85rem;
  color: var(--clr-text-muted);
}

.post-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.post-hero__lead {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 720px;
}

.post-body {
  padding: 0 0 5rem;
  max-width: 760px;
}

.post-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
}

.post-hero-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--clr-border);
}

.post-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 .5rem;
}

.post-body p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.post-body ul {
  list-style: disc;
  color: var(--clr-text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.post-body ol {
  list-style: decimal;
  color: var(--clr-text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

.post-body strong {
  color: var(--clr-text);
  font-weight: 600;
}

.post-body a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .85em;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: .15em .4em;
  color: var(--clr-accent-2);
}

.post-body .post-box {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.post-body .post-box p {
  margin: 0;
}

.post-back {
  padding: 1rem 0 2rem;
}

.post-back a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: opacity var(--dur) ease;
}

.post-back a:hover {
  opacity: .7;
}