

.page-static-title {
  font-size: var(--fs-h1);
  color: var(--skribi-text);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

#fh5co-raconter-vie .reportages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.reportage-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f1e5db;
  border-radius: 16px;
  text-decoration: none;
  color: #542e2a;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reportage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  border-color: #e8d6c8;
}

.reportage-card img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.reportage-meta {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reportage-source {
  font-weight: 700;
  color: var(--skribi-text);
}

.reportage-title {
  font-weight: 600;
  color: #044f5b;
  line-height: 1.4;
}

@media (max-width: 640px) {
  #fh5co-raconter-vie .reportages-grid {
    grid-template-columns: 1fr;
  }
}

