.gb-articles-clean-eea8b711 {
    --gb-primary-eea8b711: var(--e-global-color-primary, #123c8c);
    --gb-secondary-eea8b711: var(--e-global-color-secondary, #0f172a);
    --gb-accent-eea8b711: var(--e-global-color-accent, #d92332);
    --gb-text-eea8b711: var(--e-global-color-text, #1f2933);
    --gb-muted-eea8b711: #6b7280;
    --gb-border-eea8b711: rgba(15, 23, 42, 0.10);
    --gb-card-radius-eea8b711: 24px;
    --gb-ease-eea8b711: cubic-bezier(.22, 1, .36, 1);

    position: relative;
    width: 100%;
    background: #ffffff;
    color: var(--gb-text-eea8b711);
    padding: clamp(42px, 6vw, 82px) 0;
    overflow: hidden;
}

.gb-articles-inner-eea8b711 {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gb-articles-heading-eea8b711 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(22px, 3vw, 36px);
}

.gb-section-label-eea8b711 {
    margin: 0 0 10px;
    color: var(--gb-accent-eea8b711);
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gb-articles-heading-eea8b711 h2 {
    margin: 0;
    color: var(--gb-secondary-eea8b711);
    font-size: clamp(32px, 4.8vw, 58px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.gb-carousel-shell-eea8b711 {
    position: relative;
    width: 100%;
}

.gb-articles-rail-eea8b711 {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 4px max(20px, calc((100vw - 1180px) / 2)) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: max(20px, calc((100vw - 1180px) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gb-articles-rail-eea8b711::-webkit-scrollbar {
    display: none;
}

.gb-article-item-eea8b711 {
    flex: 0 0 clamp(236px, 23vw, 315px);
    scroll-snap-align: start;
}

.gb-article-card-eea8b711 {
    position: relative;
    display: block;
    aspect-ratio: 9 / 15;
    overflow: hidden;
    border-radius: var(--gb-card-radius-eea8b711);
    background: var(--gb-secondary-eea8b711);
    color: #ffffff;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    transform: translateZ(0);
}

.gb-article-card-eea8b711 img,
.gb-article-fallback-eea8b711 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition:
      transform .65s var(--gb-ease-eea8b711),
      filter .65s var(--gb-ease-eea8b711);
}

.gb-article-fallback-eea8b711 {
    background:
      linear-gradient(145deg, var(--gb-primary-eea8b711), var(--gb-secondary-eea8b711));
}

.gb-article-card-eea8b711::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .26;
    background:
      radial-gradient(
        ellipse at bottom left,
        var(--gb-accent-eea8b711) 0%,
        transparent 58%
      );
    mix-blend-mode: screen;
    transition: opacity .55s var(--gb-ease-eea8b711);
}

.gb-article-card-eea8b711::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(
        to top,
        rgba(8, 13, 28, .98) 0%,
        rgba(8, 13, 28, .90) 20%,
        rgba(8, 13, 28, .54) 48%,
        rgba(8, 13, 28, .04) 80%
      );
}

.gb-article-content-eea8b711 {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 3;
    padding: clamp(17px, 2vw, 22px);
    transform: translateY(8px);
    transition: transform .55s var(--gb-ease-eea8b711);
}

.gb-article-date-eea8b711 {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    opacity: .86;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.gb-article-title-eea8b711 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: clamp(20px, 1.85vw, 26px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.022em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.gb-article-read-eea8b711 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: #ffffff;
    font-size: clamp(13px, 1.25vw, 15px);
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity .35s var(--gb-ease-eea8b711),
      transform .35s var(--gb-ease-eea8b711);
}

.gb-article-read-eea8b711 svg,
.gb-article-read-eea8b711 i {
    width: 14px;
    height: 14px;
    fill: currentColor;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.gb-article-line-eea8b711 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 3px;
    background: var(--gb-accent-eea8b711);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--gb-ease-eea8b711);
}

.gb-article-card-eea8b711:hover img {
    transform: scale(1.075);
    filter: brightness(.76) saturate(1.05);
}

.gb-article-card-eea8b711:hover::before {
    opacity: .42;
}

.gb-article-card-eea8b711:hover .gb-article-content-eea8b711 {
    transform: translateY(0);
}

.gb-article-card-eea8b711:hover .gb-article-read-eea8b711 {
    opacity: 1;
    transform: translateY(0);
}

.gb-article-card-eea8b711:hover .gb-article-read-eea8b711 svg,
.gb-article-card-eea8b711:hover .gb-article-read-eea8b711 i {
    transform: translateX(3px);
}

.gb-article-card-eea8b711:hover .gb-article-line-eea8b711 {
    transform: scaleX(1);
}

.gb-carousel-arrow-eea8b711 {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gb-border-eea8b711);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--gb-secondary-eea8b711);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
      transform .25s var(--gb-ease-eea8b711),
      color .25s var(--gb-ease-eea8b711),
      background-color .25s var(--gb-ease-eea8b711),
      border-color .25s var(--gb-ease-eea8b711),
      box-shadow .25s var(--gb-ease-eea8b711);
}

.gb-carousel-prev-eea8b711 {
    left: max(10px, calc((100vw - 1240px) / 2));
}

.gb-carousel-next-eea8b711 {
    right: max(10px, calc((100vw - 1240px) / 2));
}

.gb-articles-loading-eea8b711,
.gb-articles-error-eea8b711 {
    flex: 0 0 auto;
    padding: 16px 20px;
    border: 1px solid var(--gb-border-eea8b711);
    border-radius: 18px;
    background: #ffffff;
    color: var(--gb-text-eea8b711);
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

@media (max-width: 1024px) {
    .gb-articles-clean-eea8b711 {
      padding: 52px 0 62px;
    }
    .gb-articles-inner-eea8b711 {
      width: calc(100% - 34px);
    }
    .gb-articles-heading-eea8b711 {
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .gb-article-item-eea8b711 {
      flex-basis: 285px;
    }
    .gb-article-card-eea8b711 {
      aspect-ratio: 9 / 14.5;
      border-radius: 22px;
    }
}

@media (max-width: 767px) {
    .gb-articles-clean-eea8b711 {
      padding: 42px 0 52px;
    }
    .gb-articles-inner-eea8b711 {
      width: calc(100% - 28px);
    }
    .gb-articles-heading-eea8b711 {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .gb-articles-rail-eea8b711 {
      gap: 14px;
      padding-inline: 14px;
      scroll-padding-left: 14px;
    }
    .gb-article-item-eea8b711 {
      flex-basis: 248px;
    }
    .gb-article-card-eea8b711 {
      aspect-ratio: 9 / 14.2;
      border-radius: 20px;
    }
    .gb-article-content-eea8b711 {
      padding: 17px;
      transform: none;
    }
    .gb-article-read-eea8b711 {
      opacity: 1;
      transform: none;
    }
    .gb-carousel-arrow-eea8b711 {
      display: none;
    }
}

@media (max-width: 380px) {
    .gb-article-item-eea8b711 {
      flex-basis: 226px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gb-articles-clean-eea8b711 *,
    .gb-articles-clean-eea8b711 *::before,
    .gb-articles-clean-eea8b711 *::after {
      transition: none !important;
      scroll-behavior: auto !important;
    }
}
