/*ULTIMOS DATOS*/

.profile--content {
    border-radius: 2px !important;
}

@media screen and (max-width:1418px) {

    .section--literatura,
    .section--matematicas {
        border-radius: 0;
        margin: 0 20px;
        border-radius: 5px;
        box-shadow: 0 0 4px 0 #444;
    }

    .section--profile__div {
        box-shadow: 0 0 8px 0 #888;
    }
}

@media screen and (max-width:1014px) {
    .profile--edit__div {
        margin-top: 0;
        margin-bottom: 20px;
        padding-top: 0;
    }

    .content--profile {
        width: 100%;
        min-height: 94vh;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-template-areas:
            "perfil"
            "literatura"
            "matematicas";
        gap: 30px;
    }

    .section--profile__div {
        grid-template-columns: 1fr;
        grid-template-areas:
            "imagen"
            "contenido"
            "boton";
        gap: 20px;
        border-radius: 5px;
        box-shadow: 0 0 6px 0 #444;
    }

    .profile--img__div img {
        width: 250px;
        height: 250px;
        margin-top: 15px;
        border-radius: 50%;
    }
}