
/* ================================
   EDITORIAL BANNER - Mobile First
   ================================ */

.editorial-banner {
    width: 100%;
    background: #EDEBEB;
    padding: 20px 0 0 20px;
    position: relative;
}

.editorial-banner .special-banner {
    width: 100%;
}

/* Content Wrapper - Author image + Dark box */
.banner-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    justify-content: flex-end;
    min-height: 220px; 
}

/* Author Image */
.banner-author-image {
    width: 30%;
    max-width: 250px;
    margin: 0 auto;
    align-self: flex-end;
    position: absolute; 
    left: 0;
    bottom: 0;  /* Sits at bottom of wrapper */
    z-index: 2; /* On top of dark box */
}

.banner-author-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}
.photo-credit{
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: #888;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Dark Rectangle Box */
.banner-dark-box {
    background: #313131;
    padding: 30px 25px;
    flex: 1;
    width: 100%;
    margin-left: 0%;
}

/* Banner Title - SpeakEasy */
.banner-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
    text-transform: none !important;
}
.banner-subtitle-text {
    color: #fff;
    font-size:22px;
}
/* Subtitle Image */
.banner-subtitle-image {
    margin-bottom: 20px;
}

.banner-subtitle-image img {
    height: auto;
    width: 100%;
    display: block;
}

/* Description */
.banner-description {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    color: #fff;
}

/* Write to her section */
.banner-contact {
    padding: 20px 0 10px;
    text-align: left;
    padding-left: 26%;
    text-align: center;
}

.banner-contact p {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: #000;
}

.banner-contact a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.banner-contact a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* News Listing - reused from fashion-news.css */
.fashion-news-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .editorial-banner {
        padding: 2em 0 0 3em;
        margin-top: 2em;
    }

    .banner-content-wrapper {
        flex-direction: row;
        align-items: stretch;
    }

    .banner-author-image {
        width: 280px;
        max-width: 192px;
        margin: 0;
        flex-shrink: 0;
        align-self: flex-end;
    }
    .banner-subtitle-image img {
        width: auto;
    }
    .banner-dark-box {
        padding: 35px 30px;
        width: 70%;
        margin-left: 12%;
    }

    .banner-title {
        font-size: 60px;
        text-align: left;
    }

    .banner-contact {
        padding: 25px 0 10px;
        padding-left: 31%;
    }

    .banner-contact p {
        font-size: 18px;
    }

    .fashion-news-section {
        padding: 60px 40px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .banner-author-image {
        width: 358px;
        max-width: 358px;
        height: inherit;
    }

    .banner-dark-box {
        padding: 1em 10em;
        width: 70%;
        margin-left: 11%;
    }

    .banner-title {
        font-size: 67px;
        line-height: 62px;
        text-align: left;
    }

    .banner-contact {
        padding: 30px 0 10px;
        text-align: left;
        padding-left: 31%;
    }

    .fashion-news-section {
        padding: 80px 60px;
    }
}
