.ihc-card-8a14898f {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}
.ihc-image-wrapper-8a14898f img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}
.ihc-content-8a14898f {
    position: relative;
    margin-top: 15px;
    height: 40px; /* space for title and button to swap */
}
.ihc-title-8a14898f {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    opacity: 1;
}
.ihc-button-8a14898f {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
}
.ihc-card-8a14898f:hover .ihc-title-8a14898f {
    opacity: 0;
    transform: translateY(-10px);
}
.ihc-card-8a14898f:hover .ihc-button-8a14898f {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
