/* =========================================================
   LAYOUT
   ========================================================= */

.description-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;

    gap: var(--na-gap-xl);

    margin: 20px auto;
}


/* =========================================================
   TEXT
   ========================================================= */

.description-text h1 {
    margin-bottom: 18px;
}

.description-text ul {
    margin: 0;
    padding-left: 20px;
}

.description-text li {
    margin-bottom: 12px;
}


/* =========================================================
   PHOTO
   ========================================================= */

.description-photo {
    display: flex;
    justify-content: center;

    margin-right: 20px;
}

.description-photo img {
    width: 240px;
    height: 240px;

    object-fit: cover;
    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
    .description-inner {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

    .description-photo {
        margin-right: 0;
    }

    .description-text ul {
        display: inline-block;

        text-align: left;
    }
}