/* ==========================================================================
   Banner / Sub-header ortak stilleri
   Birden çok template dosyasında tekrarlanan banner CSS kuralları burada
   konsolide edilmiştir (archive.php, archive-urunler.php, block-sub-header.php,
   content-post.php, content-product.php).
   ========================================================================== */

#global-banner-area {
    height: 40vh;
    position: relative;
    width: 100%;
}

.banner-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(34 43 45 / 95%);
}

.banner-title-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.banner-title-big {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    color: #fff;
    padding: 0;
}

.banner-right-group {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}

.banner-divider {
    width: 120px;
    height: 1px;
    background-color: #fff;
    margin: 0 50px 0 0;
}

.banner-author {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1400px) {
    .banner-title-wrapper {
        padding: 0 30px 20px;
    }
}

@media (max-width: 767px) {
    .banner-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0 20px 15px;
    }

    .banner-right-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-divider {
        width: 100%;
        margin: 5px 0;
    }

    .banner-title-big {
        font-size: 24px;
    }

    .banner-author {
        font-size: 16px;
        white-space: normal;
    }
}