.news {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===========================
   TOP BAR
=========================== */
.news__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.news__back-btn {
    font-size: 15px;
    color: var(--polmind-blue);
    text-decoration: none;
    font-weight: 500;
}

.news__breadcrumb {
    font-size: 14px;
    color: var(--polmind-blue);
}

.news__breadcrumb-link {
    color: var(--polmind-blue);
    text-decoration: none;
}

.news__breadcrumb-link:hover {
    text-decoration: underline;
}

/* ===========================
   TITLE & META
=========================== */
.news__title {
    font-size: 28px;
    color: var(--polmind-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.news__meta {
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===========================
   IMAGE
=========================== */
.news__image {
    width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
    object-fit: cover;
    max-height: 450px;
}

/* ===========================
   CONTENT
=========================== */
.news__content p {
    margin-bottom: 18px;
    font-size: 16px;
}

.news__content b {
    color: var(--polmind-blue);
}

/* ===========================
   AUTHOR
=========================== */
.news__author {
    margin-top: 30px;
    font-size: 15px;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    text-align: right;
    font-style: italic;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
    .news__title {
        font-size: 22px;
        line-height: 1.4;
    }

    .news__content p {
        font-size: 15px;
    }

    .news__meta {
        text-align: left;
        margin-bottom: 12px;
    }

    .news__topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}