
    /* ========================================
       OFFERS SECTION
    ======================================== */
    .offers-section {
        background: #ffffff;
    }

    .offers-filters-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: flex-start;
    }

    .offers-filters-row .neo-select-wrapper {
        flex: 0 1 240px;
        min-width: 445px;
    }

    @media (max-width: 575.98px) {
        .offers-filters-row .neo-select-wrapper {
            flex: 1 1 100%;
            min-width: 0;
        }
    }

    /* ========================================
       CUSTOM SELECT / DROPDOWN
    ======================================== */
    .neo-select-wrapper {
        position: relative;
        width: 100%;
    }

    .neo-select-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: #ffffff;
        border: 1.5px solid #4DC2C1;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.92rem;
        color: #4DC2C1;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        font-family: inherit;
    }

    .neo-select-btn:hover,
    .neo-select-btn:focus {
        border-color: #4DC2C1;
        box-shadow: 0 0 0 3px rgba(44, 196, 189, 0.12);
    }

    .neo-select-btn[aria-expanded="true"] .neo-select-arrow {
        transform: rotate(180deg);
    }

    .neo-select-label {
        color: #4DC2C1;
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
    }

    .neo-select-arrow {
        color: #4DC2C1;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .neo-select-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1.5px solid #4DC2C1;
        border-radius: 8px;
        z-index: 100;
        list-style: none;
        margin: 0;
        padding: 6px 0;
        box-shadow: 0 8px 24px rgba(27, 43, 107, 0.12);
        max-height: 240px;
        overflow-y: auto;
    }

    .neo-select-dropdown.is-open {
        display: block;
    }

    .neo-select-option {
        padding: 9px 16px;
        font-size: 0.9rem;
        color: #4DC2C1;
        cursor: pointer;
        transition: background 0.15s;
    }

    .neo-select-option:hover {
        background: rgba(44, 196, 189, 0.1);
    }

    .neo-select-option.is-selected {
        background: rgba(44, 196, 189, 0.15);
        font-weight: 600;
    }

    /* ========================================
       FILTER TAGS
    ======================================== */
    .neo-filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-height: 0;
    }

    .neo-filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        background: #ffffff;
        border: 1px solid #62539F;
        border-radius: 6px;
        font-size: 0.85rem;
        color: #62539F;
        font-weight: 500;
    }

    .neo-filter-tag__remove {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        color: #62539F;
        font-size: 1rem;
        display: flex;
        align-items: center;
        transition: color 0.15s;
    }

    .neo-filter-tag__remove:hover {
        color: #4DC2C1;
    }

    /* ========================================
       OFFER CARDS
    ======================================== */
    .neo-offer-card {
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        /* transition: box-shadow 0.25s ease, transform 0.25s ease; */
        /* box-shadow: 0 2px 12px rgba(27, 43, 107, 0.07); */
    }

    .neo-offer-card:hover {
        box-shadow: 0 8px 28px rgba(27, 43, 107, 0.14);
        transform: translateY(-3px);
    }

    .neo-offer-card__image-wrap {
        width: 100%;
        aspect-ratio: 16/10;
        overflow: hidden;
    }

    .neo-offer-card__image {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: transform 0.4s ease;
    }

    .neo-offer-card:hover .neo-offer-card__image {
        transform: scale(1.04);
    }

    .neo-offer-card__body {
        padding: 20px 18px 22px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .neo-offer-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: #1E266D;
        margin-bottom: 10px;
    }

    .neo-offer-card__desc {
        font-size: 0.875rem;
        color: #1E266DC7;
        line-height: 1.55;
        margin-bottom: 18px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ========================================
       BUTTONS
    ======================================== */
    .neo-btn-primary {
        display: inline-block;
        padding: 9px 22px;
        background: #4DC2C1;
        color: #ffffff !important;
        border: none;
        border-radius: 6px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none !important;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
        align-self: center;
        white-space: nowrap;
    }

    .neo-btn-primary:hover {
        background: #1ab5ae;
        transform: translateY(-1px);
    }

    .neo-btn-outline {
        display: inline-block;
        padding: 9px 36px;
        background: transparent;
        color: #4DC2C1;
        border: 1.5px solid #4DC2C1;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, transform 0.15s;
        font-family: inherit;
    }

    .neo-btn-outline:hover {
        background: #4DC2C1;
        color: #ffffff;
        transform: translateY(-1px);
    }

    /* ========================================
       PARTNER / IFRAME SECTION
    ======================================== */
    .neo-partner-section {
        background: #ffffff;
    }

    .neo-partner-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1E266D;
        margin-bottom: 8px;
    }

    .neo-partner-subtitle {
        font-size: 1rem;
        color: #1E266D;
        margin-bottom: 0;
    }

    .neo-partner-link {
        font-size: 1rem;
        color: #1E266D;
        text-decoration: none;
    }

    .neo-partner-link:hover {
        text-decoration: none;
    }

    .neo-iframe-wrapper {
        border: 1.5px solid #dee2e6;
        border-radius: 10px;
        overflow: hidden;
        min-height: 540px;
        padding: 10px;
    }

    .neo-iframe-wrapper iframe {
        width: 100%;
        border: none;
        display: block;
    }

    /* ========================================
       HIDDEN / VISIBLE UTILITIES
    ======================================== */
    .offer-card-col.is-hidden {
        display: none !important;
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 767.98px) {
        .neo-partner-title {
            font-size: 1.25rem;
        }

        .neo-offer-card__body {
            padding: 16px 14px 18px;
        }
    }
