.vc-promotions {
       padding: 8vh 4vw;
    background: #ffffff;
    position: relative;
}

.vc-promotions__inner {

    margin: 0 auto;
    padding: 0 1.5rem;
}

.vc-promotions__header {
    text-align: center;
    margin: 0 auto 2.5rem;
}

.vc-promotions__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: #1b60b3;
    margin-bottom: 0.75rem;
}

.vc-promotions__title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: #111111;
    text-transform: uppercase;
}

.vc-promotions__carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
        height: 70vh;
    position: relative;
}

.vc-promotions__track {
    width: 100%;
    position: relative;
}

.vc-promotions__card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30vh;
        transform: translate(-50%, -50%) scale(0.65);
    opacity: 0;
    transition: left 0.55s ease, top 0.55s ease, transform 0.55s ease, opacity 0.55s ease, z-index 0s ease;
    opacity: 1;
    z-index: 5;
}

.vc-promotions__card--center {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
      width: 22vw !important;
}

.vc-promotions__card--left-30 {
    left: 18%;
    top: 60%;
    transform: translate(-20%, -52%) rotate(-14deg) scale(0.85);
    opacity: 0.85;
    z-index: 3;
}

.vc-promotions__card--right-30 {
    left: 82%;
    top: 60%;
    transform: translate(-80%, -52%) rotate(14deg) scale(0.85);
    opacity: 0.85;
    z-index: 3;
}

.vc-promotions__card--left-45 {
    left: 8%;
    top: 59%;
    transform: translate(-60%, -20%) rotate(-22deg) scale(0.7);
    opacity: 0.55;
    z-index: 2;
}

.vc-promotions__card--right-45 {
    left: 92%;
    top: 60%;
    transform: translate(-40%, -22%) rotate(22deg) scale(0.7);
    opacity: 0.55;
    z-index: 2;
}

.vc-promotions__card--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vc-promotions__card--instant {
    transition: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.vc-promotions__poster {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #ebf2ff 0%, #f9fbff 100%);
    box-shadow: 0 35px 90px rgba(15, 48, 97, 0.12);
}

.vc-promotions__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vc-promotions__poster-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9f1ff 0%, #f3f7ff 100%);
}

vc-promotions__arrow--prev .vc-promotions__details {
    margin-top: 1rem;
    text-align: center;
}

.vc-promotions__label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.vc-promotions__card--center .vc-promotions__details,
.vc-promotions__card--right-30 .vc-promotions__details,
.vc-promotions__card--left-30 .vc-promotions__details,
.vc-promotions__card--left-45 .vc-promotions__details,
.vc-promotions__card--right-45 .vc-promotions__details {
    position: absolute;
    top: 0;
    text-align: center;
    font-family: 'Armstrong', 'Barlow Condensed', sans-serif;
    color: #ffffff;
    line-height: 1;
    margin: 30px 0px !important;
}

.vc-promotions__arrow {
    background: #ffffff;
    border: 1px solid #dfe7f1;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    color: #12233b;
    font-size: 1.55rem;
}

.vc-promotions__arrow:hover {
    background: #f2f6ff;
    transform: translateY(-1px);
}

.vc-promotions__bullets {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align to top so they push downward */
    gap: 3rem;
    /* Increased gap for the curve effect */
    margin: 0rem auto;
    width: 100%;
    max-width: 400px;
    top: 0px;
    /* Give it height to allow for the arc */
}

/* The Curved Background Line */
.vc-promotions__bullets::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    /* Large height + border-radius creates the arc */
    border: 2px solid #eeeeee;
    border-radius: 50%;
    clip-path: inset(0 0 70% 0);
    /* Only show the top sliver of the circle */
    z-index: 0;
}

.vc-promotions__bullet {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #0047ab;
    background: #0047ab;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;

    /* The Math: Push bullets down based on distance from the center */
    /* We'll define --offset in the PHP loop */
    margin-top: calc(var(--offset) * var(--offset) * 5px);
}

/* Active State: White center with thick border */
.vc-promotions__bullet.active {
    background: #fff;
    transform: scale(1.2);
    border-width: 3px;
}

@media (max-width: 1024px) {

    .vc-promotions__card--left-45,
    .vc-promotions__card--right-45 {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .vc-promotions__card--left-30,
    .vc-promotions__card--right-30 {
        left: 15%;
        top: 62%;
        transform: translate(-50%, -50%) rotate(-30deg) scale(0.78);
    }

    .vc-promotions__card--right-30 {
        left: 85%;
        transform: translate(-50%, -50%) rotate(30deg) scale(0.78);
    }
}

@media (max-width: 768px) {
    .vc-promotions {
        padding-top: 3rem;
    }

    .vc-promotions__carousel {
        flex-direction: column;
    }

    .vc-promotions__track {
        min-height: 420px;
    }

    .vc-promotions__card {
        width: 240px;
    }

    .vc-promotions__arrow {
        width: 48px;
        height: 48px;
        display: none;
    }
}

@media (max-width: 600px) {

    .vc-promotions__card,
    .vc-promotions__track {
        width: 100%;
    }

    .vc-promotions__card {
        position: relative;
        left: 50% !important;
        transform: translate(-50%, 0) scale(1);
        top: auto;
        opacity: 1;
    }

    .vc-promotions__card--left-30,
    .vc-promotions__card--right-30,
    .vc-promotions__card--left-45,
    .vc-promotions__card--right-45 {
        display: none;
    }

    .vc-promotions__track {
        min-height: auto;
    }

    .vc-promotions__bullets {

        top: 57px;
    }
}

.vc-promotion-archive__list_page {
    background-color: #fff;
    padding-top: 50px;
}

.vc-promotion-archive__grid_list {

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.vc-promotion-archive__grid_list .vc-promotion-archive__item img {
    height: auto;
}

/* Filter Buttons */
.vc-btn-filter {
    padding: 10px 25px;
    border: 2px solid #0046be;
    border-radius: 50px;
    color: #0046be;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.vc-btn-filter.active,
.vc-btn-filter:hover {
    background: #0046be;
    color: #fff;
}

/* The Promotion Grid */
.vc-promotion-archive__grid_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Split Card Layout */
.vc-promotion-card {
    display: flex;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    background: #eff2f6;
    border: 1px solid #84abdd;
}

.vc-promo-card__content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vc-promo-card__content h3 {
    font-size: 1vw;
    color: #1e293b;
    margin: 0;
}

.vc-promotion-archive {
    background: #fff;

}

.vc-promo-filters {
    padding: 30px;
    text-align: center;
}

.vc-promo-filters .vc-filter-buttons a {
    margin: 0px 10px;
    font-family: var(--vc-font-brand);
    font-weight: 300;
    font-size: 1vw;
}

.vc-promo-card__media {
    flex: 1;
}

.vc-promo-card__media img {
    width: 100%;
    height: 100%;
    height: 40vh;
    object-fit: cover;
}

.vc-btn-download {
    background: #0046be;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    align-self: flex-start;
    font-size: 14px;
}

/* Responsive for Antigravity Tests */
@media (max-width: 1200px) {
    .vc-promotion-archive__grid_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vc-promotion-archive__grid_list {
        grid-template-columns: 1fr;
    }

    .vc-promotion-card {
        flex-direction: column;
    }

    /* Stack on small mobile */
}

.vc-btn-download {
    font-family: var(--vc-font-brand);
    font-weight: 300;
    font-size: 1vw;
    background: #080909;

}