﻿.showListing .showListingBanner .banner {
    width: 100%;
    height: auto;
    aspect-ratio: 930 / 522;
    position: relative;
    overflow: hidden;
}

.showListing .showListingBanner .banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 930 / 522;
    object-fit: cover;
}

.showListing .showListingBanner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, #000 100% );
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 16px;
    box-sizing: border-box;
}

.showListing .showListingBanner .banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    direction: rtl;
}

.showListing .showListingBanner .banner-author {
    color: #B8B8B8;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 4px;
}

.showListing .showListingBanner .banner-title {
    color: #FFF;
    font-size: 24px;
    font-family: DroidKufiBold;
    margin: 0;
}


@media (max-width: 767px) {
    .showListing .showListingBanner .banner {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 184;
    }

    .showListing .showListingBanner .banner-overlay {
        padding: 10px;
    }

    .showListing .showListingBanner .banner-author {
        font-size: 14px;
    }

    .showListing .showListingBanner .banner-title {
        font-size: 18px;
    }
}

@media (min-width: 767px) and (max-width: 1360px) {


    .showListing .showListingBanner .banner-overlay {
        padding: 14px;
    }

    .showListing .showListingBanner .banner-author {
        font-size: 16px;
    }

    .showListing .showListingBanner .banner-title {
        font-size: 20px;
    }
}