/* Promo Banner Widget Styles */
.promo-banner-item {
    position: relative;
    display: block;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.promo-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    transition: transform 0.4s ease;
    will-change: transform;
}

.promo-banner-item:hover .promo-banner-bg {
    transform: scale(1.08);
}

.promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px 16px 16px 16px;
    box-sizing: border-box;
    z-index: 2;
}

.promo-banner-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
