/* =================================================== */
/* ==============   بطاقات مقالات عادية    =================== */
/* =================================================== */


/* --- Section Styles --- */
.modern-regul-related-articles-section {
    width: 100%;
    max-width: -webkit-fill-available;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

/* --- Cards Grid --- */
.modern-regul-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* --- Modern Card --- */
.modern-regul-card {
    border: 2px solid var(--seyasa-border-color);
    border-radius: 0.375rem;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    background-color: #ffffff;
}

.modern-regul-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modern-regul-card .card-image-wrapper {
    height: 200px;
    position: relative;
}

.modern-regul-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.modern-regul-card:hover .card-image {
    transform: scale(1.05);
}

.modern-regul-card .card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.modern-regul-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0a2f3c;
    line-height: 1.5;
    margin: 0 0 10px 0;
    transition: color 0.2s ease;
    flex-grow: 1;
}

.modern-regul-card:hover .card-title {
    color: #f5b541;
}

.modern-regul-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.80rem;
    color: #6c757d;
    margin-top: auto;
    padding-top: 10px;
}

.modern-regul-card .card-meta i.fa-calendar-alt {
    margin-left: 5px;
}

.modern-regul-card .card-read-more {
    font-size: 1.2rem;
    color: #ced4da;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
}

.modern-regul-card:hover .card-read-more {
    opacity: 1;
    transform: translateX(0);
    color: #f5b541;
}