/* =========================
   MOBILE VERSION
========================= */

.asadia {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.asadia h2 {
    margin-left: 0;
    margin-right: auto;
}

.asadia section {
    background-color: #F8F8F8;
    border: 1px solid #F5F5F5;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1rem 1.4rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.asadia section h3 {
    margin-top: 2rem;
}

.asadia section img {
    border-radius: 6px;
    margin: 1.5rem 0;
}

.asadia > p {
    background-color: rgba(241,90,34, 0.3);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 6px;
    padding: 1rem 1.5rem;
}

/* =========================
   DESKTOP VERSION
========================= */

@media(min-width: 1024px) {
    .asadia {
        width: 60%;
    }

    .asadia > div {
        display: flex;
        gap: 2rem;
        justify-content: space-between;
    }

    .asadia > section:first-of-type {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, auto);
        gap: 1.5rem;
        align-items: start;
    }

    .asadia > section:first-of-type h3 {
        grid-column: 1 / 4;
        grid-row: 1/2;
    }

    .asadia > section:first-of-type p:first-of-type {
        grid-column: 1/4;
        grid-row: 2/3;
    }

    .asadia > section:first-of-type p:nth-of-type(2) {
        grid-column: 1/4;
        grid-row: 3/4;
    }

    .asadia > section:first-of-type p:nth-of-type(3) {
        grid-column: 1/4;
        grid-row: 4/5;
    }

    .asadia > section:first-of-type img:first-of-type {
        grid-column: 1/2;
        grid-row: 5/6;
    }

    .asadia > section:first-of-type p:nth-of-type(4) {
        grid-column: 2/4;
        grid-row: 5/6;
    }

    .asadia > section:first-of-type img:last-of-type {
        grid-column: 3/4;
        grid-row: 6/7;
    }

    .asadia > section:first-of-type p:last-of-type {
        grid-column: 1/3;
        grid-row: 6/7;
    }
}