/* ========================================
   Baltic Transfer Block - EXACT PHOTO MATCH
   ======================================== */

.c-baltic {
    position: relative;
    padding: 60px 20px;
    isolation: isolate;
    display: none!important;
}

.c-baltic__container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ---------- Heading OUTSIDE the card ---------- */
.c-baltic__heading {
    text-align: center;
    color: #fff;
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.c-baltic__new {
    color: #E53935;
    /* Brighter red for NEW */
    font-weight: 800;
}

/* ---------- The main card ---------- */
.c-baltic__glass {
    background: #626569;
    /* Gray background from photo */
    border-radius: 60px;
    /* Large radius like in photo */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.c-baltic__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* ---------- Content Left side ---------- */
.c-baltic__content {
    flex: 1;
    min-width: 300px;
    padding: 40px 10px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-baltic__lead {
    color: #fff;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* ---------- Green Horizontal Bar ---------- */
.c-baltic__promo-bar {
    background: #B4CF32;
    /* The specific green */
    margin: 0 -10px 0 -40px;
    /* Negative margin to bleed to the edge of the text area if needed, but in photo it has some gaps. Let's make it look like the pill bar. */
    padding: 15px 40px;
    border-radius: 30px;
}

.c-baltic__features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.c-baltic__feature-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-baltic__feature-col li {
    color: #000;
    font-weight: 800;
    font-size: clamp(14px, 1.5vw, 17px);
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.c-baltic__feature-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* ---------- Bottom tagline ---------- */
.c-baltic__tagline {
    color: #fff;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.4;
    margin: 0;
}

/* ---------- Image Right side ---------- */
.c-baltic__media {
    flex: 0 0 35%;
    padding: 20px;
}

.c-baltic__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 80px;
    /* More rounded image card */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .c-baltic__inner {
        flex-direction: column;
        padding: 40px 20px;
    }

    .c-baltic__content {
        padding: 0;
    }

    .c-baltic__promo-bar {
        margin: 0;
    }

    .c-baltic__media {
        flex: 1;
        width: 100%;
        max-width: 500px;
        order: -1;
    }

    .c-baltic__features {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 500px) {
    .c-baltic__glass {
        border-radius: 30px;
    }

    .c-baltic__img {
        border-radius: 40px;
    }
}