.page-header-section {
    background-image: url("../images/news/news-header.png");
    /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    /* padding: 77px 202px; */
    height: 50%;
    width: 50%;
    align-content: center;
    /* border-radius: 10px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    bottom: 0;
}

.page-header-content h1 {
    font-size: 4.5rem;
    font-weight: bold;
    color: #004d40;
    /* Dark Green - adjust as needed */
    margin: 0;
}

.more-text {
    color: #005E60;
}

.card-img-top {
    width: 100%;
    height: 220px;
    /* fixed height */
    object-fit: cover;
    object-position: top;

}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h5 {
    font-size: 22px;
    font-weight: bold;
}


.news-detail h1 {
    color: #005E60;
    font-size: 48px;
    font-weight: bold;
    text-align: left;
}

[lang="ar"] .news-detail h1 {
    text-align: right;
}

.body-content {
    font-size: 22px;
}

.related-news {
    background-image: linear-gradient(to bottom, #ffffff73, #005E60);
    padding: 50px;
}

.btn {
    background-color: #DEFF03;
    border-radius: 20px;
    padding: 10px;
    color: #333333;
    max-width: fit-content;
}

.btn span,
i {
    color: #005E60;
}

.btn:hover {
    background-color: #005E60;
    border-radius: 20px;
    padding: 10px;
    color: #333333;
}

.btn:hover span {
    color: #fff;
}

.btn:hover i {
    color: #fff;
}

@media (max-width: 512px) {
    .page-header-content h1 {
        font-size: 50px;
    }

    .page-header-overlay {
        height: 30%;
    }

    h5 {
        font-size: 18px;
    }

    .news-detail h1 {
        font-size: 40px;
    }

    .body-content {
        font-size: 20px;
    }
}