.advertisement-banner {
    width: 100%;
    /* Full width of the container */
    max-width: 1297px;
    /* Prevents it from stretching too much */
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Removes extra spacing */
    margin: 10px auto;
    /* Centers it and adds vertical spacing */
    border-radius: 8px;
    /* Optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow */
}

.ad-mobile-wrapper {
    width: 100%;
    height: 5vh;
    /* or use a fixed height like 120px if you prefer consistency */
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
}

.advertisement-banner-mobile {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* ensures the ad fills the entire space nicely */
    display: block;
}
