.b-year-footer {
    text-align: center;
    font-size: 12px;
    opacity: .8;
}

.b-year-footer__text {
    margin: 0;
}

.b-year-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.b-year-footer__logo {
    vertical-align: middle;
    transition: opacity .2s ease;
}

.b-year-footer__link:hover .b-year-footer__logo {
    opacity: .8;
}


















/*LOGO CAROUSEL CSS " */

/* =========================================================
   PARTNER LOGO CAROUSEL
========================================================= */

.bplc-scroller {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 120px;
}

.bplc-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: bplc-scroll 90s linear infinite;
    will-change: transform;
}

.bplc-scroller.is-reverse .bplc-track {
    animation-direction: reverse;
}

.bplc-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
}

.bplc-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bplc-item img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bplc-item a:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

@keyframes bplc-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Optional: pause on hover */
.bplc-scroller:hover .bplc-track {
    animation-play-state: paused;
}

/* Tablet */
@media (max-width: 980px) {
    .bplc-scroller {
        height: 100px;
    }

    .bplc-item {
        margin: 0 18px;
    }

    .bplc-item img {
        height: 65px;
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bplc-scroller {
        height: 85px;
    }

    .bplc-item {
        margin: 0 14px;
    }

    .bplc-item img {
        height: 50px;
        max-width: 120px;
    }

    .bplc-track {
        animation-duration: 70s;
    }
}











/* =========================================================
   SELECTED SPONSORS GRID
========================================================= */

.bssg-wrap {
    position: relative;
    width: 100%;
}

.bssg-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.bssg-wrap.bssg-cols-1 .bssg-grid {
    grid-template-columns: 1fr;
}

.bssg-wrap.bssg-cols-2 .bssg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bssg-wrap.bssg-cols-3 .bssg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bssg-wrap.bssg-cols-4 .bssg-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bssg-wrap.bssg-cols-auto .bssg-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.bssg-item {
    min-width: 0;
}

.bssg-item-inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    min-height: 150px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bssg-item-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-color: #d9e2ec;
}

.bssg-item-inner a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bssg-item-inner img {
    display: block;
    max-width: 100%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bssg-item-inner:hover img {
    transform: scale(1.03);
}

/* =========================================================
   SKELETON LOADING
========================================================= */

.bssg-wrap.is-loading .bssg-item-inner {
    pointer-events: none;
}

.bssg-wrap.is-loading .bssg-item-inner img {
    opacity: 0;
}

.bssg-wrap.is-loading .bssg-item-inner::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        #f1f5f9 0%,
        #e2e8f0 20%,
        #f8fafc 40%,
        #e2e8f0 60%,
        #f1f5f9 100%
    );
    background-size: 200% 100%;
    animation: bssg-shimmer 1.5s infinite linear;
    z-index: 1;
}

@keyframes bssg-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {
    .bssg-wrap.bssg-cols-4 .bssg-grid,
    .bssg-wrap.bssg-cols-3 .bssg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bssg-item-inner {
        min-height: 130px;
        padding: 20px;
    }

    .bssg-item-inner img {
        max-height: 72px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .bssg-grid,
    .bssg-wrap.bssg-cols-1 .bssg-grid,
    .bssg-wrap.bssg-cols-2 .bssg-grid,
    .bssg-wrap.bssg-cols-3 .bssg-grid,
    .bssg-wrap.bssg-cols-4 .bssg-grid,
    .bssg-wrap.bssg-cols-auto .bssg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .bssg-item-inner {
        min-height: 110px;
        padding: 16px;
        border-radius: 14px;
    }

    .bssg-item-inner img {
        max-height: 52px;
    }

    .bssg-wrap.is-loading .bssg-item-inner::before {
        inset: 14px;
        border-radius: 10px;
    }
}



.bssg-section {
    width: 100%;
}

.bssg-title {
    margin: 0 0 20px;
    font-weight:700;
}







