.about {
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

.about h1 {
    color: #1e293b;
    margin-bottom: 20px;
}

.about p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-hero{
    background-image: url(../../images/portrait-female-chef-white-uniform.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    position: relative;
}
.about-hero .row{
    position: relative;
}

@media (min-width: 768px) {
    .about-hero .row{
        min-height: 150px;
        position: relative;
    }
}
@media (max-width: 575.98px) {
    .about-hero{
        background-size: cover;
    }
}

.about-hero::before{
    content: '';
    background-image: linear-gradient(to right, rgba(110, 66, 193, 1) 0%, rgba(110, 66, 193, 1) 20%, rgba(110, 66, 193, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.card.mission{
    background-image: url(../../images/purple-cake-with-blackberries.jpg);
    background-size: cover;
    border-radius: 1rem;
    overflow: hidden;
}
.card.mission::before{
    content: '';
    background-image: linear-gradient(to right, rgba(255, 193, 7, 1), rgba(255, 193, 7, 0));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.card.mission .row{
    min-height: 250px;
    position: relative;
}
.card.vision{
    background-image: url(../../images/purple-cupcake-with-icing.jpg);
    background-size: cover;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
}
.card.vision::before{
    content: '';
    background-image: linear-gradient(to right, rgba(110, 66, 193, 1), rgba(110, 66, 193, 0));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.card.vision .row{
    min-height: 250px;
    position: relative;
}

.about-cta .card{
    background-image: url(../../images/halloween-scary-bright-cupcake.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .about-cta .card{
        background-size: contain;
    }
}
.about-cta .card::before{
    content: '';
    background-image: linear-gradient(to right, rgba(110, 66, 193, 1) 0%, rgba(110, 66, 193, 1) 50%, rgba(110, 66, 193, 0) 75%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}