.pc-card-85a01927 {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

@media (max-width: 767px) {
    .pc-card-85a01927 {
        min-height: 250px;
    }
}

.pc-card-85a01927 .pc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.pc-card-85a01927:hover .pc-overlay {
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.pc-card-85a01927 .pc-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.pc-card-85a01927:hover .pc-content {
    justify-content: center;
}

.pc-card-85a01927 .pc-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    transition: transform 0.4s ease;
    transform: scale(1);
}

.pc-card-85a01927:hover .pc-title {
    transform: scale(1.1);
}