﻿.press-coverage-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

    .press-coverage-container h1 {
        text-align: center;
        font-family: 'Almarai', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #222;
    }

.press-article {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    direction: rtl;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .press-article:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

.press-image {
    flex: 0 0 250px;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

    .press-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.press-text {
    flex: 1;
    padding: 15px;
}

    .press-text h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        color: #111;
        line-height: 1.5;
    }

    .press-text p {
        font-size: 1rem;
        color: #444;
        line-height: 1.8;
        margin: 0 0 6px 0;
    }

/* Responsive for mobile */
@media (max-width: 768px) {
    .press-article {
        flex-direction: column;
        text-align: center;
    }

    .press-image {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .press-text {
        padding: 15px 10px;
    }

        .press-text h2 {
            font-size: 1.3rem;
        }

        .press-text p {
            font-size: 0.95rem;
        }
}
