.entry-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.entry-container .content-card-container {
    margin-bottom: .5rem;
}

.content-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.content-header h1 {
    font-size: 3rem;
    margin-bottom: .5rem;
    text-align: left;
}

.content-header-image {
    height: 100%;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    width: fit-content;
    align-self: center;
}

a {
    color: white;
}

blockquote {
    position: relative;
    
    background-color: rgba(0, 0, 0, 0.3);
    
    padding: .05rem;
    padding-left: 1rem;
    margin: 0 auto;

    border-radius: 5px;
}

blockquote::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #315577;
}