/* assets/css/sobre-nosotros.css */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-title {
    margin: .75rem 0 1.25rem;
}
.about-text-margin {
    margin-top: 1rem;
}
.about-graphic {
    background: var(--off);
    border-radius: var(--r-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.about-graphic-text {
    text-align: center;
}
.about-graphic-text p {
    margin-top: .5rem;
    font-size: .9rem;
}
.values-container {
    max-width: 900px;
    margin: 0 auto;
}
.value-icon-teal {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(10, 143, 130, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-icon-navy {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(12, 35, 64, .07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.roadmap-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.roadmap-title {
    color: #fff;
    margin: .75rem 0 1.25rem;
}
.roadmap-desc {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2.5rem;
}
.roadmap-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.roadmap-tag {
    background: rgba(10, 143, 130, .2);
    border: 1px solid rgba(10, 143, 130, .3);
    color: var(--teal-lt);
    font-size: .8rem;
    font-weight: 600;
    padding: .45rem 1rem;
    border-radius: 100px;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}