.mini-news {
  margin: 42px 0;
}

.mini-news-head {
  margin-bottom: 24px;
}

.mini-kicker {
  color: #ff0000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .09em;
}

.mini-news-head h2 {
  margin: 6px 0;
  font-size: 34px;
  color: #111;
  letter-spacing: -0.04em;
}

.mini-news-head p {
  color: #666;
  margin: 0;
}

/* Tabs premium compact */
.news-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 15;
  margin: 0 0 22px;
  padding: 10px 0;
  background: rgba(245,245,245,.88);
  backdrop-filter: blur(14px);
}

.news-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px;
  background: #111;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0,0,0,.14);
  scrollbar-width: none;
}

.news-tabs::-webkit-scrollbar {
  display: none;
}

.news-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  min-width: 120px;
  transition: .25s ease;
}

.news-tab span {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.news-tab small {
  display: none;
}

.news-tab:hover,
.news-tab.active {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,0,0,.32);
  transform: translateY(-1px);
}

.news-tab:hover::before,
.news-tab.active::before {
  opacity: 1;
}

.news-tab.active small {
  color: rgba(255,255,255,.9);
}

.news-update {
  margin: 0 0 22px;
  font-size: 13px;
  color: #777;
  font-weight: 700;
}

/* Sections */
.news-section {
  display: none;
  animation: newsFade .28s ease;
}

.news-section.active {
  display: block;
}

@keyframes newsFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 3px solid #111;
  padding-bottom: 12px;
}

.news-section-title h3 {
  margin: 0;
  font-size: 34px;
  color: #111;
  letter-spacing: -0.04em;
}

.news-section-title span {
  font-size: 15px;
  color: #ff0000;
  font-weight: 900;
}

/* Grid */
.news-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Cards */
.news-card-v2 {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: .25s ease;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.news-card-v2:hover {
  transform: translateY(-6px);
  border-color: #ff0000;
  box-shadow: 0 22px 50px rgba(0,0,0,.12);
}

.news-card-img {
  width: 100%;
  height: 210px; /* hauteur réduite */
  background: #f3f3f3;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}

.news-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,.18));
  pointer-events: none;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.news-card-v2:hover img {
  transform: scale(1.045);
}

.news-img-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255,0,0,.32);
}

.news-card-body {
  padding: 22px;
}

.news-source {
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  color: #ff0000;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-card-body h4 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #111;
  letter-spacing: -0.03em;
}

.news-card-body p {
  font-size: 16px;
  color: #666;
  line-height: 1.45;
  margin: 0 0 20px;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.news-meta {
  font-size: 14px;
  color: #aaa;
  white-space: nowrap;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
  border-radius: 999px;
  transition: .25s ease;
  white-space: nowrap;
}

.news-card-v2:hover .read-more {
  background: #ff0000;
  box-shadow: 0 10px 24px rgba(255,0,0,.24);
}

/* Première carte légèrement premium */
.news-card-v2.featured {
  border-color: #eee;
}

.news-card-v2.featured .news-card-body h4 {
  font-size: 18px;
}

/* States */
.news-loading,
.news-error,
.news-empty {
  padding: 22px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  color: #666;
}

/* Skeleton */
.skeleton-tabs {
  height: 76px;
  border-radius: 22px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
  background-size: 200% 100%;
  animation: skeletonMove 1.2s infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.skeleton-card {
  background: #fff;
  border-radius: 24px;
  padding: 0 0 20px;
  overflow: hidden;
  border: 1px solid #eee;
}

.skeleton-card div {
  height: 250px;
  background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
  background-size: 200% 100%;
  animation: skeletonMove 1.2s infinite;
}

.skeleton-card span,
.skeleton-card strong,
.skeleton-card p {
  display: block;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
  background-size: 200% 100%;
  animation: skeletonMove 1.2s infinite;
}

.skeleton-card span {
  width: 40%;
  height: 14px;
  margin-top: 22px;
}

.skeleton-card strong {
  width: 80%;
  height: 28px;
  margin-top: 14px;
}

.skeleton-card p {
  width: 65%;
  height: 18px;
  margin-top: 14px;
}

@keyframes skeletonMove {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.news-grid-v2 {
  align-items: stretch;
}

.news-card-v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-body p {
  flex: 1;
}

.news-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.read-more {
  margin-left: auto;
}

.news-card-body h4 {
  font-size: 18px;
}

.news-card-body p {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .news-grid-v2,
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-tabs {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .mini-news-head h2 {
    font-size: 28px;
  }

   .news-tabs-wrap {
    margin-left: -6px;
    margin-right: -6px;
  }

  .news-tabs {
    border-radius: 999px;
  }

  .news-tab {
    min-width: 110px;
    padding: 9px 14px;
  }

  .news-grid-v2,
  .skeleton-grid {
    grid-template-columns: 1fr;
  }

  .news-section-title {
    align-items: flex-start;
    gap: 6px;
    flex-direction: column;
  }

  .news-section-title h3 {
    font-size: 32px;
  }

  .news-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .read-more {
    align-self: flex-start;
  }
}

/* Desktop un peu plus grand */
@media (min-width: 1200px) {
  .news-card-img {
    height: 210px;
  }
}

/* Mobile encore plus compact */
@media (max-width: 640px) {
  .news-card-img {
    height: 180px;
  }
}