.ec-article-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080d28;
  color: #ffffff;
}

.ec-article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ec-article-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(.08);
}

.ec-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 13, 40, .96) 0%, rgba(8, 13, 40, .76) 46%, rgba(8, 13, 40, .32) 100%),
    linear-gradient(180deg, rgba(8, 13, 40, .22) 0%, rgba(8, 13, 40, .96) 100%);
}

.ec-article-hero__container,
.ec-article-main__container,
.ec-article-cta__container {
  width: min(100% - var(--ec-container-offset) * 2, var(--ec-container));
  margin-left: auto;
  margin-right: auto;
}

.ec-article-hero__container {
  position: relative;
  z-index: 3;
  padding: 42px 0 78px;
}

.ec-article-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.2;
}

.ec-article-breadcrumbs a {
  color: rgba(255, 255, 255, .72);
  transition: .25s ease;
}

.ec-article-breadcrumbs a:hover {
  color: #f26a21;
}

.ec-article-breadcrumbs span {
  color: #ffffff;
}

.ec-article-breadcrumbs a::after {
  content: "/";
  margin-left: 11px;
  color: rgba(255, 255, 255, .35);
}

.ec-article-hero__content {
  max-width: 1120px;
}

.ec-article-hero__eyebrow,
.ec-article-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #f26a21;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec-article-hero__eyebrow::after,
.ec-article-cta__label::after {
  content: "";
  width: 72px;
  height: 1px;
  background: #f26a21;
}

.ec-article-date {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ec-article-hero__title {
  max-width: 1080px;
  margin: 0;
  color: #ffffff;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.ec-article-main {
  padding: 82px 0 44px;
  background: #ffffff;
  color: #080d28;
}

.ec-article-main__grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.ec-article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.ec-article-sidebar__box {
  padding: 24px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
}

.ec-article-sidebar__label {
  margin-bottom: 12px;
  color: #f26a21;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec-article-sidebar__category,
.ec-article-sidebar__date {
  color: #080d28;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.ec-article-sidebar__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid #080d28;
  background: #080d28;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  transition: .25s ease;
}

.ec-article-sidebar__back:hover {
  border-color: #f26a21;
  background: #f26a21;
  color: #ffffff;
}

.ec-article-content {
  max-width: 980px;
}

.ec-article-content p {
  margin: 0 0 24px;
  color: #4f586b;
  font-size: 17px;
  line-height: 1.78;
}

.ec-article-content .ec-article-lead {
  position: relative;
  margin-bottom: 32px;
  padding: 34px 38px;
  background: #080d28;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.62;
}

.ec-article-content .ec-article-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 3px;
  background: #f26a21;
}

.ec-article-image {
  margin: 42px 0;
  overflow: hidden;
  background: #080d28;
}

.ec-article-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ec-article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.ec-article-nav__item {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
  color: #080d28;
  overflow: hidden;
  transition: .25s ease;
}

.ec-article-nav__item::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(242, 106, 33, .18);
  border-radius: 50%;
}

.ec-article-nav__item span {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #f26a21;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec-article-nav__item strong {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: inherit;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.ec-article-nav__item--next {
  text-align: right;
  align-items: flex-end;
}

.ec-article-nav__item:hover {
  border-color: #080d28;
  background: #080d28;
  color: #ffffff;
}

.ec-article-cta {
  padding: 44px 0 88px;
  background: #ffffff;
}

.ec-article-cta__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 42px 46px;
  background:
    linear-gradient(90deg, rgba(8, 13, 40, .94), rgba(8, 13, 40, .84)),
    url("../img/img_20251113_094458643_hdr_ae.jpg.webp") center / cover no-repeat;
  color: #ffffff;
}

.ec-article-cta__title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.ec-article-cta__text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}

.ec-article-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid #f26a21;
  background: #f26a21;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: .25s ease;
}

.ec-article-cta__btn:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 991px) {
  .ec-article-hero {
    min-height: 520px;
  }

  .ec-article-hero__container {
    padding: 34px 0 58px;
  }

  .ec-article-hero__title {
    font-size: 38px;
  }

  .ec-article-main {
    padding: 58px 0 34px;
  }

  .ec-article-main__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ec-article-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ec-article-content {
    max-width: 100%;
  }

  .ec-article-nav {
    margin-top: 44px;
  }

  .ec-article-cta {
    padding: 34px 0 58px;
  }

  .ec-article-cta__container {
    grid-template-columns: 1fr;
  }

  .ec-article-cta__btn {
    width: fit-content;
  }
}

@media (max-width: 575px) {
  .ec-article-hero {
    min-height: 460px;
  }

  .ec-article-breadcrumbs {
    margin-bottom: 34px;
    font-size: 12px;
  }

  .ec-article-hero__title {
    font-size: 28px;
  }

  .ec-article-main {
    padding: 44px 0 28px;
  }

  .ec-article-sidebar {
    grid-template-columns: 1fr;
  }

  .ec-article-sidebar__box {
    padding: 20px;
  }

  .ec-article-content p {
    font-size: 15px;
  }

  .ec-article-content .ec-article-lead {
    padding: 28px 22px;
    font-size: 17px;
  }

  .ec-article-image {
    margin: 32px 0;
  }

  .ec-article-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ec-article-nav__item {
    min-height: 130px;
    padding: 24px 22px;
  }

  .ec-article-nav__item--next {
    text-align: left;
    align-items: flex-start;
  }

  .ec-article-nav__item strong {
    font-size: 18px;
  }

  .ec-article-cta {
    padding: 28px 0 44px;
  }

  .ec-article-cta__container {
    padding: 30px 22px;
  }

  .ec-article-cta__title {
    font-size: 22px;
  }

  .ec-article-cta__btn {
    width: 100%;
  }
}

.ec-article-content .ec-article-lead, .ec-article-content blockquote {
    position: relative;
    margin-bottom: 32px;
    padding: 34px 38px;
    background: #080d28;
    color: rgba(255, 255, 255, .84);
    font-size: 20px;
    line-height: 1.62;
    display: block;
}

.ec-article-content .ec-article-lead::before, .ec-article-content blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    width: 3px;
    background: #f26a21;
}

.ec-article-content blockquote p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.ec-article-content img{
    width: 100%;
    height: auto;
}