/* Industry Champion Banner */
.industry-champion-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    animation: icb-slide-in 0.4s ease-out;
}

.industry-champion-banner a {
    display: block;
    line-height: 0;
}

.industry-champion-banner img {
    max-width: 150px;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.industry-champion-banner a:hover img {
    transform: scale(1.02);
}

.industry-champion-banner__close {
    position: absolute;
    top: -30px;
    right: 0;
    width: 28px;
    height: auto;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: background 0.2s ease;
}

.industry-champion-banner__close:hover {
    background: rgba(0, 0, 0, 0.75);
}

.industry-champion-banner__close svg {
    display: block;
    stroke: #c36;
}

.industry-champion-banner__close:hover svg {
    stroke: #fff;
}

@keyframes icb-slide-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 676px) {
    .industry-champion-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .industry-champion-banner img {
        max-width: 100%;
        width: 100%;
    }
}
