body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: #f6fbfc;
    margin: 0;
    padding: 0;
    color: #224056;
}

.articles-hero {
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    padding: 55px 20px 35px 20px;
    text-align: center;
    color: white;
}

.articles-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.articles-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.articles-section {
    padding: 45px 0 70px 0;
}

.articles-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.article-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(109,189,200,0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.4s ease;
}

.article-card:hover {
    box-shadow: 0 15px 50px rgba(109,189,200,0.25);
    transform: translateY(-7px);
}

.article-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-content {
    padding: 24px 28px 30px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #224056;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.6;
    margin-bottom: 23px;
    flex: 1;
}

.article-read-btn {
    font-weight: 700;
    color: #0b6578;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.article-read-btn:hover {
    color: #6dbdc8;
}

@media (max-width: 700px){
    .articles-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}
@media (max-width: 480px) {
    .articles-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .articles-hero-title {
        font-size: 1.8rem;
    }
    .articles-hero-subtitle {
        font-size: 1rem;
    }
}
