/* ==========================================================
   Block: Hist Why — frontend styles
   ========================================================== */

.hist-why {
    padding: 36px 0 !important;
}

.hist-why .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hist-why-inner {
    background: linear-gradient(135deg, #0d1b4b, var(--blue));
    border-radius: 24px;
    padding: 48px;
}

.hist-why-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.hist-why-inner h2 span {
    color: var(--red);
}

.hist-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hist-why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.hist-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    margin-bottom: 14px;
}

.hist-why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.hist-why-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hist-why {
        padding: 36px 0;
    }

    .hist-why .container {
        padding: 0 16px;
    }

    .hist-why-inner {
        padding: 32px 24px;
    }

    .hist-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
