/*
Theme Name: FussballFokus
Theme URI: https://fussballfokus.com/
Author: FussballFokus
Author URI: https://fussballfokus.com/
Description: Modern German football news magazine theme for FussballFokus.
Version: 2.0.0
Text Domain: fussballfokus
*/

/* =========================================================
   VARIABLES
========================================================= */

:root {
    --red: #e30613;
    --red-dark: #b9000b;

    --black: #07090c;
    --dark: #0d1015;
    --dark-2: #151922;

    --white: #ffffff;

    --bg: #f4f5f7;
    --card: #ffffff;

    --text: #11151b;
    --muted: #747b86;

    --border: #e5e7eb;

    --green: #18b66a;

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

ul,
ol {
    margin-top: 0;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: #050608;
    color: #8e949e;
    font-size: 11px;
    border-bottom: 1px solid #1b1f25;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 700;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(24,182,106,.12);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: var(--black);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #20242b;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.4px;
    white-space: nowrap;
}

.site-logo:hover {
    color: #fff;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.site-logo span {
    color: var(--red);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 3px;
}

.main-navigation a {
    color: #cbd0d7;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #fff;
    background: #1b1f25;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-tool {
    width: 38px;
    height: 38px;
    border: 0;
    background: #181c22;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    transition: .2s ease;
}

.header-tool:hover {
    background: var(--red);
}

.mobile-menu-toggle {
    display: none;
}


/* =========================================================
   BREAKING NEWS
========================================================= */

.breaking-news {
    background: var(--red);
    color: #fff;
    overflow: hidden;
}

.breaking-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.breaking-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding-right: 18px;
    border-right: 1px solid rgba(255,255,255,.3);
    white-space: nowrap;
}

.breaking-track {
    overflow: hidden;
    flex: 1;
}

.breaking-text {
    padding-left: 18px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    animation: newsMove 28s linear infinite;
}

@keyframes newsMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 26px 0 35px;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(227,6,19,.08),
            transparent 30%
        ),
        #f4f5f7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 18px;
}

.hero-main {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: .4s ease;
}

.hero-main:hover {
    transform: translateY(-3px);
}

.hero-main-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
    padding: 6px 9px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.tag.green {
    background: var(--green);
}

.hero-title {
    max-width: 800px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin: 0 0 14px;
}

.hero-description {
    max-width: 700px;
    color: #d2d5da;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 17px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #aeb4bd;
    font-size: 10px;
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.side-story {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 250px;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: .3s ease;
}

.side-story:hover {
    transform: translateY(-3px);
}

.side-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );
}

.side-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
}


/* =========================================================
   LIVE STRIP
========================================================= */

.live-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.live-strip-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.live-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
    color: var(--red);
    white-space: nowrap;
}

.matches {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.matches::-webkit-scrollbar {
    display: none;
}

.match {
    min-width: 180px;
    background: #f5f6f8;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
}

.match-time {
    color: var(--red);
    font-weight: 900;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 58px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 24px;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-title::before {
    content: "";
    width: 5px;
    height: 25px;
    border-radius: 3px;
    background: var(--red);
}

.section-link {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   NEWS
========================================================= */

.news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.feature-news {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: .3s ease;
}

.feature-news:hover {
    transform: translateY(-3px);
}

.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.94)
    );
}

.feature-title {
    font-size: 29px;
    line-height: 1.12;
    font-weight: 900;
    margin: 0 0 10px;
}

.small-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: .25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.news-image {
    height: 150px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-body {
    padding: 15px;
}

.news-body .tag {
    font-size: 8px;
    padding: 5px 7px;
    margin-bottom: 8px;
}

.news-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    margin: 0;
}

.news-meta {
    color: #9197a0;
    font-size: 9px;
    margin-top: 10px;
}


/* =========================================================
   TRENDING
========================================================= */

.trending-section {
    background: var(--dark);
    color: #fff;
    padding: 58px 0;
}

.trending-section .section-title {
    color: #fff;
}

.trending-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

.trend-main {
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.trend-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );
}

.trend-number {
    font-size: 12px;
    color: #8f96a0;
    font-weight: 900;
}

.trend-title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin: 5px 0 0;
}

.trend-list {
    display: flex;
    flex-direction: column;
}

.trend-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #272c34;
}

.trend-item:last-child {
    border-bottom: 0;
}

.rank {
    font-size: 21px;
    color: #4d535c;
    font-weight: 900;
}

.trend-item h4 {
    font-size: 13px;
    line-height: 1.35;
    margin: 0;
}

.trend-item span {
    display: block;
    color: #747b85;
    font-size: 9px;
    margin-top: 5px;
}


/* =========================================================
   TRANSFERS
========================================================= */

.transfer-section {
    padding: 58px 0;
    background: #fff;
}

.transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}

.transfer-live {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.transfer-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.transfer-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
}

.transfer-status {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 9px;
}

.transfer-status.confirmed {
    color: var(--green);
}

.transfer-player {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 13px;
}

.transfer-route {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #737a84;
}

.club {
    padding: 6px 9px;
    border-radius: 5px;
    background: #f2f3f5;
    font-weight: 700;
}

.arrow {
    color: var(--red);
    font-size: 16px;
}


/* =========================================================
   CLUBS
========================================================= */

.clubs-section {
    padding: 58px 0;
    background: #f3f4f6;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.club-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 16px 8px;
    text-align: center;
    transition: .2s ease;
}

.club-card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
}

.club-logo {
    width: 42px;
    height: 42px;
    background: #f0f1f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 10px;
    font-weight: 900;
    color: #555b64;
}

.club-card span {
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 60px 0;
    background: #f3f4f6;
}

.newsletter-box {
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(227,6,19,.2),
            transparent 35%
        ),
        var(--black);
    color: #fff;
    border-radius: 14px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter h2 {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.8px;
    margin: 0;
}

.newsletter p {
    color: #9198a2;
    font-size: 12px;
    margin: 5px 0 0;
}

.newsletter-form {
    display: flex;
    min-width: 390px;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 14px;
    border-radius: 6px 0 0 6px;
}

.newsletter-form button {
    border: 0;
    background: var(--red);
    color: #fff;
    padding: 0 20px;
    font-weight: 900;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #06080b;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--red);
}

.footer-about {
    max-width: 360px;
    color: #777e89;
    font-size: 11px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 0 0 15px;
}

.footer-col a {
    display: block;
    color: #777e89;
    font-size: 11px;
    margin-bottom: 9px;
}

.footer-col a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #1b1f24;
    padding-top: 20px;
    color: #626974;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
}


/* =========================================================
   =========================================================
   SINGLE POST - MATCHES single.php EXACTLY
   =========================================================
========================================================= */

.ff-single-page {
    background: var(--bg);
    min-height: 100vh;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.ff-article-header {
    background: #fff;
    padding: 58px 0 42px;
    border-bottom: 1px solid var(--border);
}

.ff-article-container {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
}

.ff-article-category {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    padding: 7px 11px;
    border-radius: 4px;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
    transition: background .2s ease;
}

.ff-article-category:hover {
    background: var(--red-dark);
    color: #fff;
}

.ff-article-title {
    max-width: 1000px;
    margin: 0;
    color: var(--black);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.4px;
    font-weight: 900;
}

.ff-article-excerpt {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.ff-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 22px;
    color: #8a919b;
    font-size: 11px;
    font-weight: 600;
}

.ff-meta-separator {
    color: #c7cbd1;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.ff-article-image-wrap {
    background: #fff;
    padding: 0 0 55px;
}

.ff-article-image-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
    background: #111;
}

.ff-article-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}


/* =========================================================
   ARTICLE BODY
========================================================= */

.ff-article-body {
    padding: 55px 0 75px;
    background: var(--bg);
}

.ff-article-layout {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 55px;
    align-items: start;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.ff-article-content {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 52px;
    color: #252a31;
    font-size: 17px;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.ff-article-content > *:first-child {
    margin-top: 0;
}

.ff-article-content p {
    margin: 0 0 25px;
}

.ff-article-content p:last-child {
    margin-bottom: 0;
}

.ff-article-content h2 {
    margin: 44px 0 18px;
    color: var(--black);
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.7px;
    font-weight: 900;
}

.ff-article-content h3 {
    margin: 34px 0 15px;
    color: var(--black);
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}

.ff-article-content h4 {
    margin: 28px 0 12px;
    color: var(--black);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

.ff-article-content strong {
    color: #11151b;
    font-weight: 800;
}

.ff-article-content a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ff-article-content a:hover {
    color: var(--red-dark);
}

.ff-article-content ul,
.ff-article-content ol {
    margin: 0 0 28px;
    padding-left: 25px;
}

.ff-article-content li {
    margin-bottom: 9px;
}

.ff-article-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    background: #f5f6f8;
    color: #4a515a;
    font-size: 18px;
    line-height: 1.7;
}

.ff-article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
}

.ff-article-content figure {
    margin: 30px 0;
}

.ff-article-content figcaption {
    margin-top: 8px;
    color: #858c96;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.ff-article-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.ff-article-content th,
.ff-article-content td {
    padding: 12px 14px;
    border: 1px solid #e1e4e8;
    text-align: left;
}

.ff-article-content th {
    background: #f3f4f6;
    font-weight: 800;
}

.ff-article-content hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.ff-article-content pre {
    overflow-x: auto;
    padding: 18px;
    margin: 30px 0;
    border-radius: 8px;
    background: #0d1015;
    color: #fff;
}

.ff-article-content code {
    font-size: .9em;
}


/* =========================================================
   PAGE LINKS
========================================================= */

.ff-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.ff-page-links a,
.ff-page-links span {
    min-width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 5px;
    background: #f1f3f5;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ARTICLE TAGS
========================================================= */

.ff-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.ff-article-tags > span {
    margin-right: 4px;
    color: #707781;
    font-size: 11px;
    font-weight: 800;
}

.ff-article-tags a {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    background: #f2f3f5;
    color: #4c535c;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
}

.ff-article-tags a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}


/* =========================================================
   ARTICLE SIDEBAR
========================================================= */

.ff-article-sidebar {
    position: sticky;
    top: 100px;
}

.ff-sidebar-box {
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    background: var(--black);
    color: #fff;
}

.ff-sidebar-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.ff-sidebar-box strong {
    display: block;
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 900;
}

.ff-sidebar-box p {
    margin: 10px 0 0;
    color: #9ca3ad;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SIDEBAR NEWS
========================================================= */

.ff-sidebar-news {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

.ff-sidebar-title {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
}

.ff-sidebar-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f2;
}

.ff-sidebar-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ff-sidebar-item:first-of-type {
    padding-top: 0;
}

.ff-sidebar-item-image {
    display: block;
    width: 88px;
    height: 68px;
    overflow: hidden;
    border-radius: 6px;
}

.ff-sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.ff-sidebar-item-image:hover img {
    transform: scale(1.06);
}

.ff-sidebar-item h3 {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.ff-sidebar-item h3 a {
    color: var(--text);
}

.ff-sidebar-item h3 a:hover {
    color: var(--red);
}

.ff-sidebar-item span {
    color: #9097a0;
    font-size: 9px;
}


/* =========================================================
   RELATED POSTS
========================================================= */

.ff-related {
    padding: 65px 0 80px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.ff-related-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.ff-related-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.ff-related-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.ff-related-heading h2 {
    margin: 0;
    color: var(--black);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.7px;
    font-weight: 900;
}

.ff-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ff-related-card {
    overflow: hidden;
    border: 1px solid #e2e5e9;
    border-radius: 10px;
    background: #fff;
    transition: .25s ease;
}

.ff-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.ff-related-image {
    display: block;
    height: 210px;
    overflow: hidden;
}

.ff-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.ff-related-card:hover .ff-related-image img {
    transform: scale(1.05);
}

.ff-related-body {
    padding: 18px;
}

.ff-related-body > span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.ff-related-body h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.ff-related-body h3 a {
    color: var(--text);
}

.ff-related-body h3 a:hover {
    color: var(--red);
}

.ff-related-body small {
    color: #9097a0;
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .clubs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ff-article-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .ff-article-sidebar {
        position: static;
    }

    .ff-sidebar-news {
        margin-top: 20px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 28px);
    }

    .top-right {
        display: none;
    }

    .header-inner {
        min-height: 66px;
    }

    .site-logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .hero {
        padding-top: 14px;
    }

    .hero-main {
        min-height: 450px;
    }

    .hero-main-content {
        padding: 22px;
    }

    .hero-title {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .side-story {
        min-height: 230px;
    }

    .section {
        padding: 42px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .small-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-image {
        height: 120px;
    }

    .news-title {
        font-size: 13px;
    }

    .feature-news {
        min-height: 370px;
    }

    .feature-title {
        font-size: 24px;
    }

    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .clubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-box {
        padding: 28px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter h2 {
        font-size: 22px;
    }

    .newsletter-form {
        min-width: 0;
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        height: 47px;
        border-radius: 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .copyright {
        flex-direction: column;
        gap: 8px;
    }


    /* SINGLE ARTICLE MOBILE */

    .ff-article-header {
        padding: 38px 0 28px;
    }

    .ff-article-container,
    .ff-article-image-container,
    .ff-article-layout,
    .ff-related-container {
        width: calc(100% - 28px);
    }

    .ff-article-title {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.4px;
    }

    .ff-article-excerpt {
        font-size: 15px;
        line-height: 1.65;
    }

    .ff-article-meta {
        font-size: 10px;
    }

    .ff-article-image-wrap {
        padding-bottom: 30px;
    }

    .ff-article-image-container {
        border-radius: 9px;
    }

    .ff-article-body {
        padding: 30px 0 50px;
    }

    .ff-article-content {
        padding: 28px 20px;
        border-radius: 9px;
        font-size: 16px;
        line-height: 1.8;
    }

    .ff-article-content h2 {
        margin-top: 35px;
        font-size: 26px;
    }

    .ff-article-content h3 {
        font-size: 21px;
    }

    .ff-article-content blockquote {
        padding: 16px 18px;
        font-size: 16px;
    }

    .ff-article-tags {
        margin-top: 35px;
        padding-top: 20px;
    }

    .ff-related {
        padding: 45px 0 55px;
    }

    .ff-related-heading h2 {
        font-size: 23px;
    }

    .ff-related-grid {
        grid-template-columns: 1fr;
    }

    .ff-related-image {
        height: 220px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .site-logo {
        font-size: 19px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-main {
        min-height: 400px;
    }

    .small-news-grid {
        grid-template-columns: 1fr;
    }

    .clubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ff-article-title {
        font-size: 31px;
    }

    .ff-article-content {
        padding: 24px 17px;
    }
}