.container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}


.site-branding img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.main-navigation {
    display: flex;
    justify-content: center;
}

.as-secondlogo a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
}

.as-secondlogo a:hover {
    color: #DB3F18;
}

.column {
    float: left;
    width: 33.33%;
    padding: 5px;
}

#card-row::after {
    content: "";
    clear: both;
    display: table;
}

.card {
    border: 0;
}

.col {
    margin-bottom: 2rem;
}

.card-img{
    border-radius: 18px;
	height: 235px

}

.card-img-overlay {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 17px;
}

.card-title, .card-text{
    color: white;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.card-text{
    font-size: medium;
    font-weight: 400;
}

.btn-orange{
    background-color: #DB3F18;
    border-color: #DB3F18;
}

.btn-orange:hover{
    background-color: #F7471B;
    border-color: #F7471B;
}

.as-review{
    margin-bottom: 1rem;
}

.as-review p{
    font-size: large;
    font-weight: 500;
}

.as-review span{
    font-size: medium;
    font-weight: 400;
}

