html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.42857;
    color: #333;
    background-color: #fff;
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.heading1 {
    font-size: 52px;
    text-align: left;
    margin-left: 40px;
    font-weight: 500;
}

.heading1-margin {
    margin-left:40px;
    margin-right: 40px;
    margin-bottom:20px; 
    line-height:1.2
}

.heading2 {
    font-size: 20px;
    text-align: left;
    margin-top: 20px;
    margin-left: 40px;
    font-weight: 500;
    color: gray;
}

.heading3 {
    font-size: 30px;
    color: blue;
}

sup {
    font-size: 1vw;
}

.subheading {
    text-align:left; 
    font-weight: 600;
    font-size:32px; 
    margin:18px 0; 
    border-radius:6px;
    text-transform: uppercase;
}

.main-content {
    margin-top: 40px; 
    margin-left:32px; 
    margin-right:32px;
}

section {
    padding: 4px 4px; 
    margin: 4px 0;
}

.tag {
    scroll-margin-top: 120px;
}

.citation {
    font-size: 14px;
}

a {
    color: blue;
    text-decoration: none;
}

.whatsnew {
    color: blue;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.team-member {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.team-member img {
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:8px;
    float:left;
    padding:4px;
}

.landing {
    position:relative; 
    z-index:1; 
    font-size:3em; 
    color:#0878e9;
    margin-bottom: 16px;
}

.news-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width:700px) {
    .heading1 {
        font-size: 36px;
        text-align: left;
        margin-left: 40px;
        font-weight: 500;
    }

    .heading2 {
        font-size: 16px;
        text-align: left;
        margin-top: 20px;
        margin-left: 40px;
        font-weight: 500;
        color: gray;
    }

    .heading3 {
        font-size: 20px;
        color: blue;
    }

    .landing {
        position:relative; 
        z-index:1; 
        font-size:2em; 
        color:#0878e9;
        margin-bottom: 16px;
        flex-wrap: nowrap;
    }

    .news-flex {
        flex-wrap: wrap;
    }
    
    img {
        display: block;
        margin-bottom: 16px;
        width: 100%;
        height: auto;
    }
}