body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: #f6fbfc;
    margin: 0;
    padding: 0;
    color: #224056;
}

.article-header {
    position: relative;
    max-width: 900px;
    margin: 40px auto 60px auto;
    padding: 0 15px;
    text-align: center;
}

.article-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 38px rgba(109, 189, 200, 0.18);
    margin-bottom: 18px;
}

.article-header-text h1 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #0b6578;
    margin-bottom: 8px;
}

.article-date {
    font-size: 1rem;
    color: #6dbdc8;
    font-weight: 700;
}

.article-content {
    max-width: 880px;
    margin: 0 auto 70px auto;
    padding: 0 20px;
    line-height: 2;
    font-size: 1.15rem;
    color: #4496a6;
}

.related-articles {
    max-width: 950px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.related-articles h2 {
    color: #0b6578;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
}

.related-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.related-item {
    background: white;
    border-radius: 20px;
    width: 290px;
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.15);
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.related-item:hover {
    box-shadow: 0 15px 48px rgba(109, 189, 200, 0.3);
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #cee4e7;
}

.related-item a {
    display: block;
    text-decoration: none;
    padding: 18px 16px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #224056;
    transition: color 0.3s;
}

.related-item a:hover {
    color: #6dbdc8;
}

@media (max-width: 768px) {
    .article-header img {
        height: 230px;
    }
    .article-header-text h1 {
        font-size: 1.9rem;
    }
    .article-content {
        font-size: 1rem;
    }
    .related-list {
        gap: 23px;
    }
    .related-item {
        width: 210px;
    }
}

@media (max-width: 480px) {
    .article-header img {
        height: 180px;
    }
}
