﻿/* ===== Articles Section ===== */
.seo-articles {
    padding: 4rem 0;
    background: #fff;
}

.seo-articles__header {
    max-width: 840px;
    margin: 0 auto 2rem;
}

.seo-articles__title {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .5rem;
}

.seo-articles__intro {
    color: #475569;
    font-size: 1.05rem;
}

.post-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(2,6,23,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(2,6,23,.12);
        border-color: #d1d5db;
    }

.post-card__media {
    display: block;
    background: #f1f5f9;
}

.post-card__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 800 / 533;
    object-fit: cover;
}

.post-card__body {
    padding: 1.1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.post-card__meta {
    font-size: .875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.post-card__dot {
    opacity: .6;
}

.post-card__date {
    white-space: nowrap;
}

.post-card__read {
    white-space: nowrap;
}

.post-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: .15rem 0 .25rem;
}

    .post-card__title a {
        color: #0f172a;
        text-decoration: none;
    }

        .post-card__title a:hover {
            text-decoration: underline;
        }

.post-card__excerpt {
    color: #334155;
    line-height: 1.7;
    font-size: .95rem;
    margin: 0 0 .25rem;
}

.post-card__tags {
    list-style: none;
    padding: 0;
    margin: .25rem 0 .5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .post-card__tags li a {
        display: inline-block;
        font-size: .78rem;
        font-weight: 600;
        padding: .25rem .5rem;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        color: #2563eb;
        text-decoration: none;
    }

        .post-card__tags li a:hover {
            background: #eff6ff;
        }

.post-card__cta {
    margin-top: auto;
}

.post-card__link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

    .post-card__link:hover {
        text-decoration: underline;
    }

.post-empty {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.post-pagination .page-link {
    padding: .55rem 1rem;
}

/* RTL tweaks */
html[dir="rtl"] .post-card__dot {
    transform: scaleX(-1);
}
/* تجميلي بسيط */
