/* Promotional Banner Styles */

.promotional-banner-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.promotional-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.promotional-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.banner-content {
    text-align: center;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-top-text {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.banner-second-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.banner-link-text {
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promotional-banner {
        background-size: cover !important;
    }

    .banner-top-text {
        font-size: 28px;
    }

    .banner-second-text {
        font-size: 16px;
    }

    .banner-link-text {
        font-size: 11px;
    }
}
