/* =====================================================
   MOF LEAGUE KIT HOMEPAGE BANNER
===================================================== */

.mof-leaguekit-banner {
    position: relative;
    width: calc(100% - 30px);
    max-width: 1180px;
    margin: 20px auto 25px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(229, 27, 35, 0.65);
    border-radius: 12px;
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 13, 0.98) 0%,
            rgba(8, 13, 21, 0.96) 55%,
            rgba(52, 7, 11, 0.94) 100%
        );
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(229, 27, 35, 0.08);
}

.mof-leaguekit-banner::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -50px;
    width: 360px;
    height: 280px;
    border-radius: 50%;
    background: rgba(229, 27, 35, 0.16);
    filter: blur(70px);
    pointer-events: none;
}

.mof-leaguekit-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 28px 38px;
    box-sizing: border-box;
}

.mof-leaguekit-banner-content {
    max-width: 775px;
}

.mof-leaguekit-banner-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 95px;
    height: 42px;

    margin-bottom: 12px;

    border: 2px solid #ff4d55;
    border-radius: 999px;
    box-shadow:
    0 0 18px rgba(229,27,35,.45),
    inset 0 0 8px rgba(255,255,255,.08);

    background: #e51b23;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-align: center;
}

.mof-leaguekit-banner h2 {
    margin: 0px;
    margin-left: 100px;
    color: #ffffff;
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mof-leaguekit-banner p {
    margin: 12px 0 0;
    color: #b6bdc8;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.mof-leaguekit-banner-action {
    flex: 0 0 auto;
}

.mof-leaguekit-banner-action a,
.mof-leaguekit-banner-action a:link,
.mof-leaguekit-banner-action a:visited {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    box-sizing: border-box;
    border: 1px solid #e51b23;
    border-radius: 5px;
    background: #e51b23;
    color: #ffffff !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.7px;
    text-decoration: none !important;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(229, 27, 35, 0.27);
}

.mof-leaguekit-banner-action a:hover {
    transform: translateY(-2px);
    border-color: #ff333b;
    background: #ff333b;
    color: #ffffff !important;
}

@media screen and (max-width: 750px) {

    .mof-leaguekit-banner {
        width: calc(100% - 24px);
        margin: 14px auto 20px;
    }

    .mof-leaguekit-banner-inner {
        display: block;
        padding: 27px 22px;
        text-align: center;
    }

    .mof-leaguekit-banner h2 {
        font-size: 38px;
    }

    .mof-leaguekit-banner p {
        font-size: 14px;
    }

    .mof-leaguekit-banner-action {
        margin-top: 22px;
    }

    .mof-leaguekit-banner-action a {
        width: 100%;
    }
}