
.about-hero{
    background: #f5f5f5;
    border-bottom: 1px solid #eaeaea;
    padding: 2.5rem 0;
}
.about-hero h1{
    margin: 0 0 .25rem;
    font-size: 2.2rem;
    color: #333;
}
.about-hero .lead{
    margin: 0;
    color: #555;
    font-size: 1.05rem;
}


.about{
    padding: 2rem 0 3rem;
}
.about-section{
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.about-section + .about-section{
    margin-top: 1rem;
}
.about-section h2{
    margin: 0 0 .6rem;
    font-size: 1.4rem;
    color: #222;
}
.about-section p{
    margin: 0;
    color: #444;
    line-height: 1.65;
}



.about-cards{
    display: grid;
    gap: 1.5rem;
}


.about-card{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}


.about-card:nth-child(even){
    flex-direction: row-reverse;
}


.about-card__media{
    flex: 0 0 clamp(260px, 34vw, 420px);  
    aspect-ratio: 16 / 9;                 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;                      
}


.about-card__media img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;                   
    display: block;
}


.about-card__content{
    flex: 1 1 auto;
}
.about-card__content h3{
    margin: 0 0 .5rem;
    font-size: 1.35rem;
}
.about-card__content p{
    margin: 0;
    line-height: 1.7;
}


@media (max-width: 900px){
    .about-card,
    .about-card:nth-child(even){
        flex-direction: column;
    }
    .about-card__media{
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

.about-card__media{
    background: #fff;

    border-radius: 10px;
    overflow: hidden;
}


.about-card__media img{
    background: #fff;
    border-radius: inherit;
    display: block;
}

