.article-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, #4dbff6, #2d9fe9);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.article-hero p {
    font-size: 18px;
    color: #f0f9ff;
}

.article-content {
    padding-bottom: 50px;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.article-text h2 {
    color: #0ea5e9;
    margin-top: 20px;
}

.article-text p, .article-text ul {
    font-size: 16px;
    color: #042029;
    line-height: 1.6;
}

.article-text ul {
    list-style: disc;
    margin-left: 20px;
}

.article-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.article-images img:hover {
    transform: scale(1.03);
}

@media(max-width:900px){
    .article-grid{
        grid-template-columns:1fr;
    }
}
