/* Featured article card */
.featured-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  margin: 18px 0;
}

.featured-card__link {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
}

/* Left image column */
.featured-card__left {
  background: #f2f2f2;
  overflow: hidden;
  min-height: 220px; /* ensures the left side isn't tiny */
}

.featured-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right text column */
.featured-card__right {
  padding: 18px 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.featured-card__meta {
  font-size: 0.95rem;
  opacity: 0.8;
  white-space: nowrap;
}

.featured-card__dot {
  padding: 0 6px;
}

.featured-card__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

/* Mobile */
@media (max-width: 900px) {
  .featured-card__link {
    grid-template-columns: 1fr;
  }

  .featured-card__left {
    height: 240px;
    min-height: 240px;
  }

  .featured-card__right {
    padding: 16px;
  }

  .featured-card__meta {
    white-space: normal;
  }
}
