/* ABOUT PAGE */

#about {
    display: grid;
    grid-template-rows: auto auto auto;
    font-size: 1.25em;
    line-height: 1.5;
    font-family: KarlaRegular, Arial, Helvetica, sans-serif;
}

#aboutLabel {
    font-family: KarlaRegular;
}

#contactLabel {
    font-family: KarlaRegular;
}

.aboutSection {
    text-align: justify;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0px;
    margin-left: 80px;
    margin-right: 150px;
    margin-bottom: 50px;
}

#about1 {
    margin-bottom: 60px;
}

#about3 {
    margin-bottom: 600px;
}

#contactInfo {
    line-height: 1.25;
}

.socials {
    text-decoration: none;
    color: black;
}

#headshot {
    object-fit: contain;
    max-height: 100%;
    max-width: 40%;
    margin-top: 80px;
}

#columbia {
    text-decoration: underline;
    color: black;
}

#columbia:hover {
    text-decoration: underline;
}

.email {
    color: black;
    font-family: KarlaRegular, Arial, Helvetica, sans-serif;
}

.pressItem {
    display: grid;
    grid-template-columns: 90% 1fr;
    border-bottom: solid 1px black;
    text-align: left;
}

.pressItem p {
    margin-top: 15px;
}

.pressLink a {
    text-decoration: none;
    color: black;
}

.pressLink a:hover {
    color: darkblue;
    cursor: inherit;
}

.pressYear {
    justify-self: end;
}

/* Media Query for Splash Page Images (Single Carousel */

@media only screen and (max-width: 1024px) /* and (orientation: portrait) */ {

    .aboutSection {
        text-align: justify;
        display: inline;
        margin-top: 0px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 50px;
    }

    #about1 {
        margin-bottom: 40px;
    }
    
    #about3 {
        margin-bottom: 40px;
    }
    
    #headshot {
        margin-top: 00px;
    }
    
    

}