.cp-grid-wrapper {
    direction: rtl;
    font-family: "IRANSans", sans-serif;
}

.cp-grid {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.cp-grid-item {
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cp-grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cp-grid-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cp-grid-content {
    padding: 16px;
}

.cp-grid-content h3 {
    margin: 0 0 12px;
}

.cp-grid-date {
    font-size: 13px;
    color: #888;
    text-align: left;
    margin-bottom: 8px;
}

.cp-grid-excerpt {
    margin-bottom: 16px;
}

.cp-grid-button {
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    margin: 0 16px 16px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}

.cp-grid-button:hover {
    background: #005177;
    color: #fff;
}

.cp-grid-pagination {
    text-align: center;
    margin: 30px 0;
}
