/* Drink Related Articles Block */

.drink-related-articles {
  padding: 2rem 0;
}

.drink-related-articles__header {
  margin-bottom: 1.5rem;
}

.drink-related-articles__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4F6F8;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

.drink-related-articles__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.drink-related-articles__subtitle {
  font-size: 0.9375rem;
  color: #a0aec0;
  margin: 0;
}

/* Grid */

.drink-related-articles__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Card */

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 300px;
  border: 1px solid rgba(180, 240, 0, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #0F2B5B;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.article-card:hover {
  box-shadow: 0 4px 16px rgba(180, 240, 0, 0.1);
  border-color: #B4F000;
}

/* Invisible full-card link for click area */

.article-card__link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Image */

.article-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.article-card__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #0a1a38;
}

/* Type badge */

.article-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0A1F44;
  background-color: #B4F000;
  z-index: 1;
  white-space: nowrap;
}

.article-card__badge--news {
  background-color: #B4F000;
  color: #0A1F44;
}

.article-card__badge--review {
  background-color: #FFC400;
  color: #0A1F44;
}

.article-card__badge--guide {
  background-color: #FFC400;
  color: #0A1F44;
}

.article-card__badge--feature {
  background-color: #B4F000;
  color: #0A1F44;
}

/* Body */

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.125rem 1.25rem 1.25rem;
}

.article-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  color: #F4F6F8;
}

.article-card__title-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.article-card__title-link:hover {
  color: #B4F000;
  text-decoration: none;
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: #a0aec0;
  line-height: 1.55;
  margin: 0 0 1rem 0;
  flex: 1;
}

/* Footer */

.article-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #718096;
  margin-top: auto;
  flex-wrap: wrap;
}

.article-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.article-card__clock {
  flex-shrink: 0;
  vertical-align: middle;
}

.article-card__date {
  white-space: nowrap;
}

.article-card__read-more {
  margin-left: auto;
  color: #B4F000;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.article-card__read-more:hover {
  text-decoration: underline;
  color: #FFC400;
}
