/* =========================
   Latest News
========================= */

.fec-latest-news {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);

  padding: 78px 0 84px;
  background: linear-gradient(180deg, #f8f9fc 0%, #f3f5f9 100%);
}

.fec-latest-news__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =========================
   Header
========================= */

.fec-latest-news__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 28px;
  margin-bottom: 34px;
}

.fec-latest-news__intro {
  max-width: 760px;
}

.fec-latest-news__intro h2 {
  margin: 0 0 14px;
  color: #16245d;
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.fec-latest-news__intro p {
  margin: 0;
  max-width: 720px;
  color: rgba(23, 31, 46, 0.68);
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.fec-latest-news__actions {
  display: flex;
  justify-content: flex-end;
}

.fec-latest-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid #173aa5;
  background: transparent;
  color: #173aa5;
  text-decoration: none;
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fec-latest-news__button:hover {
  background: #173aa5;
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================
   Grid
========================= */

.fec-latest-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

/* better handling when there are fewer posts */
.fec-latest-news__grid--count-1 {
  grid-template-columns: minmax(0, 460px);
}

.fec-latest-news__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

/* =========================
   Card
========================= */

.fec-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(23, 58, 165, 0.08);
  box-shadow: 0 18px 36px rgba(9, 28, 77, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.fec-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(9, 28, 77, 0.12);
}

.fec-news-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  background: #e9eef7;
  overflow: hidden;
}

.fec-news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fec-news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 26px 24px;
}

.fec-news-card__title {
  margin: 0 0 14px;
}

.fec-news-card__title a {
  color: #1b2235;
  text-decoration: none;
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  transition: color 0.2s ease;
}

.fec-news-card__title a:hover {
  color: #173aa5;
}

.fec-news-card__excerpt {
  margin: 0 0 22px;
  color: rgba(23, 31, 46, 0.68);
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.72;
}

.fec-news-card__link {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  color: #173aa5;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-family: 'Axiforma', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.fec-news-card__link:hover {
  color: #2148ba;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .fec-latest-news__inner {
    padding: 0 20px;
  }

  .fec-latest-news__grid {
    gap: 22px;
  }

  .fec-news-card__body {
    padding: 22px 22px 20px;
  }

  .fec-news-card__title a {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .fec-latest-news__header {
    grid-template-columns: 1fr;
  }

  .fec-latest-news__actions {
    justify-content: flex-start;
  }

  .fec-latest-news__grid,
  .fec-latest-news__grid--count-2,
  .fec-latest-news__grid--count-1 {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .fec-latest-news {
    padding: 60px 0 64px;
  }

  .fec-latest-news__inner {
    padding: 0 16px;
  }

  .fec-latest-news__intro h2 {
    font-size: 38px;
  }

  .fec-latest-news__intro p {
    font-size: 15px;
  }

  .fec-latest-news__button {
    min-width: 180px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }

  .fec-news-card__body {
    padding: 20px 18px 18px;
  }

  .fec-news-card__title a {
    font-size: 22px;
  }

  .fec-news-card__excerpt {
    font-size: 14px;
  }
}
/* =========================
   News Archive
========================= */

.fec-news-archive,
.fec-news-archive * {
  box-sizing: border-box;
}

.fec-news-archive {
  background: #ffffff;
  color: #171f2e;
  overflow: hidden;
}

.fec-news-archive__inner,
.fec-news-archive__hero-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =========================
   Hero
========================= */

.fec-news-archive__hero {
  position: relative;
  background: linear-gradient(135deg, #00349b 0%, #002a7e 100%);
  padding: 86px 0 74px;
  overflow: hidden;
}

.fec-news-archive__hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.fec-news-archive__hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(0, 212, 247, 0.1);
  border-radius: 50%;
  filter: blur(8px);
}

.fec-news-archive__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
  gap: 42px;
  align-items: center;
}

.fec-news-archive__hero-copy {
  max-width: 760px;
}

.fec-news-archive__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #00d4f7;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fec-news-archive__hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
	line-height: 1.18;
   letter-spacing: -0.001em;
}

.fec-news-archive__hero p {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Baskerville", Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
}

.fec-news-archive__hero-panel {
  position: relative;
  min-height: 320px;
}

.fec-news-archive__hero-shape {
  position: absolute;
  box-sizing: border-box;
}

.fec-news-archive__hero-shape--one {
  top: 10px;
  right: 0;
  width: 220px;
  height: 220px;
  background: #00d4f7;
}

.fec-news-archive__hero-shape--two {
  bottom: 0;
  left: 30px;
  width: 180px;
  height: 180px;
  background: #00D4F7;
}

.fec-news-archive__hero-card {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: min(100%, 320px);
  padding: 28px 28px 26px;
  background: #171f2e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.fec-news-archive__hero-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.14) 0 30px, transparent 30px 100%),
    linear-gradient(to left, rgba(255, 255, 255, 0.14) 0 30px, transparent 30px 100%);
  opacity: 0.95;
  pointer-events: none;
}

.fec-news-archive__hero-card span {
  display: block;
  margin-bottom: 12px;
  color: #00d4f7;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fec-news-archive__hero-card strong {
  display: block;
  color: #ffffff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

/* =========================
   Main Body
========================= */

.fec-news-archive__body {
  padding: 56px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

/* =========================
   Featured
========================= */

.fec-news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  margin-bottom: 48px;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 24px 60px rgba(12, 29, 79, 0.1);
  overflow: hidden;
}

.fec-news-featured__media {
  display: block;
  min-height: 100%;
  background: #eaf2fb;
}

.fec-news-featured__media img,
.fec-news-featured__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.fec-news-featured__media-placeholder {
  background: linear-gradient(135deg, #00349b 0%, #00d4f7 100%);
}

.fec-news-featured__content {
  position: relative;
  padding: 48px 44px 42px;
  overflow: hidden;
}

.fec-news-featured__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96px;
  height: 96px;
  background:
    linear-gradient(to top, #00349b 0 32px, transparent 32px 100%),
    linear-gradient(to left, #00349b 0 32px, transparent 32px 100%);
  opacity: 0.12;
  pointer-events: none;
}

.fec-news-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.fec-news-featured__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: #00349b;
  color: #ffffff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-featured__date {
  color: rgba(23, 31, 46, 0.68);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fec-news-featured__title {
  margin: 0 0 18px;
}

.fec-news-featured__title a {
  color: #171f2e;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fec-news-featured__title a:hover {
  color: #00349b;
}

.fec-news-featured__excerpt {
  margin: 0 0 28px;
  max-width: 580px;
  color: rgba(23, 31, 46, 0.76);
  font-family: "Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
}

.fec-news-featured__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  padding: 0 22px;
  background: #00349b;
  border: 1px solid #00349b;
  color: #ffffff;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fec-news-featured__link:hover {
  background: #0a42b8;
  border-color: #0a42b8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   Listing Header
========================= */

.fec-news-listing__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.fec-news-listing__kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fec-news-listing__header h2 {
  margin: 0;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

/* =========================
   Grid
========================= */

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

/* =========================
   Archive Card
========================= */

.fec-news-archive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 10px 28px rgba(0, 52, 155, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fec-news-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 52, 155, 0.08);
  border-color: rgba(0, 52, 155, 0.18);
}

.fec-news-archive-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #e7eef8;
  overflow: hidden;
}

.fec-news-archive-card__image img,
.fec-news-archive-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fec-news-archive-card__placeholder {
  background: linear-gradient(135deg, rgba(0, 52, 155, 0.08) 0%, rgba(0, 212, 247, 0.08) 100%);
}

.fec-news-archive-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 24px 22px;
  min-height: 320px;
  overflow: hidden;
}

.fec-news-archive-card__step {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 125px;
    height: 84px;
    background: #e0e6f3;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 66%, 33% 66%, 33% 33%, 66% 33%, 66% 0);
    pointer-events: none;
}

.fec-news-archive-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.fec-news-archive-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: #00D4F7;
  color: #fff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-archive-card__date {
  color: rgba(23, 31, 46, 0.64);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fec-news-archive-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
}

.fec-news-archive-card__title a {
  color: #171f2e;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  transition: color 0.2s ease;
}

.fec-news-archive-card__title a:hover {
  color: #00349b;
}

.fec-news-archive-card__excerpt {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(23, 31, 46, 0.72);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.72;
}

.fec-news-archive-card__link {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  color: #00349b;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid #00d4f7;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.fec-news-archive-card__link:hover {
  color: #171f2e;
  border-color: #ff404e;
}

/* =========================
   Pagination
========================= */

.fec-news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.fec-news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin: 0 4px;
  padding: 0 14px;
  border: 1px solid rgba(0, 52, 155, 0.14);
  background: #ffffff;
  color: #171f2e;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fec-news-pagination .page-numbers.current,
.fec-news-pagination .page-numbers:hover {
  background: #00349b;
  border-color: #00349b;
  color: #ffffff;
}

/* =========================
   Empty State
========================= */

.fec-news-empty {
  padding: 64px 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  text-align: center;
}

.fec-news-empty h2 {
  margin: 0 0 14px;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.fec-news-empty p {
  margin: 0;
  color: rgba(23, 31, 46, 0.72);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1180px) {
  .fec-news-archive__hero-inner {
    grid-template-columns: 1fr;
  }

  .fec-news-archive__hero-panel {
    min-height: 260px;
  }

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

  .fec-news-featured {
    grid-template-columns: 1fr;
  }

  .fec-news-featured__media img,
  .fec-news-featured__media-placeholder {
    min-height: 340px;
  }
}

@media (max-width: 900px) {
  .fec-news-archive__hero {
    padding: 72px 0 58px;
  }

  .fec-news-archive__body {
    padding: 42px 0 72px;
  }

  .fec-news-archive__hero p {
    font-size: 19px;
  }

  .fec-news-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fec-news-featured__content {
    padding: 34px 26px 30px;
  }

  .fec-news-archive-card__body {
    padding: 22px 20px 20px;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .fec-news-archive__inner,
  .fec-news-archive__hero-inner {
    padding: 0 16px;
  }

  .fec-news-archive__hero h1 {
    font-size: 42px;
  }

  .fec-news-archive__hero p {
    font-size: 17px;
  }

  .fec-news-archive__hero-panel {
    min-height: 220px;
  }

  .fec-news-archive__hero-card {
    right: 14px;
    left: auto;
    bottom: 12px;
    width: calc(100% - 28px);
    padding: 22px 20px;
  }

  .fec-news-archive__hero-card strong {
    font-size: 22px;
  }

  .fec-news-featured__title a {
    font-size: 34px;
  }

  .fec-news-featured__excerpt {
    font-size: 19px;
  }

  .fec-news-listing__header h2 {
    font-size: 32px;
  }

  .fec-news-archive-card__title a {
    font-size: 24px;
  }

  .fec-news-archive-card__step {
    width: 72px;
    height: 72px;
    background:
      linear-gradient(to top, rgba(0, 52, 155, 0.11) 0 24px, transparent 24px 100%),
      linear-gradient(to left, rgba(0, 52, 155, 0.11) 0 24px, transparent 24px 100%);
  }

  .fec-news-pagination {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .fec-news-pagination .page-numbers {
    flex: 0 0 auto;
  }
}
/* =========================
   Single News Page
========================= */

.fec-news-single,
.fec-news-single * {
  box-sizing: border-box;
}

.fec-news-single {
  background: #ffffff;
  color: #171f2e;
}

.fec-news-single__inner,
.fec-news-single__hero-inner {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   Hero
========================= */

.fec-news-single__hero {
  position: relative;
  overflow: hidden;
}

.fec-news-single__hero.has-image {
  min-height: 720px;
  background: #171f2e;
}

.fec-news-single__hero.no-image {
  background: linear-gradient(135deg, #00349b 0%, #002a7e 100%);
  padding: 120px 0 84px;
}

.fec-news-single__hero-media {
  position: absolute;
  inset: 0;
}

.fec-news-single__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center center;
}

.fec-news-single__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 31, 46, 0.68) 0%, rgba(23, 31, 46, 0.40) 40%, rgba(23, 31, 46, 0.10) 100%),
    linear-gradient(180deg, rgba(0, 52, 155, 0.08) 0%, rgba(23, 31, 46, 0.14) 100%);
}

.fec-news-single__hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: 64px;
}

.fec-news-single__hero-content {
  width: 100%;
  max-width: 1180px;
}

.fec-news-single__back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #00d4f7;
  padding-bottom: 4px;
}

.fec-news-single__back-link:hover {
  color: #00d4f7;
}

.fec-news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fec-news-single__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: #00D4F7;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(46px, 4.6vw, 86px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 1120px;
  text-wrap: balance;
}

.fec-news-single__intro {
  margin: 0;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.90);
  font-family: "Baskerville", Georgia, serif;
  font-size: 26px;
  line-height: 1.55;
}

/* =========================
   Body Layout
========================= */

.fec-news-single__body {
  padding: 56px 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.fec-news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.fec-news-single__article {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 16px 40px rgba(0, 52, 155, 0.05);
}

.fec-news-single__article-head {
  padding: 28px 34px 0;
}

.fec-news-single__author {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 52, 155, 0.08);
}

.fec-news-single__author-label {
  display: block;
  margin-bottom: 6px;
  color: #4d5b73;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__author strong {
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.fec-news-single__content {
  padding: 34px;
  color: #171f2e;
  font-family: "Baskerville", Georgia, serif;
  font-size: 20px;
  line-height: 1.82;
}

.fec-news-single__content > *:first-child {
  margin-top: 0;
}

.fec-news-single__content > *:last-child {
  margin-bottom: 0;
}

.fec-news-single__content p {
  margin: 0 0 1.4em;
}

.fec-news-single__content h2,
.fec-news-single__content h3,
.fec-news-single__content h4 {
  margin: 1.5em 0 0.55em;
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.fec-news-single__content h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.fec-news-single__content h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.fec-news-single__content h4 {
  font-size: 24px;
}

.fec-news-single__content ul,
.fec-news-single__content ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}

.fec-news-single__content li {
  margin-bottom: 0.5em;
}

.fec-news-single__content a {
  color: #00349b;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.fec-news-single__content strong {
  font-family: "Axiforma", Arial, sans-serif;
  font-weight: 600;
}

.fec-news-single__content blockquote {
  margin: 2em 0;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid #00d4f7;
  background: #f8fbff;
  color: #00349b;
  font-family: "Baskerville", Georgia, serif;
  font-size: 26px;
  line-height: 1.45;
}

/* =========================
   Aside
========================= */

.fec-news-single__aside {
  display: grid;
  gap: 20px;
}

.fec-news-single__panel {
  position: sticky;
  top: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 14px 32px rgba(0, 52, 155, 0.05);
}

.fec-news-single__aside .fec-news-single__panel + .fec-news-single__panel {
  position: static;
}

.fec-news-single__panel-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fec-news-single__details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.fec-news-single__details li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fec-news-single__details span {
  color: #4d5b73;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__details strong {
  color: #171f2e;
  font-family: "Baskerville", Georgia, serif;
  font-size: 18px;
  line-height: 1.5;
}

.fec-news-single__panel--cta {
  background: linear-gradient(135deg, #00349b 0%, #002a7e 100%);
  color: #ffffff;
  overflow: hidden;
}

.fec-news-single__panel--cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 84px;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.15) 0 28px, transparent 28px 100%),
    linear-gradient(to left, rgba(255, 255, 255, 0.15) 0 28px, transparent 28px 100%);
  pointer-events: none;
}

.fec-news-single__panel--cta .fec-news-single__panel-eyebrow,
.fec-news-single__panel--cta h2 {
  color: #ffffff;
}

.fec-news-single__panel--cta h2 {
  margin: 0 0 18px;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.fec-news-single__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #00349b;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fec-news-single__button:hover {
  background: #00d4f7;
  border-color: #00d4f7;
  color: #171f2e;
  transform: translateY(-2px);
}

/* =========================
   Related
========================= */

.fec-news-single__related {
  margin-top: 56px;
}

.fec-news-single__section-heading {
  margin-bottom: 24px;
}

.fec-news-single__section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff404e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fec-news-single__section-heading h2 {
  margin: 0;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fec-news-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fec-news-related-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 10px 28px rgba(0, 52, 155, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fec-news-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 52, 155, 0.08);
  border-color: rgba(0, 52, 155, 0.18);
}

.fec-news-related-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eaf2fb;
  overflow: hidden;
}

.fec-news-related-card__image img,
.fec-news-related-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fec-news-related-card__placeholder {
  background: linear-gradient(135deg, rgba(0, 52, 155, 0.08) 0%, rgba(0, 212, 247, 0.08) 100%);
}

.fec-news-related-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
  min-height: 260px;
  overflow: hidden;
}

.fec-news-related-card__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  background: #00D4F7;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-related-card__title {
  margin: 0 0 12px;
}

.fec-news-related-card__title a {
  color: #171f2e;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fec-news-related-card__title a:hover {
  color: #00349b;
}

.fec-news-related-card__excerpt {
  margin: 0 0 20px;
  color: rgba(23, 31, 46, 0.72);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.72;
}

.fec-news-related-card__link {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  color: #00349b;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid #00d4f7;
  padding-bottom: 4px;
}

.fec-news-related-card__link:hover {
  color: #171f2e;
  border-color: #ff404e;
}

.fec-news-related-card__step {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 84px;
  background: #dfe8f8;
  clip-path: polygon(
    100% 0,
    100% 100%,
    0 100%,
    0 66%,
    33% 66%,
    33% 33%,
    66% 33%,
    66% 0
  );
  pointer-events: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1180px) {
  .fec-news-single__layout {
    grid-template-columns: 1fr;
  }

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

  .fec-news-single__panel {
    position: static;
  }

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

@media (max-width: 900px) {
  .fec-news-single__hero.has-image,
  .fec-news-single__hero-media img,
  .fec-news-single__hero-inner {
    min-height: 540px;
  }

  .fec-news-single__intro {
    font-size: 21px;
  }

  .fec-news-single__content {
    padding: 28px 24px;
    font-size: 18px;
  }

  .fec-news-single__related-grid,
  .fec-news-single__aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .fec-news-single__inner,
  .fec-news-single__hero-inner {
    padding: 0 16px;
  }

  .fec-news-single__hero.has-image,
  .fec-news-single__hero-media img,
  .fec-news-single__hero-inner {
    min-height: 460px;
  }

  .fec-news-single__hero.no-image {
    padding: 96px 0 64px;
  }

  .fec-news-single__hero-inner {
    padding-bottom: 34px;
  }

  .fec-news-single__title {
    font-size: 42px;
  }

  .fec-news-single__intro {
    font-size: 18px;
  }

  .fec-news-single__body {
    padding: 34px 0 64px;
  }

  .fec-news-single__article-head {
    padding: 22px 20px 0;
  }

  .fec-news-single__content {
    padding: 22px 20px;
    font-size: 17px;
  }

  .fec-news-single__content blockquote {
    padding: 18px 18px 18px 20px;
    font-size: 22px;
  }

  .fec-news-single__panel {
    padding: 20px;
  }

  .fec-news-related-card__body {
    min-height: 0;
    padding: 20px;
  }

  .fec-news-related-card__title a {
    font-size: 24px;
  }

  .fec-news-related-card__step {
    width: 72px;
    height: 72px;
  }
}
/* =========================
   Single News Page
========================= */

.fec-news-single,
.fec-news-single * {
  box-sizing: border-box;
}

.fec-news-single {
  background: #ffffff;
  color: #171f2e;
}

.fec-news-single__inner,
.fec-news-single__hero-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================
   Hero
========================= */

.fec-news-single__hero {
  position: relative;
  overflow: hidden;
  background: #171f2e;
}

.fec-news-single__hero.has-image {
  background: #171f2e;
}

.fec-news-single__hero.no-image {
  background: linear-gradient(135deg, #00349b 0%, #002a7e 100%);
  padding: 148px 0 104px;
}

.fec-news-single__hero-media {
  position: relative;
  width: 100%;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  background: #171f2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fec-news-single__hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}

.fec-news-single__hero.has-image .fec-news-single__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 31, 46, 0.82) 0%, rgba(23, 31, 46, 0.56) 42%, rgba(23, 31, 46, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 52, 155, 0.10) 0%, rgba(23, 31, 46, 0.18) 100%);
}

.fec-news-single__hero.has-image .fec-news-single__hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-top: 180px;
  padding-bottom: 74px;
}

.fec-news-single__hero.no-image .fec-news-single__hero-inner {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: flex;
  align-items: flex-end;
}

.fec-news-single__hero-content {
  width: 100%;
}

.fec-news-single__back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #00d4f7;
  padding-bottom: 5px;
}

.fec-news-single__back-link:hover {
  color: #00d4f7;
}

.fec-news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fec-news-single__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: #00D4F7;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.07em;
  max-width: 980px;
}

.fec-news-single__intro {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.90);
  font-family: "Baskerville", Georgia, serif;
  font-size: 28px;
  line-height: 1.5;
}

/* =========================
   Body Layout
========================= */

.fec-news-single__body {
  padding: 72px 0 104px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.fec-news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(300px, 360px);
  gap: 40px;
  align-items: start;
  justify-content: space-between;
}

.fec-news-single__article {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 18px 42px rgba(0, 52, 155, 0.05);
}

.fec-news-single__article-head {
  padding: 34px 42px 0;
}

.fec-news-single__author {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 52, 155, 0.08);
}

.fec-news-single__author-label {
  display: block;
  margin-bottom: 8px;
  color: #4d5b73;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__author strong {
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.fec-news-single__content {
  padding: 42px;
  color: #171f2e;
  font-family: "Baskerville", Georgia, serif;
  font-size: 23px;
  line-height: 1.9;
}

.fec-news-single__content > *:first-child {
  margin-top: 0;
}

.fec-news-single__content > *:last-child {
  margin-bottom: 0;
}

.fec-news-single__content p {
  margin: 0 0 1.55em;
}

.fec-news-single__content h2,
.fec-news-single__content h3,
.fec-news-single__content h4 {
  margin: 1.65em 0 0.6em;
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.fec-news-single__content h2 {
  font-size: clamp(34px, 3vw, 46px);
}

.fec-news-single__content h3 {
  font-size: clamp(28px, 2.3vw, 36px);
}

.fec-news-single__content h4 {
  font-size: 26px;
}

.fec-news-single__content ul,
.fec-news-single__content ol {
  margin: 0 0 1.55em;
  padding-left: 1.45em;
}

.fec-news-single__content li {
  margin-bottom: 0.55em;
}

.fec-news-single__content a {
  color: #00349b;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.fec-news-single__content strong {
  font-family: "Axiforma", Arial, sans-serif;
  font-weight: 600;
}

.fec-news-single__content blockquote {
  margin: 2.2em 0;
  padding: 28px 28px 28px 32px;
  border-left: 4px solid #00d4f7;
  background: #f8fbff;
  color: #00349b;
  font-family: "Baskerville", Georgia, serif;
  font-size: 30px;
  line-height: 1.42;
}

/* =========================
   Aside
========================= */

.fec-news-single__aside {
  display: grid;
  gap: 22px;
}

.fec-news-single__panel {
  position: sticky;
  top: 24px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 14px 32px rgba(0, 52, 155, 0.05);
}

.fec-news-single__aside .fec-news-single__panel + .fec-news-single__panel {
  position: static;
}

.fec-news-single__panel-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #00349b;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fec-news-single__details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.fec-news-single__details li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fec-news-single__details span {
  color: #4d5b73;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-single__details strong {
  color: #171f2e;
  font-family: "Baskerville", Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
}

.fec-news-single__panel--cta {
  background: linear-gradient(135deg, #00349b 0%, #002a7e 100%);
  color: #ffffff;
  overflow: hidden;
}

.fec-news-single__panel--cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 84px;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.15) 0 28px, transparent 28px 100%),
    linear-gradient(to left, rgba(255, 255, 255, 0.15) 0 28px, transparent 28px 100%);
  pointer-events: none;
}

.fec-news-single__panel--cta .fec-news-single__panel-eyebrow,
.fec-news-single__panel--cta h2 {
  color: #ffffff;
}

.fec-news-single__panel--cta h2 {
  margin: 0 0 22px;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.fec-news-single__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #00349b;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fec-news-single__button:hover {
  background: #00d4f7;
  border-color: #00d4f7;
  color: #171f2e;
  transform: translateY(-2px);
}

/* =========================
   Related
========================= */

.fec-news-single__related {
  margin-top: 72px;
}

.fec-news-single__section-heading {
  margin-bottom: 28px;
}

.fec-news-single__section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff404e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fec-news-single__section-heading h2 {
  margin: 0;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(34px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fec-news-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fec-news-related-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 10px 28px rgba(0, 52, 155, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fec-news-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 52, 155, 0.08);
  border-color: rgba(0, 52, 155, 0.18);
}

.fec-news-related-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eaf2fb;
  overflow: hidden;
}

.fec-news-related-card__image img,
.fec-news-related-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fec-news-related-card__placeholder {
  background: linear-gradient(135deg, rgba(0, 52, 155, 0.08) 0%, rgba(0, 212, 247, 0.08) 100%);
}

.fec-news-related-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  min-height: 290px;
  overflow: hidden;
}

.fec-news-related-card__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  background: #00D4F7;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fec-news-related-card__title {
  margin: 0 0 12px;
}

.fec-news-related-card__title a {
  color: #171f2e;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fec-news-related-card__title a:hover {
  color: #00349b;
}

.fec-news-related-card__excerpt {
  margin: 0 0 20px;
  color: rgba(23, 31, 46, 0.72);
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.72;
}

.fec-news-related-card__link {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  color: #00349b;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid #00d4f7;
  padding-bottom: 4px;
}

.fec-news-related-card__link:hover {
  color: #171f2e;
  border-color: #ff404e;
}

.fec-news-related-card__step {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 84px;
  background: #dfe8f8;
  clip-path: polygon(
    100% 0,
    100% 100%,
    0 100%,
    0 66%,
    33% 66%,
    33% 33%,
    66% 33%,
    66% 0
  );
  pointer-events: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1280px) {
  .fec-news-single__layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
  }
}

@media (max-width: 1180px) {
  .fec-news-single__layout {
    grid-template-columns: 1fr;
  }

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

  .fec-news-single__panel {
    position: static;
  }

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

@media (max-width: 900px) {
  .fec-news-single__inner,
  .fec-news-single__hero-inner {
    padding: 0 24px;
  }

  .fec-news-single__hero-media {
    min-height: 420px;
    max-height: 600px;
  }

  .fec-news-single__hero-media img {
    max-height: 600px;
    object-position: center top;
  }

  .fec-news-single__hero.has-image .fec-news-single__hero-inner {
    padding-top: 140px;
    padding-bottom: 46px;
  }

  .fec-news-single__hero-content {
    max-width: 100%;
  }

  .fec-news-single__title {
    max-width: 100%;
    font-size: clamp(38px, 7vw, 64px);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .fec-news-single__intro {
    max-width: 100%;
    font-size: 21px;
  }

  .fec-news-single__content {
    padding: 30px 26px;
    font-size: 19px;
  }

  .fec-news-single__related-grid,
  .fec-news-single__aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .fec-news-single__inner,
  .fec-news-single__hero-inner {
    padding: 0 16px;
  }

  .fec-news-single__hero-media {
    min-height: 320px;
    max-height: 500px;
  }

  .fec-news-single__hero-media img {
    max-height: 500px;
    object-position: center top;
  }

  .fec-news-single__hero.no-image {
    padding: 110px 0 72px;
  }

  .fec-news-single__hero.has-image .fec-news-single__hero-inner {
    padding-top: 128px;
    padding-bottom: 28px;
  }

  .fec-news-single__back-link {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .fec-news-single__meta {
    gap: 10px 14px;
    margin-bottom: 16px;
    font-size: 11px;
  }

  .fec-news-single__pill {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .fec-news-single__title {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .fec-news-single__intro {
    font-size: 18px;
  }

  .fec-news-single__body {
    padding: 34px 0 64px;
  }

  .fec-news-single__content {
    padding: 24px 20px;
    font-size: 17px;
    line-height: 1.78;
  }

  .fec-news-single__content blockquote {
    padding: 18px 18px 18px 20px;
    font-size: 22px;
  }

  .fec-news-single__panel {
    padding: 20px;
  }

  .fec-news-related-card__body {
    min-height: 0;
    padding: 20px;
  }

  .fec-news-related-card__title a {
    font-size: 24px;
  }

  .fec-news-related-card__step {
    width: 72px;
    height: 72px;
  }
}
/* =========================
   Latest News - Archive Style
========================= */

.fec-latest-news--archive-style {
  position: relative;
  width: 100%;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.fec-latest-news--archive-style .fec-latest-news__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.fec-latest-news__header--archive-style {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.fec-latest-news__header--archive-style .fec-latest-news__intro {
  max-width: 760px;
}

.fec-latest-news__kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fec-latest-news__header--archive-style h2 {
  margin: 0 0 12px;
  color: #171f2e;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fec-latest-news__header--archive-style p {
  margin: 0;
  max-width: 760px;
  color: rgba(23, 31, 46, 0.72);
  font-family: "Baskerville", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}

.fec-latest-news--archive-style .fec-latest-news__actions {
  display: flex;
  justify-content: flex-end;
}

.fec-latest-news--archive-style .fec-latest-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 50px;
  padding: 0 20px;
  background: #00349b;
  border: 1px solid #00349b;
  color: #ffffff;
  text-decoration: none;
  font-family: "Axiforma", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fec-latest-news--archive-style .fec-latest-news__button:hover {
  background: #0a42b8;
  border-color: #0a42b8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   Grid
========================= */

.fec-news-grid--latest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.fec-news-grid--latest.fec-news-grid--count-1 {
  grid-template-columns: minmax(0, 420px);
}

.fec-news-grid--latest.fec-news-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

/* =========================
   Card image fix
========================= */

.fec-latest-news--archive-style .fec-news-archive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 155, 0.1);
  box-shadow: 0 10px 28px rgba(0, 52, 155, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fec-latest-news--archive-style .fec-news-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 52, 155, 0.08);
  border-color: rgba(0, 52, 155, 0.18);
}

.fec-latest-news--archive-style .fec-news-archive-card__image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  background: #e7eef8;
  overflow: hidden !important;
}

.fec-latest-news--archive-style .fec-news-archive-card__image img,
.fec-latest-news--archive-style .fec-news-archive-card__placeholder {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.fec-latest-news--archive-style .fec-news-archive-card__image img {
  max-width: none !important;
}

.fec-news-archive-card--latest .fec-news-archive-card__body {
  min-height: 290px;
}

.fec-news-archive-card--latest .fec-news-archive-card__title a {
  font-size: clamp(24px, 2vw, 30px);
}

.fec-news-archive-card--latest .fec-news-archive-card__excerpt {
  font-size: 14px;
  line-height: 1.72;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .fec-latest-news__header--archive-style {
    flex-direction: column;
    align-items: flex-start;
  }

  .fec-latest-news--archive-style .fec-latest-news__actions {
    justify-content: flex-start;
  }

  .fec-news-grid--latest,
  .fec-news-grid--latest.fec-news-grid--count-2,
  .fec-news-grid--latest.fec-news-grid--count-1 {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .fec-latest-news--archive-style {
    padding: 46px 0 56px;
  }

  .fec-latest-news--archive-style .fec-latest-news__inner {
    padding: 0 16px;
  }

  .fec-latest-news__header--archive-style h2 {
    font-size: 32px;
  }

  .fec-latest-news__header--archive-style p {
    font-size: 16px;
  }

  .fec-latest-news--archive-style .fec-latest-news__button {
    min-width: 160px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .fec-news-archive-card--latest .fec-news-archive-card__body {
    min-height: 0;
  }
}