/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Description: Child theme for the Kadence theme.
Author: Viktor Kovtun
Template: kadence
Version: 1.0.0
Text Domain: kadence-child
*/

/* Add your custom CSS below */
/**, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }*/

:root {
    --blue: #003087;
    --blue-lt: #0050C8;
    --red: #ED1C24;
    --gold: #FFD700;
    --white: #ffffff;
    --gray-bg: #F4F6FA;
    --gray-text: #555E70;
    --dark: #101828;
    --border: #DDE2EC;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ─── TOPBAR ────────────────────────────────────────────── */
.topbar {
    background: var(--blue);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 7px 0;
}

.topbar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 18px;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-left: 0;
}

.topbar-social a:hover {
    background: var(--gold);
    color: var(--blue);
}

/* ─── HEADER ────────────────────────────────────────────── */
#masthead {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);

    br {
        display: none;
    }

}

.site-main-header-inner-wrap.site-header-row.site-header-row-has-sides.site-header-row-center-column,
.site-main-header-inner-wrap.site-header-row.site-header-row-has-sides.site-header-row-no-center {
    justify-content: space-between !important;
}


.site-main-header-inner-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none !important;
}

.logo-badge {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.logo-badge .first {
    font-family: 'Exo 2', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo-badge .ftc-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.logo-words {
    display: flex;
    flex-direction: column;
}

.logo-words .program {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-words .country {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
}

.ukraine-stripe {
    width: 4px;
    height: 32px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #005BBB 50%, #FFD700 50%);
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 4px;
    flex: 1;
}

nav a {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

nav a:hover {
    background: var(--gray-bg);
    color: var(--blue);
}

nav a.active {
    color: var(--blue);
}

.header-button-inner-wrap a {
    margin-left: auto;
    background: var(--red);
    color: var(--white);
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}

.header-button-inner-wrap a:hover {
    background: #c5171d;
    color: var(--white);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    background: var(--blue);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px,
            transparent 1px, transparent 40px
    );
}

.hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: var(--blue-lt);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") repeat;
}

.hero-gold-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        align-items: unset !important;
    }

    .hero-cards-row {
        flex-wrap: wrap;
        display: flex;
    }
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--blue);
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 6px;
    transition: background .15s;
}

.btn-primary:hover {
    background: #c5171d;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 6px;
    transition: border-color .15s, background .15s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
    color: var(--white);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.hero-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    width: 100%;
    max-width: 360px;
}

.hero-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-card-value {
    font-family: 'Exo 2', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-card-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.hero-cards-row {
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 360px;
}

.hero-cards-row .hero-card {
    flex: 1;
}

.hero-cards-row .hero-card .hero-card-value {
    font-size: 28px;
}

/* ─── STATS STRIP ───────────────────────────────────────── */
.stats-strip {
    background: var(--dark);
    padding: 0;
}

.stats-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .stats-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        .stat-item {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
    }
}

.stat-item {
    padding: 26px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* ─── SECTION COMMON ────────────────────────────────────── */
section {
    padding: 80px 0;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--blue);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── ABOUT FTC ─────────────────────────────────────────── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.about-text .section-desc {
    max-width: 100%;
}

.about-text p {
    color: var(--gray-text);
    margin-top: 16px;
    line-height: 1.75;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-chip {
    background: var(--gray-bg);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
}

.feature-chip .chip-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-chip .chip-desc {
    font-size: 13px;
    color: var(--gray-text);
}

.about-visual {
    position: relative;
}

.about-robot-box {
    background: var(--gray-bg);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
    overflow: hidden;
    position: relative;
}

.about-robot-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            90deg,
            transparent, transparent 39px,
            rgba(0, 48, 135, 0.04) 39px, rgba(0, 48, 135, 0.04) 40px
    ),
    repeating-linear-gradient(
            0deg,
            transparent, transparent 39px,
            rgba(0, 48, 135, 0.04) 39px, rgba(0, 48, 135, 0.04) 40px
    );
}

.robot-placeholder {
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.robot-icon {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 12px;
}

.robot-caption {
    font-size: 13px;
    color: var(--gray-text);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--blue);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.25);
    z-index: 2;
}
.about-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge .badge-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.about-badge .badge-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* ─── SEASON ────────────────────────────────────────────── */
.season {
    background: var(--blue);
    color: var(--white);
}

.season .section-label {
    color: var(--gold);
}

.season .section-title {
    color: var(--white);
}

.season-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.season-desc {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.season-game-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--blue);
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.season-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 34px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.timeline-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
}

.timeline-content .tl-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 2px;
}

.timeline-content .tl-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.timeline-content .tl-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.season-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--blue);
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 6px;
    transition: background .15s;
}

.btn-gold:hover {
    background: #e6c300;
}

/* ─── HOW TO JOIN ───────────────────────────────────────── */
.join {
    background: var(--gray-bg);
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: box-shadow .2s;
}

.step-card:hover {
    box-shadow: 0 8px 30px rgba(0, 48, 135, 0.1);
}

.step-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: rgba(0, 48, 135, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

/* ─── NEWS ──────────────────────────────────────────────── */
.news {
    background: var(--white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 366px));
    gap: 28px;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow .2s, transform .2s;
}

.news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.news-thumb {
    height: 180px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    position: relative;
    overflow: hidden;
}

.news-thumb.red {
    background: #b81218;
}

.news-thumb.navy {
    background: #001d5e;
}

.news-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
    rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px,
    transparent 1px, transparent 20px);
}

.news-thumb-icon {
    position: relative;
    z-index: 1;
}

.news-body {
    padding: 20px;
}

.news-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.news-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9AA5BA;
}

.news-date {
}

.news-read {
    color: var(--blue);
    font-weight: 600;
}

.btn-link {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 9px 20px;
    border-radius: 6px;
    transition: background .15s, color .15s;
}

.btn-link:hover {
    background: var(--blue);
    color: var(--white);
}

/* ─── PARTNERS ──────────────────────────────────────────── */
.partners {
    background: var(--gray-bg);
    padding: 60px 0;
}

.partners-inner {
    text-align: center;
}

.partners-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 28px;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-text);
    min-width: 120px;
    text-align: center;
    transition: border-color .15s, color .15s;
    img {
        height: 50px;
        object-fit: contain;
        width: auto;
    }
}

.partner-logo:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.partner-cta {
    margin-top: 36px;
    font-size: 14px;
    color: var(--gray-text);
}

.partner-cta a {
    color: var(--blue);
    font-weight: 600;
}

/* ─── FOOTER ────────────────────────────────────────────── */
#colophon {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    /*padding: 60px 0 0;*/
}
#colophon footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    ul {
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 1024px) {
    .my-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .my-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-words .program {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo-words .country {
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
    transition: background .15s, color .15s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--blue);
}

.footer-col h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color .15s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.first-logo-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.first-logo-footer strong {
    color: var(--gold);
    font-family: 'Exo 2', sans-serif;
}

#colophon {
    padding-block: 0;
    .site-bottom-footer-inner-wrap, .widget.widget_block {
        padding-block: 0;
    }
}