﻿/*----------------------------- WHY RIZE ------------------------------*/
/* Outer container */
.why-container {
    text-align: center;
    padding: 60px 20px;
}

/* Title — Bely, 40px */
.why-title {
    font-family: Bely;
    font-size: 40px;
    font-weight: 700;
    color: #241C4F;
    margin-bottom: 60px;
}

/* Row layout */
.why-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    flex-direction:row;
}

/* Each card */
.why-card {
/*    width: 320px;*/
    max-width: 472px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    /* Icon */
    .why-card img {
        width: 110px;
        height: auto;
        margin-bottom: 25px;
    }

    /* Title under icon */
    .why-card h4 {
        font-family: Poppins, sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #595861;
        margin-bottom: 12px;
    }

    /* Description */
    .why-card p {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        line-height: 22px;
        color: #595861;
    }

/* Responsive */
@media (max-width: 900px) {
    .why-row {
        align-items: center;
        gap: 40px;
    }

    .why-card {
        width: 90%;
        max-width: 400px;
    }
}
