.ibh-2ef4caad-box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

/* Alignments */
.ibh-2ef4caad-align-left .ibh-2ef4caad-box {
    align-items: flex-start;
    text-align: left;
}
.ibh-2ef4caad-align-center .ibh-2ef4caad-box {
    align-items: center;
    text-align: center;
}
.ibh-2ef4caad-align-right .ibh-2ef4caad-box {
    align-items: flex-end;
    text-align: right;
}

/* Base Headings & Description Transitions */
.ibh-2ef4caad-title,
.ibh-2ef4caad-description {
    margin: 0;
    transition: color 0.3s ease;
}

.ibh-2ef4caad-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Image Wrappers */
.ibh-2ef4caad-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}

.ibh-2ef4caad-img-wrapper a {
    display: block;
    width: 100%;
}

.ibh-2ef4caad-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease, border-radius 0.3s ease;
}

/* Image Swapping Strategy */
.ibh-2ef4caad-img-wrapper.has-hover-image .ibh-2ef4caad-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.ibh-2ef4caad-box:hover .ibh-2ef4caad-img-wrapper.has-hover-image .ibh-2ef4caad-img-hover {
    opacity: 1;
}

.ibh-2ef4caad-box:hover .ibh-2ef4caad-img-wrapper.has-hover-image .ibh-2ef4caad-img-normal {
    opacity: 0;
}
