/* ========================================
   MGPS PPF Why Section — NEDEN MG PS PPF?
   ======================================== */

/* --- Section --- */
.mgps-why {
    background-color: var(--mgps-light-grey);
    border-radius: 16px;
    overflow: hidden;
}

.mgps-why .mgps-text-center {
    text-align: center;
}

.mgps-why .mgps-heading {
    margin-bottom: 48px;
}

/* --- Grid --- */
.mgps-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Card --- */
.mgps-why-card {
    background: var(--mgps-white);
    border: 1px solid var(--mgps-border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mgps-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--mgps-accent-solid);
}

/* --- Icon --- */
.mgps-why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.mgps-why-icon svg {
    width: 48px;
    height: 48px;
}

/* --- Title --- */
.mgps-why-title {
    font-family: var(--mgps-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--mgps-text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* --- Description --- */
.mgps-why-desc {
    font-family: var(--mgps-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--mgps-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
    .mgps-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
    .mgps-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 16px;
    }
}
