/* ════════════════════════════════════════
   CAROUSEL ARTICLES — article card styles
   Requires: carousel-shared.css
════════════════════════════════════════ */

/* Articles track gap */
.carousel-track.articles-track { gap: 20px; }

/* ── Article card — 300px, 16:10 image, no border ── */
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 300px;
  flex-shrink: 0;
}
.article-card:hover .art-title { color: #e85411; }
.article-card:hover .art-thumb img { transform: scale(1.03); }

/* Thumbnail — 16:10, rounded corners */
.art-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
  background: #f4f4f4;
}
.art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

/* Category label — orange, Barlow Condensed uppercase */
.art-category {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e85411;
  display: block;
  margin-bottom: 7px;
}

/* Title — black, bold, Barlow, 2-line clamp */
.art-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  color: #000;
  margin: 0 0 9px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Excerpt — gray, 2-line clamp */
.art-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta — date · read time */
.art-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-dot {
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}

/* See-more dimensions for articles */
.see-more-card.art-see-more {
  width: 300px;
  min-height: 320px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .article-card { width: 240px; }
  .see-more-card.art-see-more { width: 240px; }
  .art-title { font-size: 16px; }
  .art-excerpt { font-size: 12px; }
}
