/* Image Toast Widget — Frontend Styles */

.itw-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.itw-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.itw-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    line-height: 0;
}

/* Toast overlay */
.itw-toast {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 20, 40, 0.85);
    border-radius: 12px;
    padding: 10px 14px;
    box-sizing: border-box;
    z-index: 10;
    line-height: normal;
}

/* Dot */
.itw-dot {
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #F0A020;
}

/* Text column */
.itw-toast-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.itw-eyebrow {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.itw-main-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
}
