.asa-hero {
    position: relative;
    width: 100%;
    height: 800px;
    min-height: 650px;
    overflow: hidden;
}

.asa-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.asa-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.asa-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.asa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(13, 31, 31, 0) 0%,
            rgba(13, 31, 31, 0) 35%,
            rgba(13, 31, 31, 0.55) 58%,
            rgba(13, 31, 31, 0.82) 100%);
}

.asa-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
}

.asa-hero__content-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);

    display: flex;
    justify-content: flex-end;
}

.asa-hero__text {
    width: 100%;
    max-width: 600px;
    padding-right: 120px;
    text-align: left;
}

.asa-hero__eyebrow {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.asa-hero__eyebrow::before {
    content: "";
    width: 28px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.75);
}

.asa-hero__title {
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -0.5px;
}

.asa-hero__title em {
    color: #009cdb;
    font-style: normal;
    font-weight: 300;
}

.asa-hero__description {
    margin-bottom: 36px;
    color: rgba(232, 240, 240, 0.85);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
}

.asa-hero__actions {
    margin-bottom: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.asa-hero__primary-action {
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--accent);
    border: 0;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.asa-hero__primary-action:hover {
    color: #ffffff;
    opacity: 0.88;
}

.asa-hero__secondary-action {
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: rgba(232, 240, 240, 0.75);
    background: rgba(13, 31, 31, 0.4);
    border: 0.5px solid rgba(168, 191, 192, 0.3);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.asa-hero__secondary-action:hover {
    color: #ffffff;
    border-color: rgba(168, 191, 192, 0.5);
}

.asa-hero__secondary-action i {
    flex-shrink: 0;
    font-size: 22px;
}

.asa-hero__indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 10;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.asa-hero__indicator {
    width: 24px;
    height: 2px;
    margin: 0;
    padding: 0;
    background: rgba(168, 191, 192, 0.3);
    border: 0;
    border-radius: 1px;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.asa-hero__indicator.is-active {
    width: 40px;
    background: var(--accent);
}

.asa-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(168, 191, 192, 0.7);
    background: rgba(13, 31, 31, 0.5);
    border: 0.5px solid rgba(168, 191, 192, 0.2);
    border-radius: 2px;
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s;
}

.asa-hero__arrow:hover {
    color: #ffffff;
    background: rgba(13, 31, 31, 0.8);
}

.asa-hero__arrow--previous {
    left: calc(50% - 720px + 80px);
}

.asa-hero__arrow--next {
    right: calc(50% - 720px + 80px);
}

/* =========================================================
  ASA PRODUCTS
  ========================================================= */

.asa-products {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: #f0f4f8;
}

.asa-products__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.asa-products .container {
    position: relative;
    z-index: 1;
}

/* =========================================================
  PRODUCTS HEADER
  ========================================================= */

.asa-products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.asa-products__heading {
    display: flex;
    flex-direction: column;
}

.asa-products__eyebrow {
    margin: 0 0 10px;
    color: var(--sage);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.asa-products__title {
    margin: 0;
    color: #1a2e2e;
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.15;
}

.asa-products__all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 0.5px solid var(--sage);
    color: var(--deep);
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
}

.asa-products__all i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.asa-products__all:hover i {
    transform: translateX(4px);
}

/* =========================================================
  PRODUCTS GRID
  ========================================================= */

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

/* =========================================================
  PRODUCT CARD
  ========================================================= */

.asa-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 36px 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.asa-product-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    content: '';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asa-product-card::after {
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, #012d6b, #91a6b8);
    content: '';
    pointer-events: none;
    transition: padding 0.25s ease;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.asa-product-card:hover {
    background: rgba(255, 255, 255, 0.8);
}

.asa-product-card:hover::before {
    opacity: 1;
}

.asa-product-card:hover::after {
    padding: 2.5px;
}

/* =========================================================
  PRODUCT CARD ICON
  ========================================================= */

.asa-product-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border: 0.5px solid #009cdb;
    border-radius: 10px;
    background: #009cdb;
    color: #fff;
    font-size: 22px;
}

.asa-product-card__icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
  PRODUCT CARD CONTENT
  ========================================================= */

.asa-product-card__title {
    margin: 0 0 12px;
    color: #1a2e2e;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.asa-product-card__description {
    flex: 1;
    margin: 0 0 28px;
    color: var(--sage);
    font-size: 18px;
    line-height: 1.7;
}

.asa-product-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    color: var(--deep);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.asa-product-card__link i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.asa-product-card__link:hover i {
    transform: translateX(4px);
}

/* =========================================================
  ASA PROMO
  ========================================================= */

.asa-promo {
    background: var(--deep);
}

.asa-promo__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 48px var(--gutter);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.asa-promo__content {
    max-width: 760px;
}

.asa-promo__title {
    margin: 0 0 12px;

    color: var(--bg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
}

.asa-promo__description {
    margin: 0;

    color: rgba(200, 215, 235, 0.9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.asa-promo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    min-height: 50px;
    padding: 15px 34px;

    border: none;
    border-radius: 2px;
    background: var(--accent);
    color: #fff;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.asa-promo__button:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =========================================================
  ASA BANNERS
  ========================================================= */

.asa-banners {
    padding: 64px 0;
    background: var(--bg);
}

.asa-banners__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* =========================================================
  ASA BANNER CARD
  ========================================================= */

.asa-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    overflow: hidden;
    padding: 40px 44px;
    border-radius: 12px;

    background: #001a3d;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.asa-banner:hover {
    transform: translateY(-4px);
}

.asa-banner--dark {
    background: #001a3d;
}

.asa-banner--blue {
    background: #002d82;
}

/* =========================================================
  BANNER IMAGE AND OVERLAY
  ========================================================= */

.asa-banner__image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.asa-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.asa-banner__overlay--dark {
    background: linear-gradient(to right,
            rgba(13, 31, 31, 0.96) 0%,
            rgba(13, 31, 31, 0.88) 35%,
            rgba(13, 31, 31, 0.55) 65%,
            rgba(13, 31, 31, 0.15) 100%);
}

.asa-banner__overlay--blue {
    background: linear-gradient(to right,
            rgba(0, 45, 130, 0.97) 0%,
            rgba(0, 45, 130, 0.88) 35%,
            rgba(0, 45, 130, 0.55) 65%,
            rgba(0, 45, 130, 0.1) 100%);
}

/* =========================================================
  BANNER CONTENT
  ========================================================= */

.asa-banner__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 520px;
}

.asa-banner__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0 0 16px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.asa-banner__eyebrow::before {
    width: 20px;
    height: 0.5px;
    flex-shrink: 0;
    content: '';
}

.asa-banner--dark .asa-banner__eyebrow {
    color: rgba(168, 191, 192, 0.6);
}

.asa-banner--dark .asa-banner__eyebrow::before {
    background: rgba(168, 191, 192, 0.4);
}

.asa-banner--blue .asa-banner__eyebrow {
    color: rgba(168, 200, 255, 0.6);
}

.asa-banner--blue .asa-banner__eyebrow::before {
    background: rgba(168, 200, 255, 0.4);
}

.asa-banner__title {
    margin: 0 0 14px;

    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.1;
}

.asa-banner__description {
    margin: 0 0 32px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.asa-banner--dark .asa-banner__description {
    color: rgba(220, 230, 235, 0.85);
}

.asa-banner--blue .asa-banner__description {
    color: rgba(210, 225, 255, 0.85);
}

/* =========================================================
  BANNER BUTTON
  ========================================================= */

.asa-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    min-height: 48px;
    padding: 14px 28px;

    border: none;
    border-radius: 2px;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.asa-banner__button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.asa-banner__button i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.asa-banner__button:hover i {
    transform: translateX(3px);
}

.asa-banner--dark .asa-banner__button {
    background: var(--accent);
    color: #fff;
}

.asa-banner--blue .asa-banner__button {
    background: #fff;
    color: #002d82;
}

/* =========================================================
   ASA NEWS
========================================================= */

.asa-news {
    padding: 48px 0;
    background: #f4f8f8;
}

.asa-news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 24px;
}

.asa-news__heading {
    min-width: 0;
}

.asa-news__eyebrow {
    margin: 0 0 10px;

    color: var(--sage);

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.3;
    text-transform: uppercase;
}

.asa-news__title {
    margin: 0;

    color: #1a2e2e;

    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.15;
}

.asa-news__all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;

    margin-bottom: 4px;
    padding-bottom: 2px;

    border-bottom: 1px solid var(--sage);

    color: var(--deep);

    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.asa-news__all i {
    font-size: 13px;

    transition: transform 0.25s ease;
}

.asa-news__all:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.asa-news__all:hover i {
    transform: translateX(3px);
}


/* =========================================================
   NEWS GRID
========================================================= */

.asa-news__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: 20px;

    align-items: stretch;
}

.asa-news__side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;

    min-width: 0;
}


/* =========================================================
   NEWS CARD BASE
========================================================= */

.asa-news .asa-news-card {
    position: relative;

    width: 100%;
    min-width: 0;
    overflow: hidden;

    border-radius: 12px;

    background: #2a3a3a;

    transition: transform 0.3s ease;
}

.asa-news .asa-news-card:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FEATURED CARD
========================================================= */

.asa-news .asa-news-card--featured {
    height: 500px;
    min-height: 500px;
}

.asa-news .asa-news-card--featured .asa-news-card__content {
    padding: 32px 36px;
}

.asa-news .asa-news-card--featured .asa-news-card__title {
    max-width: 720px;

    font-size: 38px;
    line-height: 1.18;

    -webkit-line-clamp: 3;
}

.asa-news .asa-news-card--featured .asa-news-card__description {
    max-width: 650px;

    font-size: 18px;
}


/* =========================================================
   COMPACT CARDS
========================================================= */

.asa-news .asa-news-card--compact {
    height: 240px;
    min-height: 0;
}

.asa-news .asa-news-card--compact .asa-news-card__content {
    padding: 20px 24px;
}

.asa-news .asa-news-card--compact .asa-news-card__title {
    font-size: 25px;
    line-height: 1.2;

    -webkit-line-clamp: 2;
}

.asa-news .asa-news-card--compact .asa-news-card__description {
    display: none;
}

.asa-news .asa-news-card--compact .asa-news-card__tag {
    margin-bottom: 2px;
}

.asa-news .asa-news-card--compact .asa-news-card__meta {
    margin-top: 4px;
    padding-top: 10px;
}


/* =========================================================
   COVER / IMAGE
========================================================= */

.asa-news .asa-news-card__cover {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.asa-news .asa-news-card__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.asa-news .asa-news-card:hover .asa-news-card__image {
    transform: scale(1.04);
}

.asa-news .asa-news-card__image-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #2a3a3a,
            #1a2e2e);

    color: rgba(168, 191, 192, 0.15);

    font-size: 48px;
}


/* =========================================================
   OVERLAY
========================================================= */

.asa-news .asa-news-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(to top,
            rgba(13, 31, 31, 0.95) 0%,
            rgba(13, 31, 31, 0.6) 40%,
            rgba(13, 31, 31, 0.1) 100%);
}


/* =========================================================
   CONTENT
========================================================= */

.asa-news .asa-news-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 28px 32px;
}

.asa-news .asa-news-card__tag {
    display: inline-block;

    margin-bottom: 6px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}

.asa-news .asa-news-card__title {
    display: -webkit-box;

    overflow: hidden;
    margin: 0;

    color: #fff;

    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.asa-news .asa-news-card__description {
    display: -webkit-box;

    overflow: hidden;
    margin: 0;

    color: rgba(200, 215, 230, 0.85);

    font-size: 17px;
    line-height: 1.6;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* =========================================================
   META
========================================================= */

.asa-news .asa-news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 4px;
    padding-top: 12px;

    border-top:
        1px solid rgba(168, 191, 192, 0.2);
}

.asa-news .asa-news-card__date,
.asa-news .asa-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    font-size: 18px;
    line-height: 1.4;
}

.asa-news .asa-news-card__date {
    color: rgba(200, 215, 230, 0.85);
}

.asa-news .asa-news-card__link {
    color: rgba(220, 230, 240, 0.95);

    font-weight: 500;

    transition: color 0.25s ease;
}

.asa-news .asa-news-card__link i {
    font-size: 12px;

    transition: transform 0.25s ease;
}

.asa-news .asa-news-card:hover .asa-news-card__link {
    color: var(--accent);
}

.asa-news .asa-news-card:hover .asa-news-card__link i {
    transform: translateX(3px);
}