/* =========================
   EN BREF PAGE
========================= */
.bw-page-en-bref {
  background: #ffffff;
}

.eb-main {
  background: #ffffff;
}

/* =========================
   HERO SLIDER FULL WIDTH
========================= */
.eb-hero {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.eb-slider {
  position: relative;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-bottom-left-radius: 92px;
  border-bottom-right-radius: 92px;
  background: #1d2940;
}

.eb-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.eb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.eb-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.eb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eb-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(31, 38, 98, 0.1) 38%,
    rgba(31, 38, 98, 0.86) 100%
  );
}

.eb-slide-content {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 62px;
  z-index: 2;
  width: min(100% - 96px, 1280px);
  transform: translateX(-50%);
}

.eb-slide-content h1 {
  width: min(100%, 820px);
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* =========================
   DOTS
========================= */
.eb-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.eb-slider-dots button {
  width: 42px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.eb-slider-dots button.is-active {
  width: 48px;
  background: #16d0c5;
  border-color: #16d0c5;
}

/* =========================
   CONTENT
========================= */
.eb-content {
  padding: 34px 0 70px;
  background: #ffffff;
}

.eb-container {
  width: min(100% - 96px, 1120px);
  margin: 0 auto;
}

.eb-intro {
  color: #111111;
}

.eb-intro p {
  margin: 0 0 20px;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 800;
  text-align: justify;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .eb-slider {
    width: 100%;
    height: 62vh;
    min-height: 460px;
    border-bottom-left-radius: 62px;
    border-bottom-right-radius: 62px;
  }

  .eb-slide-content {
    width: min(100% - 48px, 100%);
    bottom: 58px;
  }

  .eb-slide-content h1 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .eb-container {
    width: min(100% - 48px, 100%);
  }

  .eb-intro p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .eb-slider {
    width: 100%;
    height: 62vh;
    min-height: 430px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  .eb-slide-content {
    width: min(100% - 28px, 100%);
    bottom: 58px;
  }

  .eb-slide-content h1 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -0.6px;
  }

  .eb-slider-dots {
    bottom: 24px;
  }

  .eb-slider-dots button {
    width: 30px;
    height: 8px;
  }

  .eb-slider-dots button.is-active {
    width: 36px;
  }

  .eb-content {
    padding: 28px 0 54px;
  }

  .eb-container {
    width: min(100% - 28px, 100%);
  }

  .eb-intro p {
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
    font-weight: 700;
  }
}

/* =========================
   Z PATTERN BLOCKS
========================= */
/* =========================
   Z PATTERN BLOCKS
========================= */
.eb-zblock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 86px;
}

.eb-zblock-reverse .eb-zblock-image {
  order: 2;
}

.eb-zblock-reverse .eb-zblock-text {
  order: 1;
}

/*.eb-zblock-image {
  width: 100%;
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}*/

.eb-zblock-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 34px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.eb-zblock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eb-zblock-text h2 {
  margin: 0 0 26px;
  color: #111111;

  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;

  font-weight: 700;
  letter-spacing: -0.6px;
}

.eb-zblock-text p {
  margin: 0 0 20px;

  color: #2a2a2a;

  font-size: 18px;
  line-height: 1.9;

  font-weight: 400;
}

.eb-zblock-text p:last-child {
  margin-bottom: 0;
}

.eb-zblock-text {
  max-width: 92%;
}

/* =========================
   RESPONSIVE Z PATTERN
========================= */
@media (max-width: 991px) {
  .eb-zblock {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 62px;
  }

  .eb-zblock-reverse .eb-zblock-image,
  .eb-zblock-reverse .eb-zblock-text {
    order: initial;
  }

  .eb-zblock-image {
    min-height: 300px;
    border-radius: 26px;
  }

  .eb-zblock-text h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .eb-zblock-text p {
    font-size: 15.5px;
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  .eb-zblock {
    gap: 24px;
    margin-bottom: 50px;
  }

  .eb-zblock-image {
    min-height: 230px;
    border-radius: 22px;
  }

  .eb-zblock-text h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .eb-zblock-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =========================
   PILLARS
========================= */
.eb-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 70px 0;
}

.eb-pillar-item {
  text-align: center;
}

.eb-pillar-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.eb-pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eb-pillar-item p {
  margin: 0;
  color: #f16462;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

/* =========================
   FINAL TEXT
========================= */
.eb-final {
  padding-top: 20px;
}

.eb-final h2 {
  margin: 0 0 20px;
  color: #111111;
  font-size: 42px;
  font-weight: 900;
}

.eb-final p {
  margin: 0 0 18px;
  color: #111111;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .eb-zblock,
  .eb-zblock-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .eb-zblock-image {
    height: 240px;
  }

  .eb-zblock-text h2 {
    font-size: 30px;
  }

  .eb-zblock-text p {
    font-size: 18px;
  }

  .eb-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .eb-pillar-icon {
    width: 100px;
    height: 100px;
  }

  .eb-final h2 {
    font-size: 34px;
  }

  .eb-final p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .eb-zblock {
    margin-bottom: 42px;
  }

  .eb-zblock-image {
    height: 210px;
    border-radius: 22px;
  }

  .eb-zblock-text h2 {
    font-size: 26px;
  }

  .eb-zblock-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .eb-pillars {
    grid-template-columns: 1fr;
    gap: 42px;
    margin: 56px 0;
  }

  .eb-pillar-icon {
    width: 92px;
    height: 92px;
  }

  .eb-pillar-item p {
    font-size: 16px;
  }

  .eb-final h2 {
    font-size: 28px;
  }

  .eb-final p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* =========================
   ARTICLE TEMPLATE
========================= */
.article-section {
  background: #ffffff;
  padding: 54px 0 82px;
}

.article-container {
  width: min(100% - 96px, 980px);
  margin: 0 auto;
}

.article-content {
  background: #ffffff;
  color: #1d1d1d;
}

.article-kicker {
  margin: 0 0 14px;
  color: #f16462;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content h1 {
  margin: 0 0 26px;
  color: #111111;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -1.2px;
}

.article-lead {
  margin: 0 0 34px;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
}

.article-content h2 {
  margin: 46px 0 18px;
  color: #111111;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: -0.5px;
}

.article-content p {
  margin: 0 0 20px;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 400;
}

.article-content ul {
  margin: 8px 0 28px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 13px;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.article-content strong {
  font-weight: 700;
  color: #111111;
}

.article-actions {
  margin-top: 52px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #243f98;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.article-back-link:hover {
  transform: translateY(-2px);
  background: #1d2940;
}

@media (max-width: 991px) {
  .article-container {
    width: min(100% - 48px, 100%);
  }

  .article-section {
    padding: 44px 0 68px;
  }

  .article-lead {
    font-size: 20px;
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .article-container {
    width: min(100% - 28px, 100%);
  }

  .article-section {
    padding: 34px 0 56px;
  }

  .article-content h1 {
    font-size: 31px;
  }

  .article-lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
    line-height: 1.75;
  }
}

.article-breadcrumb-hero {
  background: #243f98;
  padding: 62px 0 72px;
  color: #ffffff;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.article-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.article-breadcrumb strong {
  color: #16d0c5;
  font-weight: 800;
}

.article-breadcrumb-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
}
