.summary-box {
    background: navy;
    color: whitesmoke;
    border: 1px solid rgba(135, 206, 250, .25);
    border-radius: 1rem;
    padding: 1.25rem 2rem 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin-left:auto;
    margin-right:auto;
}

.summary-box::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(0, 0, 128, .2);
}

.summary-box h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: lightskyblue;
    margin-bottom: .75rem;
    font-weight: 400;
}

.summary-box p {
    font-size: 1rem;
    color: whitesmoke;
    margin-bottom: .6rem;
    line-height: 1.7;
}

.summary-box p:last-child { 
    margin-bottom: 0; 
}

.summary-box strong { 
    color: whitesmoke; 
    font-weight: 500; 
}
