/* Football Post Homepage */

/* Website Background */

body{
    background:#e9ecef !important;
}

a{
    color:inherit;
    text-decoration:none !important;
}


/* Main container */

.football-post-home {
    width: 100%;
}



/* ========================================
   NEW HERO GRID
======================================== */


.fp-hero-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin: 40px 0;

}



/* ========================================
   FEATURED STORY
======================================== */


.fp-featured-card {

    grid-column: span 2;
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 18px;

}


.fp-featured-image {

    display: block;
    width: 100%;
    height: 100%;

}


.fp-featured-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;

}


.fp-featured-card:hover img {

    transform: scale(1.04);

}



/* Featured Overlay */


.fp-featured-content {

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.85)
    );

}



.fp-featured-content h1 {

    margin: 10px 0 0;
    font-size: 36px;
    line-height: 1.15;

}


.fp-featured-content h1 a {

    color: #ffffff;
    text-decoration: none;

}



/* Category Badge */


.fp-category {

    display: inline-block;
    background: #c22327;
    color: #fff;

    padding: 7px 14px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .5px;

}



.fp-category a,
.fp-category a:visited,
.fp-category a:hover {

    color:#111;
    text-decoration:none;

}




/* ========================================
   SMALL STORY CARDS
======================================== */


.fp-small-card {

    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 18px;

}



.fp-small-image {

    display:block;
    width:100%;
    height:100%;

}



.fp-small-image img {

    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;

}



.fp-small-card:hover img {

    transform:scale(1.04);

}




.fp-small-content {

    position:absolute;
    bottom:0;
    left:0;
    right:0;

    padding:20px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.85)
    );

}



.fp-small-content h2 {

    margin:8px 0 0;

    font-size:20px;
    line-height:1.2;

}



.fp-small-content h2 a {

    color:#ffffff;
    text-decoration:none;

}



/* Small card category */


.fp-side-category {

    display:inline-block;

    background:#c22327;

    color:#ffffff;

    padding:5px 10px;

    border-radius:6px;

    font-size:11px;
    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.5px;

}



.fp-side-category a,
.fp-side-category a:visited,
.fp-side-category a:hover {

    color:#fff;
    text-decoration:none;

}



/* ========================================
   HERO RESPONSIVE
======================================== */



@media (max-width:1024px){


    .fp-hero-grid {

        grid-template-columns:1fr 1fr;

    }


    .fp-featured-card {

        grid-column:span 2;
        height:380px;

    }


    .fp-small-card {

        height:220px;

    }


}




@media (max-width:768px){


    .fp-hero-grid {

        grid-template-columns:1fr;
        gap:15px;

    }



    .fp-featured-card {

        grid-column:auto;
        height:300px;

    }



    .fp-featured-content {

        padding:25px;

    }



    .fp-featured-content h1 {

        font-size:28px;

    }



    .fp-small-card {

        height:220px;

    }


}

/* ========================================
   Breaking News
======================================== */


.fp-breaking-news {

    display:flex;
    align-items:stretch;

    width:100%;
    min-height:52px;

    margin:30px 0;

    background:#C22327;

    border-radius:10px;
    overflow:hidden;

}



.fp-breaking-label {

    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 145px;

    padding:0 18px;

    background:#5F6368;

    color:#ffffff;

    font-size:12px;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:.5px;

}



.fp-breaking-text {

    display:flex;
    align-items:center;

    flex:1;

    padding:14px 20px;

    color:#ffffff;

    font-size:14px;
    font-weight:700;

}



.fp-breaking-text a {

    color:#ffffff;
    text-decoration:none;

}



.fp-breaking-text a:hover {

    color:#FFD54A;

}




/* ========================================
   Trending News
======================================== */


.fp-trending {

    width:100%;

    margin-top:25px;

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.fp-trending-header {

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 22px;

    border-bottom:1px solid #eeeeee;

}



.fp-trending-header h2 {

    margin:0;

    font-size:21px;

    font-weight:800;

    text-transform:uppercase;

}



.fp-trending-header span {

    color:#5F6368;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

}



.fp-trending-list {

    display:grid;

    grid-template-columns:1fr 1fr;

}



.fp-trending-item {

    display:flex;

    align-items:center;

    gap:15px;

    min-height:65px;

    padding:15px 22px;

    border-bottom:1px solid #eeeeee;

    color:#111111;

    text-decoration:none;

}



.fp-trending-item:nth-child(odd){

    border-right:1px solid #eeeeee;

}



.fp-trending-item:hover {

    background:#f7f7f7;

}



.fp-trending-number {

    flex:0 0 28px;

    color:#C22327;

    font-size:14px;

    font-weight:800;

}



.fp-trending-title {

    font-size:14px;

    font-weight:700;

    line-height:1.35;

}




/* ========================================
   Homepage Advertisement
======================================== */


.fp-homepage-ad {

    width:100%;

    min-height:180px;

    margin:30px 0;

    background:#f7f7f7;

    border:1px solid #eeeeee;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

}



.fp-homepage-ad span {

    color:#8a8a8a;

    font-size:10px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}




/* ========================================
   Latest News
======================================== */


.fp-latest-news {

    margin:50px 0;

}



.fp-section-title h2 {

    font-size:32px;

    margin-bottom:25px;

    text-transform:uppercase;
    
    color:#c22327;
    

}



.fp-news-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.fp-news-card {

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.fp-news-image img {

    width:100%;

    height:220px;

    object-fit:cover;

}



.fp-news-content {

    padding:20px;

}



.fp-news-category {

    display:inline-block;
    background:#C22327;
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:999px;
    margin-bottom:12px;
    text-transform:uppercase;

}

.fp-news-category a {
 color:#fff;
}



.fp-news-content h3 {

    margin-top:10px;

    font-size:22px;

    line-height:1.25;

}



.fp-news-content h3 a {

    color:#111111;

    text-decoration:none;

}



.fp-news-content h3 a:hover {

    color:#C22327;

}

/* ========================================
   TRANSFERS
======================================== */

.fp-transfers-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
}

.fp-transfers-left{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.fp-transfer-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.fp-transfer-card:hover{
    transform:translateY(-4px);
}

.fp-transfer-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.fp-transfer-content{
    padding:18px;
}

.fp-transfer-category{
    display:inline-block;
    background:#C22327;
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:999px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.fp-transfer-content h3{
    margin:0;
    font-size:20px;
    line-height:1.4;
}

.fp-transfer-content h3 a{
    color:#111;
    text-decoration:none;
}

.fp-transfer-content h3 a:hover{
    color:#C22327;
}


/* Headlines Panel */

.fp-transfer-headlines{
    background:#c22327;
    border-radius:12px;
    padding:25px;
    border-top:5px solid #C22327;
}

.fp-transfer-headlines h3{
    margin:0 0 20px;
    font-size:24px;
    color:#fff;
    font-weight:700;
}

.fp-transfer-headline{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:14px 0;
    border-bottom:1px solid #eee;
    font-weight:600;
    line-height:1.5;
    transition:.25s;
}

.fp-transfer-headline:hover{
    color:#000;
    padding-left:8px;
}

.fp-transfer-headline:last-child{
    border-bottom:none;
}


/* Tablet */

@media(max-width:1024px){

    .fp-transfers-grid{
        grid-template-columns:1fr;
    }

}


/* Mobile */

@media(max-width:768px){

    .fp-transfers-left{
        grid-template-columns:1fr;
    }

    .fp-transfer-image img{
        height:240px;
    }

}



/* ========================================
   Category Sections
======================================== */


.fp-category-section {

    margin:50px 0;

}



.fp-category-block {

    margin-bottom:45px;

}



.fp-category-block-header {

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:20px;

}



.fp-category-block-header h3 {

    margin:0;

    font-size:26px;

}



.fp-category-block-header a {

    color:#C22327;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

}



.fp-category-posts {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.fp-category-card {

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.fp-category-image img {

    width:100%;

    height:200px;

    object-fit:cover;

}



.fp-category-content {

    padding:18px;

}



.fp-category-content h4 {

    margin:0;

    font-size:19px;

    line-height:1.3;

}



.fp-category-content h4 a {

    color:#111111;

    text-decoration:none;

}



.fp-category-content h4 a:hover {

    color:#C22327;

}




/* ========================================
   Newsletter
======================================== */


.fp-newsletter {

    margin:70px 0;

    background:#C22327;

    border-radius:20px;

    overflow:hidden;

}



.fp-newsletter-inner {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    padding:55px;

    align-items:center;

}



.fp-newsletter-content {

    color:#ffffff;

}



.fp-newsletter-label {

    display:inline-block;

    margin-bottom:15px;

    color:#FFD54A;

    font-size:13px;

    font-weight:800;

    text-transform:uppercase;

}



.fp-newsletter-content h2 {

    margin:0 0 18px;

    color:#ffffff;

    font-size:38px;

    line-height:1.1;

}



.fp-newsletter-content p {

    color:#ffffff;

    font-size:16px;

    line-height:1.6;

}



.fp-newsletter-form {

    background:#ffffff;

    padding:30px;

    border-radius:16px;

}



.fp-newsletter-fields {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

}



.fp-newsletter-field label {

    display:block;

    margin-bottom:7px;

    color:#111111;

    font-size:13px;

    font-weight:700;

}



.fp-newsletter-field input {

    width:100%;

    box-sizing:border-box;

    padding:13px 14px;

    border:1px solid #dddddd;

    border-radius:8px;

    font-family:inherit;

}



.fp-newsletter-consent {

    display:flex;

    gap:10px;

    margin:20px 0;

    color:#5F6368;

    font-size:12px;

}



.fp-newsletter-button {

    width:100%;

    border:none;

    background:#C22327;

    color:#ffffff;

    padding:14px 20px;

    border-radius:8px;

    font-weight:800;

    cursor:pointer;

}



.fp-newsletter-button:hover {

    background:#a91d21;

}




/* ========================================
   Responsive Fixes
======================================== */


@media(max-width:1024px){


    .fp-news-grid,
    .fp-transfers-grid,
    .fp-category-posts {

        grid-template-columns:repeat(2,1fr);

    }


    .fp-trending-list {

        grid-template-columns:1fr;

    }


}



@media(max-width:768px){


    .fp-breaking-news {

        display:block;

    }


    .fp-breaking-label {

        width:100%;

        min-height:36px;

    }


    .fp-news-grid,
    .fp-transfers-grid,
    .fp-category-posts {

        grid-template-columns:1fr;

    }


    .fp-newsletter-inner {

        grid-template-columns:1fr;

        padding:30px 22px;

        gap:30px;

    }


    .fp-newsletter-fields {

        grid-template-columns:1fr;

    }


    .fp-section-title h2 {

        font-size:26px;

    }


}



@media(max-width:480px){


    .fp-trending-header span {

        display:none;

    }


    .fp-breaking-text {

        font-size:13px;

        padding:12px 15px;

    }


}

/* ========================================
   FOOTBALL POST ARCHIVE
======================================== */

.football-post-archive {
    padding: 60px 20px;
}

.fp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fp-archive-header {
    margin-bottom: 40px;
}

.fp-archive-header h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
}

.fp-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fp-archive-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.fp-archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.fp-archive-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fp-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-archive-content {
    padding: 20px;
}

.fp-archive-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.fp-archive-content h2 {
    font-size: 21px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.fp-archive-content h2 a {
    color: #111;
    text-decoration: none;
}

.fp-archive-content h2 a:hover {
    color: #C22327;
}

.fp-archive-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.fp-pagination {
    margin-top: 50px;
}

/* TABLET */
@media (max-width: 900px) {
    .fp-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .football-post-archive {
        padding: 40px 15px;
    }

    .fp-archive-header h1 {
        font-size: 32px;
    }

    .fp-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   FOOTBALL POST SEARCH
======================================== */

.football-post-search {
    padding: 60px 20px;
}

.fp-search-header {
    margin-bottom: 40px;
}

.fp-search-header h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
}

.fp-search-header h1 span {
    color: #C22327;
}

/* NO RESULTS */

.fp-no-results {
    text-align: center;
    padding: 80px 20px;
    background: #f7f7f7;
    border-radius: 8px;
}

.fp-no-results h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.fp-no-results p {
    color: #666;
    margin-bottom: 25px;
}

.fp-search-button {
    display: inline-block;
    background: #C22327;
    color: #fff;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.fp-search-button:hover {
    background: #a91d21;
    color: #fff;
}

/* MOBILE */

@media (max-width: 600px) {

    .football-post-search {
        padding: 40px 15px;
    }

    .fp-search-header h1 {
        font-size: 32px;
    }

}

/* ========================================
   FOOTBALL POST SINGLE ARTICLE
======================================== */

.fp-single {
    background: #fff;
}

.fp-single-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}


/* ARTICLE HEADER */

.fp-single-header {
    padding: 65px 0 40px;
    background: #fff;
}

.fp-single-category {
    display: inline-block;
    margin-bottom: 18px;
    color: #C22327;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fp-single-title {
    max-width: 1000px;
    margin: 0 0 20px;
    color: #111;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.fp-single-excerpt {
    max-width: 850px;
    margin-bottom: 22px;
    color: #555;
    font-size: 20px;
    line-height: 1.55;
}

.fp-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #777;
    font-size: 14px;
}

.fp-author strong {
    color: #222;
}

.fp-meta-divider {
    color: #C22327;
    font-weight: 800;
}


/* FEATURED IMAGE */

.fp-featured-image {
    width: 100%;
    background: #f3f3f3;
    overflow: hidden;
}

.fp-featured-image-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}


/* ARTICLE CONTENT */

.fp-single-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 55px 0 30px;
}

.fp-single-content {
    color: #222;
    font-size: 18px;
    line-height: 1.8;
}

.fp-single-content p {
    margin-bottom: 25px;
}

.fp-single-content h2 {
    margin-top: 45px;
    margin-bottom: 18px;
    color: #111;
    font-size: 32px;
    line-height: 1.2;
}

.fp-single-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #111;
    font-size: 25px;
}

.fp-single-content a {
    color: #C22327;
    text-decoration: underline;
}

.fp-single-content img {
    max-width: 100%;
    height: auto;
}


/* SHARE */

.fp-share {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.fp-share-title {
    display: block;
    margin-bottom: 15px;
    color: #111;
    font-size: 15px;
    font-weight: 800;
}

.fp-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fp-share-buttons a,
.fp-share-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.fp-share-facebook {
    background: #1877F2;
}

.fp-share-whatsapp {
    background: #25D366;
}

.fp-share-x {
    background: #111;
}

.fp-share-copy {
    background: #666;
}


/* AUTHOR BOX */

.fp-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 28px;
    background: #f7f7f7;
    border-left: 5px solid #C22327;
}

.fp-author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #C22327;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
}

.fp-author-label {
    margin-bottom: 3px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fp-author-info h3 {
    margin: 0 0 5px;
    color: #111;
    font-size: 22px;
}

.fp-author-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}


/* RELATED */

.fp-related-section {
    margin-top: 70px;
    padding: 65px 0 90px;
    background: #f7f7f7;
}

.fp-related-heading {
    margin-bottom: 30px;
}

.fp-related-heading span {
    display: block;
    margin-bottom: 5px;
    color: #C22327;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fp-related-heading h2 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 1.1;
}


/* RELATED GRID */

.fp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fp-related-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.fp-related-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fp-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.fp-related-card:hover .fp-related-image img {
    transform: scale(1.04);
}

.fp-related-content {
    padding: 20px;
}

.fp-related-meta {
    margin-bottom: 8px;
    color: #777;
    font-size: 12px;
}

.fp-related-content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.fp-related-content h3 a {
    color: #111;
    text-decoration: none;
}

.fp-related-content h3 a:hover {
    color: #C22327;
}


/* LOADING */

.fp-loading {
    padding: 35px;
    color: #777;
    font-size: 14px;
    text-align: center;
}

.fp-loading.is-visible {
    display: block;
}


/* TABLET */

@media (max-width: 900px) {

    .fp-single-title {
        font-size: 48px;
    }

    .fp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .fp-single-container {
        width: calc(100% - 30px);
    }

    .fp-single-header {
        padding: 40px 0 28px;
    }

    .fp-single-title {
        font-size: 38px;
        line-height: 1.08;
    }

    .fp-single-excerpt {
        font-size: 17px;
    }

    .fp-featured-image-img {
        width: 100%;
        max-height: none;
    }

    .fp-single-content-wrapper {
        padding-top: 35px;
    }

    .fp-single-content {
        font-size: 17px;
        line-height: 1.75;
    }

    .fp-single-content h2 {
        font-size: 27px;
    }

    .fp-share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fp-share-buttons a,
    .fp-share-copy {
        width: 100%;
    }

    .fp-author-box {
        align-items: flex-start;
        padding: 22px;
    }

    .fp-related-section {
        margin-top: 45px;
        padding: 45px 0 65px;
    }

    .fp-related-heading h2 {
        font-size: 30px;
    }

    .fp-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* ARTICLE CATEGORY BADGE */

.fp-single-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 20px;
    background: #C22327;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fp-single-category:hover {
    color: #fff;
}

/* ========================================
   FOOTBALL POST SINGLE - MOBILE CENTRING
======================================== */

@media (max-width: 600px) {

    .fp-single,
    .fp-single-article,
    .fp-single-header,
    .fp-single-container,
    .fp-single-content-wrapper,
    .fp-single-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .fp-single-container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    .fp-single-header {
        text-align: left;
    }

    .fp-single-content-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-single-content {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-featured-image {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}

/* ========================================
   FOOTBALL POST HOMEPAGE WRAPPER
======================================== */

.football-post-home {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.fp-home-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

/* LAPTOP */
@media (max-width: 1200px) {

    .fp-home-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

}

/* TABLET */
@media (max-width: 900px) {

    .fp-home-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

}

/* MOBILE HOMEPAGE */
@media (max-width: 600px) {

    .football-post-home {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .fp-home-wrapper {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .fp-home-wrapper > * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .fp-home-wrapper img {
        max-width: 100%;
        height: auto;
    }

}

/* FOOTBALL POST INLINE NEWSLETTER */

.fp-newsletter-inline {
    margin: 42px 0;
    padding: 26px 28px;
    background: #f7f7f7;
    border-left: 4px solid #c22327;
    border-radius: 8px;
}

.fp-newsletter-inline-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #c22327;
}

.fp-newsletter-inline h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
    color: #111;
}

.fp-newsletter-inline-content > p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #5f6368;
}

.fp-newsletter-inline-row {
    display: flex;
    gap: 10px;
}

.fp-newsletter-inline-row input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
}

.fp-newsletter-inline-row button {
    height: 46px;
    padding: 0 21px;
    border: 0;
    border-radius: 5px;
    background: #c22327;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.fp-newsletter-inline-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #5f6368;
}

.fp-newsletter-inline-consent input {
    margin-top: 2px;
}

.fp-newsletter-inline-legal {
    margin: 8px 0 0 !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    color: #777 !important;
}

.fp-newsletter-inline-legal a {
    color: #555;
    text-decoration: underline;
}

@media (max-width: 600px) {

    .fp-newsletter-inline {
        margin: 32px 0;
        padding: 22px 18px;
    }

    .fp-newsletter-inline h3 {
        font-size: 21px;
    }

    .fp-newsletter-inline-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .fp-newsletter-inline-row input[type="email"] {
        width: 100%;
        height: 48px;
        padding: 0 15px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .fp-newsletter-inline-row button {
        width: 100%;
        height: 48px;
    }

}

