:root {
  --sym-blue: #053d91;
  --sym-blue-dark: #062865;
  --sym-blue-deep: #041b45;
  --sym-accent: #0b66ff;
  --sym-gold: #f3a73a;
  --sym-red: #b81938;
  --sym-ink: #0a1e4d;
  --sym-muted: #63708a;
  --sym-line: rgba(5, 61, 145, 0.14);
  --sym-surface: #ffffff;
  --sym-soft: #f6f8fc;
  --sym-shadow: 0 18px 45px rgba(12, 33, 78, 0.12);
  --sym-radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sym-ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f3a73a;
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99999;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  clip: auto;
  white-space: normal;
  color: #041b45;
  background: #fff;
  border: 2px solid #f3a73a;
  border-radius: 8px;
  font-weight: 800;
}

.topbar {
  color: #fff;
  background: linear-gradient(90deg, var(--sym-blue-dark), var(--sym-blue));
  font-size: 13px;
}

.topbar__inner,
.mainnav__inner,
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar__inner {
  min-height: 32px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.topbar a {
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body.admin-bar .site-header {
  top: 32px;
}

.mainnav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.mainnav__inner {
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__fallback,
.brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 5%, transparent 6%),
    conic-gradient(from 220deg, var(--sym-red), var(--sym-blue), #0aa4d9, var(--sym-red));
  box-shadow: inset 0 0 0 4px #fff, 0 8px 20px rgba(4, 36, 91, 0.18);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  color: var(--sym-red);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand__text small {
  color: var(--sym-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-logo-link img {
  max-width: 190px;
  max-height: 74px;
}

.brand--footer .custom-logo-link img {
  max-width: 240px;
  max-height: 80px;
}

.brand__logo {
  width: min(230px, 48vw);
  max-height: 72px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: min(240px, 100%);
  max-height: 80px;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #101b35;
  font-weight: 700;
  font-size: 15px;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: var(--sym-accent);
  transition: transform 0.22s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
  transform: scaleX(1);
}

.search-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sym-blue);
  font-size: 28px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--sym-line);
  border-radius: 12px;
  background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--sym-blue);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero-slider,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1s ease, transform 5.6s ease;
  pointer-events: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(243, 167, 58, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide span {
  position: absolute;
  right: min(5vw, 58px);
  bottom: 32px;
  max-width: 420px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--sym-accent);
  border-radius: 4px;
  background: rgba(4, 18, 48, 0.48);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  z-index: 3;
}

.hero-slider__dots {
  position: absolute;
  right: min(5vw, 58px);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-slider__dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-slider__dots button.is-active {
  background: #fff;
}

.hero__image {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 82% 30%, rgba(243, 167, 58, 0.32), transparent 28%),
    radial-gradient(circle at 28% 58%, rgba(184, 25, 56, 0.18), transparent 24%),
    linear-gradient(120deg, #21130b 0%, #7a4116 38%, #1b2b36 58%, #6d341e 100%);
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42% 43%, transparent 43%),
    radial-gradient(ellipse at 73% 46%, rgba(255, 255, 255, 0.16) 0 6%, transparent 7%),
    radial-gradient(ellipse at 62% 53%, rgba(10, 10, 10, 0.45) 0 10%, transparent 11%),
    radial-gradient(ellipse at 78% 53%, rgba(7, 7, 7, 0.48) 0 8%, transparent 9%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero__overlay {
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding-block: 78px 86px;
  pointer-events: none;
}

.hero__inner a,
.hero__inner button,
.hero__actions,
.hero__actions a {
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero p:not(.eyebrow) {
  max-width: 530px;
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.btn--primary {
  color: #fff;
  background: var(--sym-accent);
}

.btn--light {
  color: var(--sym-blue);
  background: #fff;
}

.feature-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
  margin-top: -32px;
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sym-shadow);
  backdrop-filter: blur(14px);
}

.feature-strip a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 26px;
}

.feature-strip a + a {
  border-left: 1px solid var(--sym-line);
}

.feature-strip__icon {
  color: var(--sym-accent);
  font-size: 28px;
  font-weight: 900;
}

.feature-strip strong,
.feature-strip small {
  display: block;
}

.feature-strip strong {
  color: var(--sym-blue);
  font-size: 18px;
}

.feature-strip small {
  color: var(--sym-muted);
  font-weight: 700;
}

.section {
  padding-block: 22px 8px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--sym-ink);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading a {
  color: var(--sym-blue);
  font-size: 14px;
  font-weight: 850;
}

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

.event-card,
.spotlight,
.service,
.news-list {
  border: 1px solid rgba(4, 38, 100, 0.12);
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 33, 78, 0.06);
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-radius: 8px;
}

.event-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  max-height: 175px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #dbe6f4;
}

.event-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.event-card__media--warm {
  background:
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.2), transparent 12%),
    linear-gradient(110deg, #160e0c, #8a401b 54%, #0d0d10);
}

.event-card__media--paint {
  background:
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.28), transparent 14%),
    repeating-linear-gradient(36deg, rgba(255, 255, 255, 0.14) 0 3px, transparent 3px 16px),
    linear-gradient(110deg, #a94e2e, #f1a6a1, #384a82);
}

.event-card__media--night {
  background:
    radial-gradient(circle at 70% 30%, rgba(243, 167, 58, 0.55), transparent 8%),
    radial-gradient(circle at 34% 70%, rgba(255, 255, 255, 0.14), transparent 10%),
    linear-gradient(110deg, #01133d, #17104a 48%, #a9322d);
}

.date-badge {
  position: absolute;
  top: 128px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 6px;
  background: var(--sym-accent);
  box-shadow: 0 10px 20px rgba(0, 56, 168, 0.22);
}

.date-badge strong {
  font-size: 22px;
  line-height: 1;
}

.date-badge span {
  font-size: 11px;
  font-weight: 900;
}

.event-card__body {
  padding: 34px 18px 18px;
}

.event-card h3,
.spotlight h3,
.service h3,
.news-item h3 {
  margin: 0;
  color: var(--sym-ink);
  letter-spacing: -0.03em;
}

.event-card p,
.spotlight span,
.service p,
.news-item p,
.news-item time {
  color: var(--sym-muted);
}

.event-card p {
  margin: 2px 0 13px;
  font-size: 13px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #2e374d;
  font-size: 12px;
  font-weight: 700;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.spotlight {
  overflow: hidden;
  border-radius: 8px;
}

.spotlight__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 118px;
  max-height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #dbe6f4;
}

.spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.spotlight__media--library {
  background: linear-gradient(110deg, #21120d, #7b4627, #0b0f17);
}

.spotlight__media--campus {
  background: linear-gradient(110deg, #b9c4d4, #eff4f8, #8a9db5);
}

.spotlight__media--cinema {
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.32), transparent 11%), linear-gradient(110deg, #0d0e12, #d68435, #0d0f14);
}

.spotlight__media--residence {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 18px), linear-gradient(110deg, #f5c987, #e65645, #253a78);
}

.spotlight p {
  margin: 12px 14px 2px;
  color: var(--sym-accent);
  font-size: 12px;
  font-weight: 900;
}

.spotlight h3 {
  margin-inline: 14px;
  font-size: 18px;
  line-height: 1.12;
}

.spotlight span {
  display: block;
  margin: 4px 14px 14px;
  font-size: 13px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--sym-blue);
  border: 1.5px solid rgba(11, 102, 255, 0.58);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-pills a:hover {
  color: #fff;
  background: var(--sym-accent);
  transform: translateY(-2px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.service {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px;
  border-radius: 10px;
}

.service > span {
  display: grid;
  place-items: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  color: var(--sym-accent);
  font-size: 34px;
  font-weight: 900;
}

.service h3 {
  font-size: 16px;
}

.service p {
  margin: 4px 0 0;
  font-size: 13px;
}

.news-list {
  overflow: hidden;
  border-radius: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
}

.news-item + .news-item {
  border-top: 1px dashed rgba(4, 38, 100, 0.22);
}

.news-thumb {
  display: block;
  overflow: hidden;
  width: 86px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(110deg, #c98942, #142b65);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item h3 {
  font-size: 15px;
}

.news-item p {
  margin: 2px 0 0;
  font-size: 13px;
}

.news-item time {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.news-arrow {
  color: #101b35;
  font-size: 34px;
  line-height: 1;
}

.content-page {
  padding-block: 48px;
}

.search-form {
  display: flex;
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 18px;
}
.search-form label {
  flex: 1;
}
.search-field {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--sym-ink);
  background: #fff;
  border: 1px solid var(--sym-line);
  border-radius: 8px;
  font: inherit;
}
.search-submit {
  min-height: 46px;
  padding: 10px 18px;
  color: #fff;
  background: var(--sym-blue);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.site-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.home-with-sidebar {
  padding-top: 0;
}

.site-main-column {
  min-width: 0;
}

.site-main-column .spotlight-grid,
.site-main-column .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  align-self: start;
  padding-top: 22px;
}

.sidebar-card,
.sidebar-widgets .widget,
.sidebar-widgets .footer-widget {
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 33, 78, 0.06);
}

.sidebar-card {
  padding: 16px;
}

.sidebar-title,
.site-sidebar .widgettitle,
.site-sidebar .widget-title,
.site-sidebar .footer-widget__title,
.site-sidebar .wp-block-heading {
  margin: 0 0 12px;
  color: var(--sym-ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.facebook-page-box {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  background: var(--sym-soft);
}

.facebook-page-box iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.sidebar-widgets {
  display: grid;
  gap: 18px;
}

.sidebar-widgets .widget,
.sidebar-widgets .footer-widget {
  padding: 18px;
}

.site-sidebar ul {
  margin: 0;
  padding-left: 18px;
}

.site-sidebar li + li {
  margin-top: 8px;
}

.site-sidebar p {
  margin: 0 0 12px;
  color: var(--sym-muted);
  font-size: 14px;
}

.site-sidebar a {
  color: var(--sym-blue);
  font-weight: 800;
}

.inner-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(243, 167, 58, 0.34), transparent 18%),
    radial-gradient(circle at 18% 76%, rgba(184, 25, 56, 0.22), transparent 22%),
    linear-gradient(115deg, var(--sym-blue-deep), var(--sym-blue) 52%, #18366c);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent);
  opacity: 0.72;
}

.inner-hero__content {
  position: relative;
  padding-block: 70px;
}

.inner-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.inner-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 650;
}

.page-layout {
  padding-block: 46px;
}

.page-content {
  max-width: 860px;
  color: #1d2b48;
  font-size: 18px;
}

.page-content h2 {
  margin: 0 0 14px;
  color: var(--sym-ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.page-content p {
  margin: 0 0 18px;
}

.linked-grid,
.post-grid,
.gallery-grid,
.contact-panel {
  margin-top: 30px;
}

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

.detail-card {
  display: block;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 252, 0.92)),
    radial-gradient(circle at 90% 15%, rgba(11, 102, 255, 0.16), transparent 26%);
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 33, 78, 0.12);
}

.detail-card span,
.post-card time {
  color: var(--sym-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card h2,
.post-card h2,
.contact-panel h2 {
  margin: 10px 0 8px;
  color: var(--sym-ink);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-card p,
.post-card p,
.contact-panel p {
  margin: 0;
  color: var(--sym-muted);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.07);
}

.post-card > div {
  padding: 20px;
}

.post-card__thumb {
  display: block;
  height: 190px;
  background: linear-gradient(110deg, #c98942, #142b65);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__thumb--placeholder {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.3), transparent 16%),
    repeating-linear-gradient(40deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 18px),
    linear-gradient(120deg, #21130b, #7a4116, #053d91);
}

.archive-pagination {
  margin-top: 32px;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--sym-line);
  border-radius: 8px;
  color: var(--sym-blue);
  background: #fff;
  font-weight: 850;
}

.archive-pagination .current {
  color: #fff;
  background: var(--sym-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  min-height: 180px;
  border-radius: 18px;
  background: linear-gradient(120deg, #1b2b36, #d6852e);
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.09);
}

.gallery-tile--one {
  grid-row: span 2;
  background: linear-gradient(140deg, #21130b, #7a4116, #1b2b36);
}

.gallery-tile--two {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 15px), linear-gradient(120deg, #a94e2e, #f1a6a1, #384a82);
}

.gallery-tile--three {
  background: radial-gradient(circle at 72% 28%, rgba(243, 167, 58, 0.6), transparent 12%), linear-gradient(120deg, #01133d, #17104a, #a9322d);
}

.gallery-tile--four {
  background: linear-gradient(120deg, #b9c4d4, #eff4f8, #8a9db5);
}

.gallery-tile--five {
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.32), transparent 11%), linear-gradient(110deg, #0d0e12, #d68435, #0d0f14);
}

.gallery-tile--six {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 18px), linear-gradient(110deg, #f5c987, #e65645, #253a78);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.contact-panel > div {
  padding: 26px;
  border-radius: 18px;
  background: var(--sym-soft);
}

.single-featured {
  max-width: 920px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--sym-shadow);
}

.single-featured img {
  width: 100%;
}

.single-featured figcaption {
  padding: 10px 14px;
  color: var(--sym-muted);
  background: var(--sym-soft);
  font-size: 13px;
  line-height: 1.45;
}

.single-category-link,
.single-article-meta a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.single-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.single-article-meta span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}

.single-article-deck {
  max-width: 760px !important;
}

.single-article-footer {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-top: 38px;
}

.article-author-card,
.article-correction-note {
  padding: 24px;
  border: 1px solid var(--sym-line);
  border-radius: 16px;
  background: var(--sym-soft);
}

.article-author-card {
  border-left: 5px solid var(--sym-blue);
}

.article-author-card__label {
  margin: 0 0 4px;
  color: var(--sym-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-author-card h2 {
  margin: 0;
  color: var(--sym-ink);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.article-author-card p:not(.article-author-card__label) {
  margin: 10px 0;
  color: #33415f;
}

.article-author-card a,
.article-correction-note a {
  color: var(--sym-blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-correction-note {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
  color: #33415f;
  background: #fffaf0;
  border-color: rgba(181, 112, 8, 0.28);
  font-size: 14px;
}

.article-correction-note strong {
  color: #704500;
}

.archive-list {
  display: grid;
  gap: 24px;
}

.archive-card {
  padding: 26px;
  border: 1px solid var(--sym-line);
  border-radius: var(--sym-radius);
}

.site-footer {
  margin-top: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 102, 255, 0.32), transparent 18%),
    linear-gradient(90deg, var(--sym-blue-deep), var(--sym-blue));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.5fr 1.45fr 1fr 1.25fr;
  gap: 30px;
  padding-block: 34px;
}

.footer-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 30px;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer h2,
.site-footer .footer-widget__title,
.site-footer .wp-block-heading {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.site-footer p,
.site-footer a,
.footer-menu,
.site-footer li,
.site-footer .footer-widget {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.footer-menu,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li + li,
.site-footer ul li + li {
  margin-top: 6px;
}

.footer-widget > *:last-child {
  margin-bottom: 0;
}

.footer-widget p {
  margin-top: 0;
}

.footer-widget .wp-block-social-links {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
}

.footer-widget .wp-block-social-links a {
  color: inherit;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom__inner {
  min-height: 54px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-bottom__inner .footer-widget {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .site-with-sidebar {
    grid-template-columns: 1fr;
  }

  .site-sidebar {
    position: static;
    padding-top: 8px;
  }

  .facebook-page-box iframe {
    height: 420px;
  }

  .primary-nav {
    position: fixed;
    top: 124px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 18px;
    border: 1px solid var(--sym-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sym-shadow);
    z-index: 70;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }

  body.admin-bar .primary-nav {
    top: 156px;
    max-height: calc(100vh - 166px);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 6px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .search-link {
    display: none;
  }

  .event-row,
  .spotlight-grid,
  .service-grid,
  .linked-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div + div {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar__right {
    display: none;
  }

  .mainnav__inner {
    min-height: 76px;
  }

  .brand__text {
    display: none;
  }

  .primary-nav {
    top: 108px;
  }

  body.admin-bar .primary-nav {
    top: 154px;
    max-height: calc(100vh - 164px);
  }

  .hero {
    min-height: 520px;
  }

  .hero__inner {
    padding-block: 56px 88px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-slide span {
    display: none;
  }

  .hero-slider__dots {
    right: 18px;
    bottom: 16px;
  }

  .btn {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: -42px;
  }

  .feature-strip a + a {
    border-left: 0;
    border-top: 1px solid var(--sym-line);
  }

  .section {
    padding-block: 28px 4px;
  }

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

  .event-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .event-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .event-card__media {
    min-height: 155px;
  }

  .date-badge {
    top: 130px;
  }

  .spotlight-grid,
  .service-grid,
  .footer-grid,
  .linked-grid,
  .post-grid,
  .gallery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-main-column .spotlight-grid,
  .site-main-column .service-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 330px;
  }

  .news-item {
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
  }

  .news-thumb {
    width: 70px;
    height: 52px;
  }

  .footer-bottom__inner {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding-block: 14px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}


/* Correctif v2.1 : animation reveal désactivée sur tout le site.
   Aucun élément ne doit être masqué par reveal, même si un ancien cache ou un bloc personnalisé conserve cette classe. */
html body .reveal,
html body .reveal:not(.is-visible),
html body .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
}

/* Lisibilité globale des pages, articles et blocs WordPress */
body.page,
body.single,
body.archive,
body.category,
body.search,
.entry-content,
.page-content,
.wp-block-post-content {
  color: #1d2b48;
}

.entry-content *,
.page-content *,
.wp-block-post-content * {
  visibility: visible;
}

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6,
.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 {
  color: #062865;
}

.entry-content a,
.page-content a,
.wp-block-post-content a {
  color: #e5251a;
}


/* Citations modernes Katanga24News - v2.2 */
.page-content blockquote,
.entry-content blockquote,
.wp-block-post-content blockquote,
.wp-block-quote {
  position: relative;
  margin: 30px 0;
  padding: 26px 28px 24px 34px;
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 100%);
  border: 1px solid rgba(6, 40, 101, 0.12);
  border-left: 6px solid #e5251a;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(6, 40, 101, 0.10);
  color: #1d2b48 !important;
  overflow: hidden;
}

.page-content blockquote::before,
.entry-content blockquote::before,
.wp-block-post-content blockquote::before,
.wp-block-quote::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  color: rgba(6, 40, 101, 0.10);
  pointer-events: none;
}

.page-content blockquote p,
.entry-content blockquote p,
.wp-block-post-content blockquote p,
.wp-block-quote p {
  position: relative;
  margin: 0 0 12px;
  color: #10264f !important;
  font-size: 1.12rem;
  line-height: 1.75;
  font-weight: 600;
}

.page-content blockquote p:last-child,
.entry-content blockquote p:last-child,
.wp-block-post-content blockquote p:last-child,
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.page-content blockquote cite,
.entry-content blockquote cite,
.wp-block-post-content blockquote cite,
.wp-block-quote cite,
.page-content blockquote footer,
.entry-content blockquote footer,
.wp-block-post-content blockquote footer,
.wp-block-quote footer {
  position: relative;
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 40, 101, 0.12);
  color: #e5251a !important;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.page-content blockquote cite::before,
.entry-content blockquote cite::before,
.wp-block-post-content blockquote cite::before,
.wp-block-quote cite::before,
.page-content blockquote footer::before,
.entry-content blockquote footer::before,
.wp-block-post-content blockquote footer::before,
.wp-block-quote footer::before {
  content: "— ";
  color: #062865;
}

/* Variante WordPress : citation large */
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  padding: 32px 34px;
  border-left-width: 8px;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.65;
}

/* Bloc Pullquote WordPress */
.page-content .wp-block-pullquote,
.entry-content .wp-block-pullquote,
.wp-block-post-content .wp-block-pullquote {
  margin: 34px 0;
  padding: 0;
  border: none;
  color: #10264f !important;
}

.page-content .wp-block-pullquote blockquote,
.entry-content .wp-block-pullquote blockquote,
.wp-block-post-content .wp-block-pullquote blockquote {
  margin: 0;
  padding: 34px 36px;
  text-align: center;
  border-left: none;
  border-top: 5px solid #062865;
  border-bottom: 5px solid #e5251a;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.page-content .wp-block-pullquote blockquote p,
.entry-content .wp-block-pullquote blockquote p,
.wp-block-post-content .wp-block-pullquote blockquote p {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.55;
  color: #062865 !important;
}

/* Citation avec fond coloré choisi dans Gutenberg */
.wp-block-quote.has-background,
.wp-block-pullquote.has-background blockquote {
  padding: 28px 32px;
  border-left: 6px solid #e5251a;
}

/* Correctif v2.4 : les citations gardent la même apparence sur PC et mobile.
   On conserve uniquement les règles de sécurité d'affichage, sans changer le design. */
@media (max-width: 782px) {
  html body .entry-content blockquote,
  html body .page-content blockquote,
  html body .wp-block-post-content blockquote,
  html body .entry-content .wp-block-quote,
  html body .page-content .wp-block-quote,
  html body .wp-block-post-content .wp-block-quote,
  html body .wp-block-quote {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    position: relative !important;
    margin: 30px 0 !important;
    padding: 26px 28px 24px 34px !important;
    background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 100%) !important;
    border: 1px solid rgba(6, 40, 101, 0.12) !important;
    border-left: 6px solid #e5251a !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(6, 40, 101, 0.10) !important;
    color: #1d2b48 !important;
    overflow: hidden !important;
    clear: both !important;
    max-width: 100% !important;
    height: auto !important;
  }

  html body .entry-content blockquote::before,
  html body .page-content blockquote::before,
  html body .wp-block-post-content blockquote::before,
  html body .wp-block-quote::before {
    content: "\201C" !important;
    display: block !important;
    position: absolute !important;
    top: -18px !important;
    right: 22px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 96px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: rgba(6, 40, 101, 0.10) !important;
    pointer-events: none !important;
  }

  html body .entry-content blockquote *,
  html body .page-content blockquote *,
  html body .wp-block-post-content blockquote *,
  html body .wp-block-quote * {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html body .entry-content blockquote p,
  html body .page-content blockquote p,
  html body .wp-block-post-content blockquote p,
  html body .wp-block-quote p {
    position: relative !important;
    display: block !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #10264f !important;
    font-size: 1.12rem !important;
    line-height: 1.75 !important;
    font-weight: 600 !important;
    text-align: inherit !important;
  }

  html body .entry-content blockquote p:last-child,
  html body .page-content blockquote p:last-child,
  html body .wp-block-post-content blockquote p:last-child,
  html body .wp-block-quote p:last-child {
    margin-bottom: 0 !important;
  }

  html body .entry-content blockquote cite,
  html body .page-content blockquote cite,
  html body .wp-block-post-content blockquote cite,
  html body .wp-block-quote cite,
  html body .entry-content blockquote footer,
  html body .page-content blockquote footer,
  html body .wp-block-post-content blockquote footer,
  html body .wp-block-quote footer {
    position: relative !important;
    display: block !important;
    margin-top: 14px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(6, 40, 101, 0.12) !important;
    color: #e5251a !important;
    font-size: 0.92rem !important;
    font-style: normal !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
  }

  html body .entry-content .wp-block-pullquote,
  html body .page-content .wp-block-pullquote,
  html body .wp-block-post-content .wp-block-pullquote {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 34px 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    color: #10264f !important;
  }

  html body .entry-content .wp-block-pullquote blockquote,
  html body .page-content .wp-block-pullquote blockquote,
  html body .wp-block-post-content .wp-block-pullquote blockquote {
    margin: 0 !important;
    padding: 34px 36px !important;
    text-align: center !important;
    border-left: none !important;
    border-top: 5px solid #062865 !important;
    border-bottom: 5px solid #e5251a !important;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  html body .entry-content .wp-block-pullquote blockquote p,
  html body .page-content .wp-block-pullquote blockquote p,
  html body .wp-block-post-content .wp-block-pullquote blockquote p {
    color: #062865 !important;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  html body .entry-content blockquote.has-white-color,
  html body .page-content blockquote.has-white-color,
  html body .wp-block-quote.has-white-color,
  html body .entry-content blockquote .has-white-color,
  html body .page-content blockquote .has-white-color,
  html body .wp-block-quote .has-white-color {
    color: #10264f !important;
  }
}


/* Version 2.4.1 - Aperçus d'images propres en 16:9 sur la page d'accueil
   Les photos mises en avant, souvent en 800x450, sont affichées sans zoom excessif
   dans les blocs “À la une” et “À ne pas manquer”. */
.event-card__media,
.spotlight__media {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  position: relative !important;
  background-color: #eef3f9 !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.event-card__img,
.spotlight__img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #eef3f9 !important;
}

.event-card__media::after,
.spotlight__media::after {
  z-index: 2 !important;
}

.spotlight__media {
  overflow: hidden !important;
}

.event-card .date-badge {
  top: auto !important;
  bottom: -26px !important;
  left: 16px !important;
  z-index: 5 !important;
}

.event-card__body {
  padding-top: 42px !important;
}

.post-card__thumb {
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  background-color: #eef3f9 !important;
}

.post-card__thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #eef3f9 !important;
}

.news-thumb img {
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #eef3f9 !important;
}

@media (max-width: 782px) {
  .event-card__media,
  .spotlight__media,
  .post-card__thumb {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .event-card .date-badge {
    top: auto !important;
    bottom: -26px !important;
  }

  .event-card__body {
    padding-top: 42px !important;
  }
}

/* Version 2.4.2 - Correction des miniatures et du slider
   Les images 800x450 sont affichées en 16:9 sans recouvrir les titres. */
.event-card,
.spotlight {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.event-card__media,
.spotlight__media {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  background-color: #eef3f9 !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.event-card__img,
.spotlight__img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #eef3f9 !important;
}

.event-card__media::after,
.spotlight__media::after {
  z-index: 2 !important;
  pointer-events: none !important;
}

/* Date replacée dans la zone image pour ne plus couvrir le texte. */
.event-card .date-badge {
  top: auto !important;
  right: auto !important;
  bottom: 12px !important;
  left: 16px !important;
  z-index: 6 !important;
}

.event-card__body,
.spotlight p,
.spotlight h3,
.spotlight span {
  position: relative !important;
  z-index: 3 !important;
  background: #ffffff !important;
}

.event-card__body {
  padding-top: 18px !important;
}

.spotlight p {
  margin-top: 14px !important;
}

.spotlight h3 {
  margin-top: 4px !important;
}

.spotlight span {
  padding-bottom: 2px !important;
}

/* Sur les grandes cartes “À ne pas manquer”, on garde un aperçu proche de 350x196. */
.site-main-column .spotlight-grid .spotlight__media {
  height: 196px !important;
  aspect-ratio: auto !important;
}

/* Version 2.4.3 - Slider uniquement : image entière, centrée et non coupée. */
.hero-slide {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #061b43 !important;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 82% 30%, rgba(243, 167, 58, 0.16), transparent 28%) !important;
}

@media (max-width: 900px) {
  .site-main-column .spotlight-grid .spotlight__media {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 720px) {
  .event-card__media,
  .spotlight__media,
  .site-main-column .spotlight-grid .spotlight__media {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .event-card .date-badge {
    bottom: 10px !important;
    left: 14px !important;
  }

  .event-card__body {
    padding-top: 16px !important;
  }

  .hero-slide {
    background-size: contain !important;
    background-position: center center !important;
  }
}


/* Version 2.4.4 - Slider moderne uniquement : image complète, centrée, sans voile noir ni bandes noires. */
.hero-slide {
  background-image: none !important;
  background-color: #eef4fb !important;
  background-size: auto !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.hero-slide::before {
  content: "" !important;
  position: absolute !important;
  inset: -34px !important;
  z-index: 1 !important;
  background-image: var(--hero-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  filter: blur(22px) saturate(1.05) !important;
  transform: scale(1.08) !important;
  opacity: 0.58 !important;
  pointer-events: none !important;
}

.hero-slide::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background-image: var(--hero-image) !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  pointer-events: none !important;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(4, 18, 48, 0.54) 0%, rgba(4, 18, 48, 0.26) 34%, rgba(4, 18, 48, 0.07) 72%, rgba(4, 18, 48, 0.12) 100%) !important;
  pointer-events: none !important;
}

.hero-slide span {
  z-index: 8 !important;
}

.hero-slider__dots {
  z-index: 9 !important;
}

@media (max-width: 720px) {
  .hero-slide {
    background-image: none !important;
    background-color: #eef4fb !important;
  }

  .hero-slide::before {
    inset: -28px !important;
    filter: blur(18px) saturate(1.05) !important;
    opacity: 0.62 !important;
  }

  .hero-slide::after {
    background-size: contain !important;
    background-position: center center !important;
  }
}

/* ==========================================================================
   VERSION 2.5.0 - RESTRUCTURATION MODERNE KATANGA24NEWS (HOMEPAGE RE-DESIGN)
   ========================================================================== */

/* 1. Flash Info / Ticker en Direct */
/* ========================================================
   FLASH INFO – Ticker défilant continu (v2.8.1)
   ======================================================== */
.k24n-flash-ticker {
  background: #041433;
  color: #fff;
  border-bottom: 2px solid var(--sym-accent);
  padding: 0;
  font-size: 14px;
  overflow: hidden;
}
.k24n-flash-ticker__inner {
  display: flex;
  align-items: stretch;
  min-height: 42px;
}
.k24n-flash-ticker__badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  background: var(--sym-red);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 0 14px;
  white-space: nowrap;
  z-index: 2;
}
.k24n-flash-ticker__pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: k24n-pulse 1.6s infinite;
}
@keyframes k24n-pulse {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255,0);  }
}

/* Piste défilante */
.k24n-ticker-scroll {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  /* Masques de fondu sur les bords */
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.k24n-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: k24n-ticker-scroll 40s linear infinite;
  will-change: transform;
}
/* Deuxième exemplaire (cloné par JS) : enchaîne sans pause */
.k24n-ticker-track + .k24n-ticker-track {
  animation: k24n-ticker-scroll 40s linear infinite;
}
@keyframes k24n-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.k24n-ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.k24n-ticker-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.k24n-ticker-item a:hover { color: var(--sym-gold); }
.k24n-ticker-bullet {
  color: var(--sym-gold);
  margin-right: 8px;
  font-size: 10px;
}
.k24n-flash-ticker__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--sym-gold);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s ease;
}
.k24n-flash-ticker__link:hover { color: #fff; }
.k24n-ticker-toggle {
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 3;
  flex: 0 0 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  color: #fff;
  background: #041433;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-weight: 900;
}
.k24n-ticker-toggle:hover {
  color: var(--sym-gold);
  background: rgba(255,255,255,0.06);
}
.k24n-ticker-scroll.is-paused .k24n-ticker-track {
  animation-play-state: paused;
}

/* ========================================================
   ZONES DE WIDGETS HOMEPAGE (v2.8.1)
   ======================================================== */
.k24n-widget-area {
  padding: 20px 0;
  border-top: 1px solid var(--sym-line);
  border-bottom: 1px solid var(--sym-line);
  margin-bottom: 10px;
}
.k24n-widget-area--top {
  background: var(--sym-soft);
}
.k24n-widget-area--mid {
  background: #fff;
  border-left: 4px solid var(--sym-accent);
  padding-left: 20px;
}
.k24n-widget-area--bottom {
  background: var(--sym-soft);
}
.k24n-widget-area__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sym-ink);
  margin-top: 0;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sym-accent);
}
.k24n-widget-area__item {
  margin-bottom: 16px;
}

/* ========================================================
   HERO MAGAZINE – Slider auto-rotatif (v2.8.1)
   ======================================================== */
.k24n-hero-magazine {
  padding: 24px 0 16px;
  background: #f4f7fc;
}
.k24n-hero-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

/* ── Slider principal ─────────────────────────────────── */
.k24n-hero-slider {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sym-blue-dark);
  box-shadow: var(--sym-shadow);
}
.k24n-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: var(--sym-blue-deep);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
  pointer-events: none;
}
.k24n-hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background: #061b43;
}
.k24n-hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.k24n-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,27,69,0.08) 0%, rgba(4,27,69,0.94) 90%);
  z-index: 1;
}
.k24n-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.k24n-hero-slide__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.k24n-hero-slide__content {
  position: relative;
  z-index: 3;
  padding: 30px;
  color: #fff;
  pointer-events: none;
  width: 100%;
}
.k24n-hero-slide__content a { pointer-events: auto; }
.k24n-hero-slide__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin: 10px 0 8px;
}
.k24n-hero-slide__title a { color: #fff; text-decoration: none; }
.k24n-hero-slide__title a:hover { text-decoration: underline; }
.k24n-hero-slide__excerpt {
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* Boutons navigation */
.k24n-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.k24n-hero-nav:hover { background: rgba(255,255,255,0.35); }
.k24n-hero-nav--prev { left: 14px; }
.k24n-hero-nav--next { right: 14px; }

/* Indicateurs dots */
.k24n-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0;
}
.k24n-hero-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.k24n-hero-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background 0.25s, transform 0.25s;
}
.k24n-hero-dot.is-active::before {
  background: #fff;
  transform: scale(1.4);
}
.k24n-hero-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: rgba(4,27,69,0.72);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
}
.k24n-hero-toggle:hover {
  background: rgba(4,27,69,0.95);
}

/* Fallback hero sans image */
.k24n-hero-slide--fallback {
  position: relative;
  background: linear-gradient(135deg, var(--sym-blue-dark), var(--sym-accent));
}
.k24n-hero-main__title {
  margin: 10px 0;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
  font-weight: 850;
}
.k24n-hero-main__title a:hover {
  color: var(--sym-gold);
}
.k24n-hero-main__excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 14px;
}
.k24n-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.k24n-hero-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.k24n-hero-sub-card {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--sym-line);
  box-shadow: 0 4px 12px rgba(4, 27, 69, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.k24n-hero-sub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 27, 69, 0.08);
}
.k24n-hero-sub-card__thumb {
  width: 128px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
}
.k24n-hero-sub-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef3f9;
}
.k24n-hero-sub-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.k24n-hero-sub-card__title {
  margin: 4px 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}
.k24n-hero-sub-card__title a {
  color: var(--sym-ink);
  text-decoration: none;
}
.k24n-hero-sub-card__title a:hover {
  color: var(--sym-accent);
}

/* 3. Navigation par Pilules (Rubriques) */
.k24n-rubriques-nav {
  background: #fff;
  border-top: 1px solid var(--sym-line);
  border-bottom: 1px solid var(--sym-line);
  padding: 12px 0;
  margin-bottom: 20px;
}
.k24n-rubriques-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.k24n-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--sym-soft);
  color: var(--sym-ink);
  font-weight: 700;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid rgba(5, 61, 145, 0.08);
}
.k24n-pill:hover,
.k24n-pill.is-active {
  background: var(--sym-blue);
  color: #fff;
  border-color: var(--sym-blue);
}

/* 4. Structure des Blocs Dédiés */
.k24n-block {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  border: 1px solid var(--sym-line);
  box-shadow: 0 4px 16px rgba(12, 33, 78, 0.03);
}
.k24n-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--sym-soft);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.k24n-block__title {
  margin: 0;
  font-size: 20px;
  font-weight: 850;
  color: var(--sym-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.k24n-block__more {
  color: var(--sym-accent);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.k24n-block__more:hover {
  text-decoration: underline;
}

/* Grilles & Cartes d'articles */
.k24n-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.k24n-card {
  display: flex;
  gap: 14px;
  border-radius: 8px;
  overflow: hidden;
}
.k24n-card__media {
  width: 128px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
}
.k24n-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef3f9;
}
.k24n-card__body {
  min-width: 0;
}
.k24n-card__body h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}
.k24n-card__body h3 a {
  color: var(--sym-ink);
  text-decoration: none;
}
.k24n-card__body h3 a:hover {
  color: var(--sym-accent);
}
.k24n-card__body p {
  margin: 0;
  font-size: 12px;
  color: var(--sym-muted);
}

/* Bloc Société */
.k24n-societe-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.k24n-societe-item {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sym-line);
  border-radius: 10px;
}
.k24n-societe-item__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef3f9;
}
.k24n-societe-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.k24n-societe-item > .k24n-placeholder-square {
  aspect-ratio: 16 / 9;
}
.k24n-societe-item__info {
  padding: 14px;
}
.k24n-societe-item__info h3 {
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.35;
}
.k24n-societe-item__info h3 a:hover {
  color: var(--sym-accent);
}
.k24n-societe-item__info p {
  margin: 0 0 8px;
  color: var(--sym-muted);
  font-size: 12px;
}

/* Badges & Tags */
.k24n-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
}
.k24n-badge--accent { background: var(--sym-accent); color: #fff; }
.k24n-badge--gold { background: var(--sym-gold); color: #041b45; }
.k24n-badge--light { background: #e0eafc; color: var(--sym-blue); }

.k24n-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--sym-accent);
  text-transform: uppercase;
}
.k24n-date {
  font-size: 11px;
  color: var(--sym-muted);
}

/* Bloc About */
.k24n-about-card {
  background: linear-gradient(135deg, #062865 0%, #041b45 100%);
  color: #fff;
  border-radius: 10px;
  padding: 28px;
}
.k24n-about-card h2 { color: #fff; margin-top: 10px; }
.k24n-about-card p { color: rgba(255,255,255,0.85); font-size: 15px; }
.k24n-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.k24n-af-item {
  background: rgba(255,255,255,0.08);
  padding: 14px;
  border-radius: 8px;
  border-left: 3px solid var(--sym-gold);
}
.k24n-af-item strong { display: block; color: #fff; margin-bottom: 4px; }
.k24n-af-item span { font-size: 12px; color: rgba(255,255,255,0.75); }

/* Bloc Analyses Sombre */
.k24n-block--dark {
  background: #041433;
  color: #fff;
  border-color: #0c2b66;
}
.k24n-block--dark .k24n-block__title { color: #fff; }
.k24n-block__more--light { color: var(--sym-gold); }
.k24n-analyses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.k24n-analysis-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
}
.k24n-analysis-card h3 { color: #fff; margin: 10px 0; font-size: 16px; }
.k24n-analysis-card h3 a { color: #fff; text-decoration: none; }
.k24n-analysis-card p { color: rgba(255,255,255,0.75); font-size: 13px; }
.k24n-analysis-card__link { color: var(--sym-gold); font-weight: 700; font-size: 13px; text-decoration: none; }

/* Version Papier */
.k24n-paper-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, #eef4fc, #fff);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--sym-line);
}
.k24n-paper-card__icon { font-size: 40px; }
.k24n-paper-card__content h2 { margin: 0 0 6px; font-size: 18px; }
.k24n-paper-card__content p { margin: 0; font-size: 13px; color: var(--sym-muted); }

/* Dossiers & Médias */
.k24n-dossiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.k24n-dossier-pill {
  display: block;
  background: var(--sym-soft);
  padding: 14px;
  border-radius: 8px;
  border-left: 4px solid var(--sym-accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.k24n-dossier-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 27, 69, 0.08);
}
.k24n-dossier-pill strong { display: block; font-size: 12px; color: var(--sym-accent); }
.k24n-dossier-pill span { font-size: 13px; font-weight: 700; color: var(--sym-ink); }

.k24n-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.k24n-media-card {
  height: 160px;
  background: #1a202c;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.k24n-media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 27, 69, 0.16);
}
.k24n-media-card__overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.k24n-media-play { color: var(--sym-gold); }
.k24n-media-card h3 { margin: 0; font-size: 14px; text-shadow: 0 2px 4px rgba(0,0,0,0.6); }

/* Dual Grid Contacts / Partenaires */
.k24n-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.k24n-info-box {
  background: var(--sym-soft);
  padding: 20px;
  border-radius: 8px;
}
.k24n-info-box h3 { margin-top: 0; font-size: 16px; }
.k24n-info-box ul { list-style: none; padding: 0; margin: 12px 0; font-size: 13px; }
.k24n-info-box li { margin-bottom: 6px; }
.btn--outline-sm {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--sym-blue);
  color: var(--sym-blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}
.k24n-partners-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.k24n-partners-badges span {
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--sym-line);
}
.k24n-placeholder-thumb,
.k24n-placeholder-square {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a, #0b66ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

/* Fact Checking Specifics */
.k24n-block--factcheck {
  border-left: 4px solid #10b981;
  background: #f0fdf4;
}
.k24n-card--factcheck {
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 12px;
  border-radius: 8px;
}
.k24n-badge--check {
  background: #047857;
  color: #fff;
  margin-bottom: 6px;
}
.k24n-placeholder-thumb--check {
  background: linear-gradient(135deg, #047857, #10b981);
}

/* Responsiveness Mobile */
@media (max-width: 900px) {
  .k24n-hero-layout,
  .k24n-news-grid,
  .k24n-analyses-grid,
  .k24n-societe-layout,
  .k24n-dossiers-row,
  .k24n-media-grid,
  .k24n-dual-grid,
  .k24n-about-features {
    grid-template-columns: 1fr;
  }
  .k24n-paper-card {
    flex-direction: column;
    text-align: center;
  }
  .k24n-hero-slider {
    min-height: 380px;
  }
  .k24n-hero-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .k24n-hero-sub-card {
    flex-direction: column;
  }
  .k24n-hero-sub-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .k24n-flash-ticker__badge {
    padding-inline: 10px;
  }
  .k24n-flash-ticker__link {
    display: none;
  }
  .k24n-ticker-item {
    padding-inline: 18px;
  }
  .k24n-hero-slider {
    min-height: 360px;
  }
  .k24n-hero-slide__content {
    padding: 24px 20px 52px;
  }
  .k24n-hero-slide__title {
    font-size: 20px;
  }
  .k24n-hero-slide__excerpt {
    display: none;
  }
  .k24n-hero-sub-grid {
    grid-template-columns: 1fr;
  }
  .k24n-hero-sub-card {
    flex-direction: row;
  }
  .k24n-hero-sub-card__thumb {
    width: 128px;
    height: 72px;
    aspect-ratio: auto;
  }
  .k24n-block {
    padding: 18px;
  }
  .k24n-block__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .k24n-block__title {
    font-size: 18px;
  }
  .k24n-card {
    align-items: flex-start;
  }
  .k24n-card__body p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .k24n-ticker-track {
    animation: none !important;
    transform: none !important;
  }
}

/* ========================================================
   VERSION 2.8.2 - CONFINEMENT HORIZONTAL SUR MOBILE
   Empêche un contenu, un bloc Gutenberg ou un widget tiers
   d'élargir la page au-delà de la largeur de l'écran.
   ======================================================== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body,
main,
.site-header,
.topbar,
.mainnav,
.container,
.site-with-sidebar,
.site-main-column,
.site-sidebar,
.k24n-front-page,
.k24n-flash-ticker,
.k24n-hero-magazine,
.k24n-hero-layout,
.k24n-block,
.k24n-card,
.k24n-analysis-card,
.k24n-about-card,
.k24n-paper-card,
.k24n-info-box,
.inner-hero,
.inner-hero__content,
.page-content,
.entry-content,
.wp-block-post-content,
.single-featured {
  min-width: 0;
  max-width: 100%;
}

.topbar {
  overflow: hidden;
}

.topbar__inner,
.mainnav__inner,
.footer-bottom__inner,
.topbar__inner > *,
.mainnav__inner > *,
.site-with-sidebar > *,
.k24n-hero-layout > *,
.k24n-news-grid > *,
.k24n-analyses-grid > *,
.k24n-societe-layout > *,
.k24n-dossiers-row > *,
.k24n-media-grid > *,
.k24n-dual-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Contenus éditoriaux et médias ajoutés depuis WordPress. */
.page-content,
.entry-content,
.wp-block-post-content {
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.page-content p,
.page-content li,
.page-content a,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content p,
.entry-content li,
.entry-content a,
.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4,
.wp-block-post-content h5,
.wp-block-post-content h6,
.wp-block-post-content p,
.wp-block-post-content li,
.wp-block-post-content a {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-content img,
.page-content figure,
.page-content iframe,
.page-content video,
.page-content embed,
.page-content object,
.page-content svg,
.entry-content img,
.entry-content figure,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object,
.entry-content svg,
.wp-block-post-content img,
.wp-block-post-content figure,
.wp-block-post-content iframe,
.wp-block-post-content video,
.wp-block-post-content embed,
.wp-block-post-content object,
.wp-block-post-content svg,
.wp-block-image,
.wp-block-embed,
.wp-block-video,
.wp-block-cover,
.wp-block-group {
  max-width: 100%;
}

.page-content img,
.page-content video,
.entry-content img,
.entry-content video,
.wp-block-post-content img,
.wp-block-post-content video {
  height: auto;
}

.page-content figure,
.entry-content figure,
.wp-block-post-content figure {
  margin-right: 0;
  margin-left: 0;
}

.page-content pre,
.page-content code,
.entry-content pre,
.entry-content code,
.wp-block-post-content pre,
.wp-block-post-content code {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.page-content pre,
.entry-content pre,
.wp-block-post-content pre {
  overflow-x: auto;
  white-space: pre-wrap;
}

.page-content table,
.entry-content table,
.wp-block-post-content table {
  width: 100%;
  max-width: 100%;
}

.page-content .wp-block-table,
.entry-content .wp-block-table,
.wp-block-post-content .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Les extensions de traduction les plus courantes restent dans le viewport. */
.gtranslate_wrapper,
.gt_switcher_wrapper,
.gt_float_switcher,
.switcher {
  max-width: 100vw !important;
}

@media (max-width: 900px) {
  .page-content .alignwide,
  .page-content .alignfull,
  .entry-content .alignwide,
  .entry-content .alignfull,
  .wp-block-post-content .alignwide,
  .wp-block-post-content .alignfull {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1160px;
  }

  .topbar__inner {
    gap: 8px;
    overflow: hidden;
  }

  .topbar__left {
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  .mainnav__inner {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .brand__fallback,
  .brand .custom-logo-link {
    min-width: 0;
    max-width: 100%;
  }

  .custom-logo-link img,
  .brand__logo {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .primary-nav {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: calc(100% - 32px);
  }

  .page-layout,
  .content-page {
    padding-block: 30px;
  }

  .page-content,
  .entry-content,
  .wp-block-post-content {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.65;
  }

  .page-content h1,
  .entry-content h1,
  .wp-block-post-content h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .page-content h2,
  .entry-content h2,
  .wp-block-post-content h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .page-content h3,
  .entry-content h3,
  .wp-block-post-content h3 {
    font-size: clamp(20px, 5.5vw, 25px);
    line-height: 1.25;
  }

  .single-featured {
    width: 100%;
    border-radius: 14px;
  }

  .search-form {
    flex-direction: column;
    width: 100%;
  }

  .search-submit {
    width: 100%;
  }

  .k24n-block {
    width: 100%;
    padding: 16px;
  }

  .k24n-analysis-card,
  .k24n-about-card,
  .k24n-paper-card,
  .k24n-info-box {
    width: 100%;
    padding: 16px;
  }

  .k24n-card__media,
  .k24n-hero-sub-card__thumb {
    width: 112px;
    max-width: 34%;
    flex-basis: 112px;
  }

  .inner-hero__content {
    padding-block: 48px;
  }

  .inner-hero h1 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.07;
    letter-spacing: -0.045em;
  }

  .inner-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .single-article-meta {
    flex-direction: column;
    gap: 7px;
  }

  .article-author-card,
  .article-correction-note {
    padding: 18px;
  }
}
