.hst-container-035a68bc {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hst-overlay-035a68bc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hst-tiles-wrapper-035a68bc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%; /* Spans full height of the widget container */
    display: flex;
    align-items: flex-end; /* Keeps items at bottom in normal state */
    z-index: 2;
}

.hst-tile-035a68bc {
    flex: 1 1 0%; /* perfectly identical width distribution */
    height: 85px; /* Collapsed height (adjusted for icon + title stack) */
    position: relative;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), flex-grow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.hst-tile-inner-035a68bc {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.hst-tile-bg-overlay-035a68bc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Collapsed title & icon vertical alignment */
.hst-tile-collapsed-035a68bc {
    height: 85px;
    min-height: 85px;
    display: flex;
    flex-direction: column; /* Stack vertically! */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    transition: opacity 0.25s ease, height 0.25s ease, min-height 0.25s ease;
    opacity: 1;
    z-index: 2;
    position: relative;
}

.hst-tile-icon-collapsed-035a68bc {
    margin-bottom: 5px;
}

.hst-tile-icon-collapsed-035a68bc svg {
    width: 22px;
    height: 22px;
}

/* Expanded full-height container */
.hst-tile-expanded-035a68bc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Hover: Scale height of active tile to 100% of parent container */
.hst-tile-035a68bc:hover,
.hst-tile-035a68bc.hst-active-touch {
    height: 100%; /* Expanded to full height of parent hst-tiles-wrapper-035a68bc */
    z-index: 5;
}

.hst-tile-035a68bc:hover .hst-tile-collapsed-035a68bc,
.hst-tile-035a68bc.hst-active-touch .hst-tile-collapsed-035a68bc {
    opacity: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
}

.hst-tile-035a68bc:hover .hst-tile-expanded-035a68bc,
.hst-tile-035a68bc.hst-active-touch .hst-tile-expanded-035a68bc {
    opacity: 1;
}

/* Icons & Typography defaults */
.hst-tile-icon-035a68bc {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hst-tile-title-035a68bc {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.hst-tile-desc-035a68bc {
    margin: 10px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 90%;
}

/* Fluid Mobile responsive layout (Self-Contained Flex-Grow) */
@media (max-width: 767px) {
    .hst-tiles-wrapper-035a68bc {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hst-tile-035a68bc {
        width: 100%;
        flex: 1 1 auto;
        height: auto; /* Uses flex-grow for layout rather than absolute heights */
        transition: flex-grow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .hst-tile-collapsed-035a68bc {
        height: 75px;
        min-height: 75px;
    }

    .hst-tile-expanded-035a68bc {
        display: none;
        padding: 15px 10px;
    }

    /* Active state on mobile: grows its flex slice while others shrink */
    .hst-tile-035a68bc:hover,
    .hst-tile-035a68bc.hst-active-touch {
        flex-grow: 4; /* Takes up majority of height within wrapper bounds */
        height: auto;
    }

    .hst-tile-035a68bc:hover .hst-tile-expanded-035a68bc,
    .hst-tile-035a68bc.hst-active-touch .hst-tile-expanded-035a68bc {
        display: flex;
    }
}
