.latest-article {
  /* Card */
  /* Media */
  /* Content */
  /* little red dot like the mock */
  /* View more */
  /* Responsive */
}
.latest-article-inner {
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.latest-article-heading {
  margin: 0 0 8px;
}
.latest-article-card {
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem 3rem;
  align-items: start;
  position: relative;
}
.latest-article-card:hover {
  border: 2px solid var(--red);
}
.latest-article-card:hover img {
  transform: scale(1.05);
}
.latest-article-card:hover .latest-article-title a {
  color: var(--red) !important;
}
.latest-article-media {
  display: block;
  overflow: hidden;
}
.latest-article-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.latest-article-img {
  display: block;
  width: 100%;
  height: auto;
  height: 350px;
  object-fit: cover;
  transform: scale(1);
  transition: 250ms ease all;
}
.latest-article-img--placeholder {
  aspect-ratio: 4/3;
}
.latest-article-content {
  display: grid;
  gap: 2rem 1rem;
}
.latest-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.latest-article-tag {
  position: relative;
  text-decoration: none;
  z-index: 4;
  color: black;
}
.latest-article-tag::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #e10600;
  margin-right: 0.5em;
  transform: translateY(-10%);
}
.latest-article-title {
  margin: 0;
}
.latest-article-title a {
  color: black;
  text-decoration: none;
}
.latest-article-excerpt {
  margin: 0;
}
.latest-article-more {
  text-align: center;
  padding-top: 8px;
}
.latest-article-more-link {
  text-decoration: none;
  color: black;
  border: none;
}
@media (max-width: 900px) {
  .latest-article-card {
    grid-template-columns: 1fr;
  }
}
