/* ── ARTICLE CARD (vertical) ─────────────────────────────────────── */
.crp-card {
  cursor: pointer;
  border-bottom: 1px solid #EEEEEE;
}

.crp-card__img-link { display: block; }

.crp-card__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.crp-card__img--placeholder {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ph-color) 60%, #000), var(--ph-color));
}

.crp-card__body { padding: 10px 0 14px; }

.crp-card__cat {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.crp-card__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 6px;
  transition: color 0.15s;
}

.crp-card--compact .crp-card__title { font-size: 15px; }

.crp-card__title a { color: inherit; }
.crp-card:hover .crp-card__title a { color: #C12527; }

.crp-card__excerpt {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 6px;
}

.crp-card__meta {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
}

/* ── ARTICLE CARD HORIZONTAL ─────────────────────────────────────── */
.crp-card-h {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.crp-card-h__img-link { display: block; flex-shrink: 0; }

.crp-card-h__img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  display: block;
}

.crp-card-h__img--placeholder {
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ph-color) 60%, #000), var(--ph-color));
}

.crp-card-h__body { flex: 1; min-width: 0; }

.crp-card-h__cat {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.crp-card-h__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 3px;
  transition: color 0.15s;
}

.crp-card-h__title a { color: inherit; }
.crp-card-h:hover .crp-card-h__title a { color: #C12527; }

.crp-card-h__date {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #aaa;
}

/* ── ARTICLE CARD FEATURED (dark overlay) ─────────────────────────── */
.crp-card-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.crp-card-featured__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.crp-card-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.crp-card-featured:hover .crp-card-featured__img { transform: scale(1.02); }

.crp-card-featured__img--placeholder {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ph-color) 50%, #000), var(--ph-color));
}

.crp-card-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}

.crp-card-featured__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
}

.crp-card-featured__cat {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.crp-card-featured__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: opacity 0.15s;
}

.crp-card-featured:hover .crp-card-featured__title { opacity: 0.85; }

.crp-card-featured__meta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0;
}
