.ayat-blog-page {
    padding: 26px 0 90px;
    background: #fbfbf7;
}

.ayat-blog-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    color: #929983;
    font-size: 12px;
}

.ayat-blog-breadcrumb a {
    color: #67742c;
    text-decoration: none;
}

.ayat-blog-hero {
    padding: 65px 8%;
    border: 1px solid rgba(79,94,27,.11);
    border-radius: 30px;
    background: #fff;
}

.ayat-blog-eyebrow {
    color: #a4b61f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}

.ayat-blog-hero h1 {
    max-width: 900px;
    margin: 13px 0 17px;
    color: #4f5e1b;
    font-size: clamp(40px,5vw,65px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.04em;
}

html[dir="rtl"] .ayat-blog-hero h1 {
    letter-spacing: 0;
}

.ayat-blog-hero p {
    max-width: 740px;
    margin: 0;
    color: #6c745f !important;
    font-size: 15px;
    line-height: 1.9;
}

.ayat-blog-grid {
    display: grid;
    grid-template-columns:
        repeat(3,minmax(0,1fr));
    gap: 22px;
    margin-top: 45px;
}

.ayat-blog-card {
    overflow: hidden;
    border: 1px solid rgba(79,94,27,.10);
    border-radius: 22px;
    background: #fff;
}

.ayat-blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef1de;
}

.ayat-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.ayat-blog-card:hover
.ayat-blog-card-image img {
    transform: scale(1.025);
}

.ayat-blog-card-body {
    padding: 24px;
}

.ayat-blog-card time {
    display: block;
    margin-bottom: 10px;
    color: #9a9f8b;
    font-size: 10px;
}

.ayat-blog-card h2 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
}

.ayat-blog-card h2 a {
    color: #4f5e1b;
    text-decoration: none;
}

.ayat-blog-card p {
    margin: 0 0 18px;
    color: #717866 !important;
    font-size: 13px;
    line-height: 1.75;
}

.ayat-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #68752b;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

html[dir="rtl"] .ayat-blog-read span {
    transform: rotate(180deg);
}

.ayat-blog-empty {
    max-width: 760px;
    margin: 70px auto 0;
    padding: 55px;
    border: 1px solid rgba(79,94,27,.10);
    border-radius: 26px;
    background: #fff;
    text-align: center;
}

.ayat-blog-empty > span {
    color: #a4b61f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}

.ayat-blog-empty h2 {
    margin: 12px 0;
    color: #4f5e1b;
    font-size: 30px;
}

.ayat-blog-empty p {
    margin: 0;
    color: #747b68 !important;
    line-height: 1.8;
}

.ayat-blog-pagination {
    margin-top: 45px;
}

.ayat-blog-pagination .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 0;
}

.ayat-blog-pagination a,
.ayat-blog-pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #5d6925;
    text-decoration: none;
}

.ayat-blog-pagination .current {
    background: #a4b61f;
    color: #fff;
}

@media (max-width: 900px) {

    .ayat-blog-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 620px) {

    .ayat-blog-hero {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .ayat-blog-hero h1 {
        font-size: 36px;
    }

    .ayat-blog-grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .ayat-blog-empty {
        margin-top: 35px;
        padding: 36px 20px;
    }
}
