.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }
}

.about__text {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about__img-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about__img-container {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border-radius: .5rem;
}

.about__img {
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 6rem 2rem;
    }

    .about__img-container {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: .5rem;
    }

    .about__img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .about__img-gallery {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.about__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-secondary);
    padding: 6rem 0;
}

.about__banner-container {
    text-align: center;
    font-weight: 300;
}

.about__banner-text {
    max-width: 1120px;
    font-size: 2.5rem;
    font-style: italic;
    line-height: 60px;
}

.about__banner-author {
    font-style: italic;
    font-size: 1.875rem;
    line-height: 60px;
    margin-top: 1rem;
}

/* Sección de equipo */


.team {
    padding: 6rem 2rem;
}

.team__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .team__container {
        grid-template-columns: 1fr;
    }
}

.team__info {
    grid-column: span 8;
}

.team__header {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__title {
    margin-bottom: 1rem;
}

.team p {
    margin-bottom: 1rem;
}

/* Aside de versiones */
.aside__versions {
    grid-column: span 4;
    padding: 2rem;
    border: 1px solid var(--color-tertiary);
    height: fit-content;
    position: sticky;
    top: 1rem;
}

@media (max-width: 1024px) {
    .aside__versions {
        grid-column: span 12;
    }
}

.aside__versions h3 {
    margin-bottom: 1rem;
}

.aside__versions ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.aside__versions a {
    color: var(--color-tertiary);
}