/* ==================================================
   WHY NETPROG
================================================== */

.why {
    padding: var(--space-3xl) 0;
}

.why-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}


/* ==================================================
   IMAGE
================================================== */

.why-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}


/* ==================================================
   CONTENT
================================================== */

.why-content h2 {
    margin-bottom: 20px;
}

.why-content p {
    margin-bottom: 32px;

    color: var(--text-light);
}


/* ==================================================
   LIST
================================================== */

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    font-size: 20px;

    color: var(--white);

    background: var(--accent-color);

    border-radius: 50%;
}

.why-item h3 {
    margin-bottom: 6px;

    font-size: var(--font-size-lg);
}

.why-item p {
    margin: 0;

    color: var(--text-light);
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 992px) {

    .why-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
    }

    .why-image {
        order: 1;
    }

    .why-content {
        order: 2;
    }

}