/* === PSG Article Card Grid === */
.pac-grid-cad93805 {
    display: grid;
    gap: 24px;
    width: 100%;
}
.pac-cols-1-cad93805 { grid-template-columns: 1fr; }
.pac-cols-2-cad93805 { grid-template-columns: repeat(2, 1fr); }
.pac-cols-3-cad93805 { grid-template-columns: repeat(3, 1fr); }
.pac-cols-4-cad93805 { grid-template-columns: repeat(4, 1fr); }

/* === Card === */
.pac-card-cad93805 {
    background-color: #0A1628;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pac-card-cad93805:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(227, 6, 19, 0.25);
}

/* === Image Wrapper === */
.pac-img-wrap-cad93805 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.pac-img-cad93805 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.pac-card-cad93805:hover .pac-img-cad93805 {
    transform: scale(1.08);
}

/* === Red line accent on hover === */
.pac-card-cad93805::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E30613, #C5A44E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
    border-radius: 12px 12px 0 0;
}
.pac-card-cad93805:hover::before {
    transform: scaleX(1);
}

/* === Badge === */
.pac-badge-cad93805 {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #E30613;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 1;
    line-height: 1.3;
}

/* === Content === */
.pac-content-cad93805 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* === Date === */
.pac-date-cad93805 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Title === */
.pac-title-cad93805 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}
.pac-title-cad93805 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pac-title-cad93805 a:hover {
    color: #E30613;
}

/* === Excerpt === */
.pac-excerpt-cad93805 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #A0AEC0;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Button === */
.pac-btn-cad93805 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E30613;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}
.pac-btn-cad93805:hover {
    background-color: #004170;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 65, 112, 0.4);
}
.pac-btn-arrow-cad93805 {
    transition: transform 0.3s ease;
    font-size: 16px;
}
.pac-btn-cad93805:hover .pac-btn-arrow-cad93805 {
    transform: translateX(4px);
}

/* === RESPONSIVE: Tablet === */
@media (max-width: 1024px) {
    .pac-cols-3-cad93805,
    .pac-cols-4-cad93805 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pac-title-cad93805 {
        font-size: 16px;
    }
    .pac-content-cad93805 {
        padding: 16px;
    }
}

/* === RESPONSIVE: Mobile === */
@media (max-width: 767px) {
    .pac-cols-2-cad93805,
    .pac-cols-3-cad93805,
    .pac-cols-4-cad93805 {
        grid-template-columns: 1fr;
    }
    .pac-grid-cad93805 {
        gap: 16px;
    }
    .pac-title-cad93805 {
        font-size: 15px;
    }
    .pac-excerpt-cad93805 {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .pac-content-cad93805 {
        padding: 14px;
    }
    .pac-btn-cad93805 {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        justify-content: center;
    }
    .pac-badge-cad93805 {
        font-size: 10px;
        padding: 4px 10px;
    }
    .pac-img-wrap-cad93805 {
        aspect-ratio: 16 / 9;
    }
}
