/* ==========================================================================
   NEWS PAGE CSS - JosieVerse Enterprise
   ========================================================================== */

.news-banner {
    position: relative;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 390px;
    overflow: hidden;
    background: linear-gradient(135deg, #090510 0%, #150030 50%, #250048 100%);
}

/* Purple Glow */
.news-banner::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -120px;
    right: -100px;
    background: rgba(198, 74, 255, 0.35);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

/* Pink Glow */
.news-banner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -100px;
    background: rgba(255, 70, 170, 0.20);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.news-banner .banner-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.news-banner h1.news-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.0rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 2px;
    max-width: none;
    margin: 0 auto 15px;
    text-align: center;
    text-transform: uppercase;
}

.news-banner p.news-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #a8a7c0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* News Main Section */
.news-section {
    background: #0b0615;
    padding: 60px 0;
    position: relative;
}

.news-details {
    color: #fbf2ff;
    font-family: var(--font-body);
}

.news-details h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.news-details h2 em {
    font-style: normal;
    color: var(--color-pink, #d77afb);
}

.news-details p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: #b9b6c8;
    margin-bottom: 1.5rem;
}

.news-details p strong {
    color: var(--color-pink, #d77afb);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(215, 122, 251, 0.25);
}

.news-details h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Bullet list custom styling */
.news-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.news-list li {
    font-size: var(--text-base);
    line-height: 1.75;
    color: #b9b6c8;
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
}

.news-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    top: -0.1rem;
    color: var(--color-pink, #d77afb);
    font-size: 1.4rem;
    text-shadow: 0 0 8px rgba(215, 122, 251, 0.65);
}

.news-list li strong {
    color: var(--color-pink, #d77afb);
    font-weight: 600;
}

.news-title-divider {
    color: var(--color-pink, #d77afb);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 15px;
    justify-content: flex-start;
}

.news-title-divider::before {
    content: '';
    height: 1.5px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-pink, #d77afb));
}

.news-title-divider::after {
    content: '';
    height: 1.5px;
    width: 25px;
    background: linear-gradient(90deg, var(--color-pink, #d77afb), transparent);
}

.signature {
    margin-top: 3rem;
}

.signature-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary, #ef5cc8);
    text-shadow: 0 0 10px rgba(239, 92, 200, 0.25);
    font-weight: 600;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .news-banner {
        height: 320px;
        padding-top: 60px;
    }
    .news-section {
        padding: 50px 0;
    }
    .news-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-banner h1.news-hero-title {
        font-size: 2.0rem;
    }
}
