:root {
    --blog-width: 50rem;
}

.about-header {
    max-width: 115rem;
    margin: 0 auto;
    height: 25rem;
    overflow: hidden;
}

.about-container {
    background-color: white;
    max-width: 72rem;
    margin: 0 auto;
    width: 94%;
    padding: 3rem;
    margin-top: -15rem;
    position: relative;
}

.about-container .box-tag {
    font-weight: 500;
    font-size: 0.85rem;
}

.about-container h1 {
    font-weight: 300;
    font-size: 3rem;
    margin: 1rem 0 2rem 0;
}


.about-container p {
    max-width: var(--blog-width);
    margin: 0 auto 2rem auto;
    font-size: var(--fs03);
    color: var(--black-80);
    font-weight: 300;
    line-height: 1.4;
}

.about-container .opening {
    color: var(--black);
    font-weight: 400;
}

.about-container h2, .about-container h3 {
    font-weight: 400;
    margin: 0 auto 1rem auto;
    max-width: var(--blog-width);
}

.image-right {
    max-width: 28rem;
    float: right;
    margin: 0 0 2rem 3rem;
}

.blog-headshot img {
    float: left;
    margin: 0 2rem 1rem 0;
    width: 35%;
    max-width: 14rem;
}

.about-container h2 {
    border-left: 4px solid var(--green);
    padding-left: 0.75rem;
    margin-top: 3rem;
}

.about-container figcaption {
    color: var(--black-50);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.models-highlight {
    max-width: 35rem;
    margin: 3rem auto 5rem auto;
    background-color: var(--black-05);
    padding: 2rem 3rem;
    
}

.models-highlight-content p  {
    text-align: center;
    margin: 0;
    font-size: var(--fs02);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.models-highlight a {
    display: block;
    margin: 1rem auto 0 auto;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 1000px) { 
    .image-right {
        max-width: 20rem;
    }
}

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

    .about-container {
        margin-top: -20rem;
        padding: 1.5rem;
        border-top: solid 1px var(--black-20);
        border-right: solid 1px var(--black-20);
        border-left: solid 1px var(--black-20);
    }

    .about-container .box-tag {
        font-size: 0.72rem;
    }

    .about-container h1 {
        font-size: 2.5rem;
        margin: 0.5rem 0 1rem 0;
    }

    .image-right {
        width: 100%;
        max-width: 100%;
        float: none;
        margin: 2rem 0;
    }

    .about-container figcaption {
        border-bottom: solid 1px var(--black-10);
        padding-bottom: 1.5rem;
    }

    .about-container p {
        margin: 0 auto 1.5rem auto;
    }

    .models-highlight p {
        margin: 0;
    }

    .about-container figcaption {
        font-size: 0.88rem;
    }
}

@media only screen and (max-width: 415px) { 
    .about-container {
        margin-top: -22.5rem;
    }

    .models-highlight {
        padding: 1.5rem 1rem;
    }

}