.hc-4c2fca32-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

.hc-4c2fca32-bg-default,
.hc-4c2fca32-bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.hc-4c2fca32-bg-default {
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.hc-4c2fca32-bg-default::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.3);
    pointer-events: none;
}

.hc-4c2fca32-bg-hover {
    background-color: #2196F3;
    opacity: 0;
    z-index: 2;
}

.hc-4c2fca32-icon {
    position: absolute;
    right: -100px;
    bottom: -50px;
    color: rgba(255,255,255,0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(50px, 50px) rotate(-15deg);
    z-index: 2;
    /* Fixed positioning relative to container bounds, ignoring content size */
}

.hc-4c2fca32-container:hover .hc-4c2fca32-bg-default {
    opacity: 0;
}

.hc-4c2fca32-container:hover .hc-4c2fca32-bg-hover {
    opacity: 1;
}

/* Base transform state on hover, rotation dynamically injected via inline style */
.hc-4c2fca32-container:hover .hc-4c2fca32-icon {
    transform: translate(10%, 10%) rotate(0deg); 
}

.hc-4c2fca32-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    pointer-events: none; /* Let clicks pass through empty space */
}

.hc-4c2fca32-text-wrap {
    display: flex;
    flex-direction: column;
    pointer-events: auto; /* Re-enable pointer events for content */
}

.hc-4c2fca32-title {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.hc-4c2fca32-desc {
    color: #fff;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.hc-4c2fca32-container:hover .hc-4c2fca32-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

.hc-4c2fca32-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: auto; /* Re-enable pointer events for button */
}

.hc-4c2fca32-btn:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
}

.hc-4c2fca32-btn-icon-left,
.hc-4c2fca32-btn-icon-right {
    display: inline-flex;
    align-items: center;
}

.hc-4c2fca32-btn-icon-left svg,
.hc-4c2fca32-btn-icon-right svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}