.cs-row {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}
.cs-thumb {
    width: 100%;
    height: 25vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cs-info {
    padding: 20px;
}
.cs-row-top {
    background-color: var(--yellow);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    padding: 3px 10px;
    margin-bottom: 30px;
    font-size: 15px;
}
.total-amount {
    font-size: 40px;
    display: block;
    font-weight: bold;
    color: #000;
    border-bottom: 1px solid var(--yellow) !important;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.cs-title {
    font-weight: bold;
}
.cs-title,
.cs-location {
    line-height: 1.3;
}

h3.cs-heading {
    font-size: 18px;
    margin-bottom: 25px;
}
.cs-location {
    text-align: end;
		text-transform: uppercase;
}
@media (min-width: 768px) {
    .cs-row {
        grid-template-columns: 2fr 3fr;
    }
    .cs-thumb {
        height: 100%;
    }
    h3.cs-heading {
        font-size: 23px;
        padding-right: 25px;
    }
    .cs-info {
        padding: 25px 0 25px 40px
    }
}