.blog-list {
  --blog-card-radius: 22px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--blog-card-radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 16, 24, .055);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              box-shadow .35s cubic-bezier(.2, .8, .2, 1),
              border-color .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 107, 255, .16);
  box-shadow: 0 24px 55px rgba(11, 16, 24, .11);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf1f6;
  text-decoration: none;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__placeholder {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 107, 255, .18), transparent 38%),
    linear-gradient(145deg, #f7f9fc 0%, #eaf0f8 100%);
}

.blog-card__placeholder::before {
  content: "2008";
  position: absolute;
  z-index: -1;
  left: 16px;
  top: 50%;
  transform: translateY(-55%);
  direction: ltr;
  font-size: clamp(4.2rem, 8vw, 6.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.09em;
  color: rgba(11, 16, 24, .055);
}

.blog-card__placeholder span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(23, 107, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
}

.blog-card__meta::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, .09);
}

.blog-card__title {
  margin: 0 0 9px;
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 800;
}

.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}

.blog-card__title a:hover {
  color: var(--blue);
}

.blog-card__excerpt {
  display: -webkit-box;
  min-height: 5.1em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 233, 240, .78);
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  transition: color .2s ease;
}

.blog-card__read-more span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  direction: ltr;
  transition: transform .25s ease, background-color .25s ease;
}

.blog-card__read-more:hover {
  color: var(--blue);
}

.blog-card__read-more:hover span {
  transform: translateX(-3px);
  background: var(--blue);
}

@media (max-width: 767.98px) {
  .blog-list {
    --blog-card-radius: 18px;
  }

  .blog-card__body {
    padding: 19px 19px 18px;
  }

  .blog-card__excerpt {
    min-height: auto;
  }
}

@media (hover: none) {
  .blog-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card__media img,
  .blog-card__read-more span {
    transition: none;
  }
}
