/*
Theme Name: Sportzino Blog
Theme URI: https://sportzino.com/blog
Description: Custom theme for Sportzino blog.
Author: Sportzino
Version: 1.0.16
Text Domain: sportzino-blog
*/
body {
    font-family: var(--font-family);
    margin: 0;
    color: var(--color-text);
    background-color: var(--color-bg-header);
    background-image: url(assets/images/bg-mobile.avif);
    background-repeat:repeat-y;
    background-size:100% auto;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.spz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-height);
    padding: 0rem var(--header-padding-x);
    background: var(--color-bg-header);
    position: relative;
    z-index: 300;
}

.spz-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.spz-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.spz-header__toggle-icon {
    display: block;
    width: 2rem;
    height: 2rem;
}

.spz-header__logo {
    display: flex;
    align-items: center;
}

.spz-header__logo .custom-logo-link,
.spz-header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.spz-header__logo .custom-logo,
.spz-header__logo img {
    display: block;
    height: var(--header-logo-height);
    width: auto;
    max-width: none;
}

.spz-header__site-title {
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.spz-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.spz-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--header-nav-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.spz-header__menu li {
    margin: 0;
}

.spz-header__menu a,
.spz-header__login {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.spz-header__menu a:hover {
    opacity: 0.8;
}

.spz-header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.spz-header__signup {
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(140deg, #08f, #003cff 150%);
    color: #fff;
    border-radius: 8px;
    transform: skewX(-10deg);
    font-size: 1rem;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
}

.spz-header__signup:hover {
    filter: brightness(1.02) drop-shadow(0 0 .4rem #08F);
}

/* Side menu overlay */
.spz-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--side-menu-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spz-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Side menu panel */
.spz-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    width: var(--side-menu-width);
    height: 100%;
    background: var(--color-bg-side-menu);
    transform: translate3d(-100%, 0, 0);
    will-change: transform;
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.spz-side-menu.is-open {
    transform: translate3d(0, 0, 0);
}

.spz-side-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
}

.spz-side-menu__logo .custom-logo-link,
.spz-side-menu__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.spz-side-menu__logo .custom-logo,
.spz-side-menu__logo img {
    display: block;
    height: var(--header-logo-height);
    width: auto;
    max-width: none;
}

.spz-side-menu__site-title {
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family);
}

.closeIcon {
    font-size: 50px;
    color: var(--color-text);
    cursor: pointer;
    transform: rotate(45deg);
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
}

.spz-side-menu__nav {
    padding: 0.5rem 0 2rem;
}

.spz-side-menu__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.spz-side-menu__menu li {
    margin: 0;
}

.spz-side-menu__menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.spz-side-menu__menu a:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.spz-side-menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
}

.spz-side-menu__icon img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.spz-side-menu__label {
    flex: 1;
}

body.spz-side-menu-open {
    overflow: hidden;
    width: 100%;
}

.spz-main {
    min-height: 50vh;
}

.spz-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    margin-bottom: 100px;
}

/* Footer Style Start */
.footer-v2 {
    background-color: var(--color-bg-footer);
    margin: 0 auto !important;
    color: var(--color-footer-link);
    padding: 64px 0;
    background-image: url(images/footer-bg.avif?v=1.0);
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-v2-links-section-logo img {
    width: 10rem;
    height: 3rem;
}

.footer-v2 a {
    color: var(--color-footer-link);
}

.footer-v2 .social-media-icons {
    display: flex;
    gap: 20px;
}

.widget_text img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
}

img {
    vertical-align: middle;
    border-style: none;
}

.widget_text.footer-v2-links-section-column img {
    width: revert-layer;
}

.footer-v2 .social-media-icons img {
    display: inline-block;
    height: 36px;
    width: 36px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
}

#footer-1 {
    border-bottom: 1px solid #21326E;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

#footer-1.row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.widget_text.footer-v2-links-section-column.sec-1 {
    margin-bottom: 0;
}

.age-limit-text {
    text-align: center;
}

.footer-v2 .menu-item a,
.widget_text {
    color: var(--color-footer-link);
    text-decoration: none;
    margin-bottom: 16px;
    border: none;
    background: 0 0;
    padding: 0;
}

.footer-v2 .menu-item a {
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
}

p.footer-widgettitle {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 24px;
    font-weight: 400;
}

.mb-4 {
    margin-bottom: 4rem;
}

.footer-widgettitle {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 24px;
}

.footer-useful-link {
    display: flex;
    flex-direction: row;
    text-align: center;
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    justify-content: center;
}

.footer-useful-link .menu {
    list-style: none;
    padding: 0;
    font-size: 12px;
}

.footer-brands {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.footer-brands .custom-html-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brands .custom-html-widget>div:first-of-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.footer-useful-link .footer-widgettitle {
    font-weight: bold;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.footer-main-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-main-link .menu {
    padding: 0;
    list-style: none;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

ul#menu-sportsbook-menu {
    margin-bottom: 54px;
}

.footer-useful-link a,
.footer-useful-link .menu a {
    color: var(--color-footer-link-hover);
    text-decoration: underline;
}

.footer-brands .custom-html-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brands picture {
    aspect-ratio: 300 / 126;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.footer-v2 a.player-safety {
    background: var(--color-text);
    border-radius: .5rem;
    color: #000;
    padding: 1.5% 2%;
    text-decoration: underline;
    width: 8rem;
    white-space: nowrap;
    font-size: .8rem;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer-v2 a.player-safety:before {
    content: "";
    background-image: url(images/shield.3369b341.svg?v=1);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.age-limit-text img {
    width: 32px;
    height: 32px;
    padding: 4px;
    vertical-align: middle;
}

.footer-copyright {
    border-top: 1px solid #21326E;
    justify-content: center;
    color: #3D61A6;
    font-size: 12px;
    font-weight: 600;
    margin-top: 30px;
    padding-top: 30px;
    line-height: 24px;
}

.spz-gradient {
    background: linear-gradient(92deg, #EF330E 1.6%, #FFF 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spz-gradient.reverse {
    background: linear-gradient(92deg, #FFF 20%, #EF330E 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.spz-icon {
    width: 47px;
    height: 47px;
    background-size: contain;
    background-repeat: no-repeat;
}

.spz-header-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spz-btn-blue {
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    line-height: 22.826px;
    text-transform: uppercase;
    background: linear-gradient(140deg, #08f, #003cff 150%);
    text-decoration: none;
    width: 95%;
    max-width:334px;
    box-sizing: border-box;
    margin: 0 auto;
    line-height:72px;
    border-radius: 8px;
    transform: skewX(-10deg);
    
}

.spz-social-sharing__icon {
    width:auto;
    height:21px;
}

.spz-archive--category {
    text-align: center;
	margin-bottom: clamp(15px, 5vw, 31px);
}

.spz-archive--author {
	margin-top: clamp(25px, 5vw, 100px);
}

.spz-archive--category a {
    color: #e0a100;
    text-decoration: none;
}
.spz-archive--category a:hover {
    color: #ffd966;
}

@media (min-width: 768px) {
    body {
        background-image:url(assets/images/bg-desktop.avif);
        background-position: 0 20vh;
    }
    #footer-1.row {
        flex-direction: row;
    }

    .footer-useful-link>div:nth-of-type(2) {
        width: 370px;
    }

    .footer-useful-link {
        flex-direction: row;
        justify-content: center;
    }

    .footer-useful-link .footer-widgettitle {
        text-align: left;
    }

    .footer-useful-link .menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-useful-link>div:first-of-type {
        width: 60%;
        text-align: left;
    }

    .footer-brands {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brands .custom-html-widget>div:first-of-type {
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 14px;
    }
}

@media (min-width: 1366px) {
    .footer-useful-link .menu li {
        text-align: left;
        width: 50%;
    }

    .footer-useful-link {
        justify-content: space-between;
    }

    .footer-main-link {
        display: grid;
        grid-template-columns: .7fr 1fr .8fr .8fr .4fr;
    }
}