.card-grid{
    width: 100%;
    max-width: 1032px;
    margin-top: 40px;
}

.card-grid h2{
    font-family: Flaviotte;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin-bottom: 34px;
}

.card-grid-content{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 18px;
}

.card-grid .card{
    width: 332px;
    display: flex;
    gap: 18px;
}

.card-grid .image-container{
    width: 157px;
    height: 179px;
    border-radius: 10px;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}

.card-grid .image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease-in-out;
}

.card-grid .image-container img:hover{
    transform: scale(1.1);
}

.card-grid a{
    text-decoration: none;
}

.card-grid .card-meta{
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-grid h3{
    color: #000;
    font-family: Flaviotte;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card-grid h4{
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

@media screen and (max-width: 768px) {
    .card-grid-content{
        flex-direction: column;
    }
}