.ecb-wrapper {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.ecb-content-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.ecb-content-inner {
    width: 100%;
    height: auto;
    display: block;
}
/* Icon List Styles */
.ecb-icon-list {
    display: flex;
    box-sizing: border-box;
}
.ecb-layout-vertical .ecb-icon-list {
    flex-direction: column;
}
.ecb-layout-horizontal .ecb-icon-list {
    flex-direction: row;
    flex-wrap: wrap;
}
.ecb-list-item {
    display: flex;
    align-items: flex-start;
}
.ecb-list-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ecb-list-item-title {
    margin: 0 0 4px 0;
    padding: 0;
    font-weight: 600;
}
.ecb-list-item-desc {
    margin: 0;
    padding: 0;
}
/* Text & Image Default Styles */
.ecb-text-content {
    line-height: 1.6;
}
.ecb-text-content p:last-child {
    margin-bottom: 0;
}
/* Image Repeater layout structures */
.ecb-image-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ecb-image-content-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.ecb-image-wrap {
    flex-shrink: 0;
}
.ecb-image {
    max-width: 100%;
    width: 100%;
    display: block;
}
.ecb-image-text-wrap {
    flex-grow: 1;
}
.ecb-image-title {
    margin: 0 0 5px 0;
    padding: 0;
}
.ecb-image-desc {
    margin: 0;
    padding: 0;
}
/* Overlays */
.ecb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}
/* Toggle Button Default Styles */
.ecb-button-wrapper {
    width: 100%;
}
.ecb-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.ecb-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
/* State changes */
.ecb-content-container.is-expanded .ecb-overlay {
    opacity: 0 !important;
}
.ecb-content-container.is-expanded {
    max-height: var(--ecb-expanded-height) !important;
}
.ecb-toggle-button.is-active .ecb-btn-icon {
    transform: rotate(180deg);
}
.ecb-list-item {
    text-decoration: none;
    cursor: default;
}
a.ecb-list-item {
    cursor: pointer;
}
a.ecb-list-item:hover {
    text-decoration: none;
}
