.hcc-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.hcc-block-wrapper {
    margin-bottom: 30px;
}

.hcc-block {
    display: block;
    position: relative;
    background-color: #f7f4ee;
    overflow: hidden;
    text-decoration: none !important;
    height: 100%;
}

.hcc-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    max-height: 430px;
}

.hcc-title {
    position: absolute;
    top: 30px;
    left: 30px;
    margin: 0;
    font-size: 32px;
    color: #222;
    font-weight: normal;
    z-index: 2;
}

.hcc-block:hover .hcc-image {
    transform: scale(1.03);
}

.hcc-block:hover .hcc-title {
    color: #000;
}
@media (max-width: 767px) {
    .hcc-title {
        top: 70%;
    }
}