/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

@font-face
{
font-family: InclusiveSans-Regular;
src: url(https://www.polishfootballalmanac.net/InclusiveSans-Regular.ttf);
}

body {
    margin: 0;
    padding: 0;
    background: #f4f5f7;
    color: #17202a;
    font-family: InclusiveSans-Regular, Verdana;
    line-height: 1.6;
}


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


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


.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: #133e70;
    color: white;
    position: relative;
    z-index: 100;
}


.header-inner {
    width: 92%;
    max-width: 1200px;
    margin: auto;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.site-logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}


.site-logo span {
    display: block;

    color: #ffffff;

    font-size: 12px;
    letter-spacing: 4px;

    margin-top: -3px;
}


/* MENU */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}


.main-nav a {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .5px;

    transition: opacity .2s;
}


.main-nav a:hover {
    opacity: .7;
}


.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 30px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    height: 650px;
    position: relative;
    overflow: hidden;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.1)
        );
}


.hero-content {
    position: absolute;

    left: 5%;
    bottom: 70px;

    width: 90%;
    max-width: 850px;

    color: white;
}


.label {
    display: inline-block;

    background: #d32027;

    padding: 7px 14px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;
}


.hero h1 {
    font-size: 55px;
    line-height: 1.08;

    margin: 18px 0;
}


.hero p {
    font-size: 20px;

    max-width: 650px;

    margin-bottom: 25px;
}


.read-more {
    display: inline-block;

    background: white;
    color: #133e70;

    padding: 13px 22px;

    font-size: 13px;
    font-weight: bold;

    transition: .2s;
}


.read-more:hover {
    background: #d32027;
    color: white;
}


/* =========================================
   INTRO
========================================= */

.intro {
    padding: 65px 0 40px;

    text-align: center;
}


.intro h2 {
    color: #133e70;

    font-size: 34px;

    margin-bottom: 10px;
}


.intro p {
    max-width: 650px;

    margin: auto;

    color: #666;

    font-size: 17px;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;
}


.section-heading h2 {
    color: #133e70;

    font-size: 32px;
}


.section-heading a {
    color: #d32027;

    font-size: 13px;
    font-weight: bold;
}


/* =========================================
   INTERVIEW GRID
========================================= */

.interviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


.interview-card {
    background: white;

    overflow: hidden;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);

    transition:
        transform .2s,
        box-shadow .2s;
}


.interview-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 25px rgba(0,0,0,.13);
}


.card-image {
    position: relative;
}


.card-image img {
    width: 100%;

    height: 250px;

    object-fit: cover;
}


.card-category {
    position: absolute;

    left: 15px;
    bottom: 15px;

    background: #133e70;

    color: white;

    padding: 6px 10px;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: .7px;
}


.card-content {
    padding: 20px;
}


.card-content h3 {
    color: #133e70;

    font-size: 21px;

    line-height: 1.3;

    margin-bottom: 15px;
}


.card-date {
    color: #888;

    font-size: 13px;
}


/* =========================================
   FEATURED
========================================= */

.featured-section {
    background: #e9edf3;

    margin-top: 70px;

    padding: 60px 0;
}


.featured-section h2 {
    color: #133e70;

    font-size: 32px;

    margin-bottom: 25px;
}


.featured-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.featured-box {
    position: relative;

    height: 350px;

    overflow: hidden;

    color: white;
}


.featured-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s;
}


.featured-box:hover img {
    transform: scale(1.05);
}


.featured-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );
}


.featured-box div {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 25px;
}


.featured-box span {
    color: #fff;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}


.featured-box h3 {
    font-size: 27px;

    line-height: 1.2;

    margin-top: 8px;
}


/* =========================================
   CTA
========================================= */

.all-interviews {
    text-align: center;

    padding: 70px 20px;
}


.all-interviews h2 {
    color: #133e70;

    font-size: 34px;
}


.all-interviews p {
    color: #666;

    margin: 10px 0 25px;
}


.red-button {
    display: inline-block;

    background: #d32027;

    color: white;

    padding: 14px 25px;

    font-size: 13px;
    font-weight: bold;
}


/* =========================================
   PAGE HEADER
========================================= */

.page-header {
    background: #133e70;

    color: white;

    padding: 60px 0;
}


.page-header span {
    font-size: 12px;

    letter-spacing: 2px;

    opacity: .8;
}


.page-header h1 {
    font-size: 48px;

    margin: 8px 0;
}


.page-header p {
    font-size: 18px;

    opacity: .85;
}


/* =========================================
   ARCHIVE
========================================= */

.archive {
    padding: 45px 0 70px;
}


.filter-bar {
    display: flex;

    gap: 10px;

    margin-bottom: 35px;

    flex-wrap: wrap;
}


.filter-bar a {
    background: white;

    color: #133e70;

    padding: 10px 17px;

    font-size: 12px;
    font-weight: bold;

    border: 1px solid #ddd;
}


.filter-bar a.active {
    background: #133e70;

    color: white;

    border-color: #133e70;
}


/* =========================================
   PAGINATION
========================================= */

.pagination {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 45px;
}


.pagination a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border: 1px solid #ddd;

    color: #133e70;

    font-weight: bold;
}


.pagination a.active {
    background: #133e70;

    color: white;

    border-color: #133e70;
}


/* =========================================
   SINGLE INTERVIEW
========================================= */

.single-interview {
    width: 92%;
    max-width: 1100px;

    margin: 60px auto 80px;
}


.interview-top {
    max-width: 900px;

    margin: 0 auto 35px;
}


.interview-category {
    display: inline-block;

    background: #d32027;

    color: white;

    padding: 7px 12px;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}


.interview-top h1 {
    color: #133e70;

    font-size: 50px;

    line-height: 1.12;

    margin: 18px 0;
}


.interview-date {
    color: #888;

    font-size: 14px;
}


.interview-main-image {
    width: 100%;

    max-height: 650px;

    object-fit: cover;

    margin-bottom: 45px;
}


/* =========================================
   INTERVIEW LAYOUT
========================================= */

.interview-layout {
    display: grid;

    grid-template-columns: 240px 1fr;

    gap: 55px;

    max-width: 900px;

    margin: auto;
}


.player-box {
    border-top: 5px solid #133e70;

    background: white;

    padding: 20px;
}


.player-box span {
    font-size: 10px;

    color: #888;

    letter-spacing: 1px;
}


.player-box h3 {
    color: #133e70;

    font-size: 21px;

    margin-top: 7px;
}


.player-box p {
    color: #777;

    font-size: 13px;

    margin-top: 5px;
}


.interview-text {
    font-size: 18px;

    line-height: 1.85;
}


.interview-text p {
    margin-bottom: 30px;
}


.interview-text .lead {
    font-size: 22px;

    font-weight: bold;

    line-height: 1.55;

    color: #333;
}


.question {
    color: #133e70;

    font-size: 23px;

    font-weight: bold;

    line-height: 1.35;

    margin: 40px 0 15px;
}


blockquote {
    border-left: 5px solid #d32027;

    background: #f0f3f7;

    color: #133e70;

    padding: 25px 30px;

    margin: 40px 0;

    font-size: 24px;

    font-weight: bold;

    line-height: 1.4;
}


/* =========================================
   BACK
========================================= */

.back-to-interviews {
    max-width: 900px;

    margin: 50px auto 0;

    padding-top: 30px;

    border-top: 1px solid #ddd;
}


.back-to-interviews a {
    color: #133e70;

    font-size: 13px;

    font-weight: bold;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #133e70;

    color: white;

    padding: 40px 0;

    text-align: center;
}


footer strong {
    font-size: 20px;
}


footer p {
    margin-top: 5px;

    opacity: .8;
}


footer .copyright {
    font-size: 12px;

    margin-top: 20px;

    opacity: .6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero {
        height: 560px;
    }


    .hero h1 {
        font-size: 43px;
    }


    .interviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .interview-layout {
        grid-template-columns: 190px 1fr;

        gap: 30px;
    }


    .interview-top h1 {
        font-size: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {


    .container {
        width: 92%;
    }


    /* HEADER */

    .header-inner {
        min-height: 70px;
    }


    .site-logo {
        font-size: 19px;
    }


    .site-logo span {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {

        display: none;

        position: absolute;

        left: 0;
        right: 0;

        top: 70px;

        background: #133e70;

        padding: 15px 5%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow:
            0 5px 15px rgba(0,0,0,.2);
    }


    .main-nav.menu-open {
        display: flex;
    }


    .main-nav a {
        padding: 14px 0;

        border-bottom: 1px solid rgba(255,255,255,.15);

        font-size: 13px;
    }


    /* HERO */

    .hero {
        height: 530px;
    }


    .hero-content {
        left: 5%;
        bottom: 35px;

        width: 90%;
    }


    .hero h1 {
        font-size: 32px;

        margin: 13px 0;
    }


    .hero p {
        font-size: 16px;

        line-height: 1.5;
    }


    .label {
        font-size: 10px;

        padding: 6px 10px;
    }


    /* INTRO */

    .intro {
        padding: 45px 0 30px;
    }


    .intro h2 {
        font-size: 27px;
    }


    .intro p {
        font-size: 15px;
    }


    /* SECTION */

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .section-heading h2 {
        font-size: 27px;
    }


    /* CARDS */

    .interviews-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .card-image img {
        height: 230px;
    }


    .card-content h3 {
        font-size: 20px;
    }


    /* FEATURED */

    .featured-section {
        margin-top: 45px;

        padding: 45px 0;
    }


    .featured-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .featured-box {
        height: 280px;
    }


    .featured-box h3 {
        font-size: 22px;
    }


    /* PAGE HEADER */

    .page-header {
        padding: 40px 0;
    }


    .page-header h1 {
        font-size: 34px;
    }


    .page-header p {
        font-size: 16px;
    }


    /* FILTER */

    .filter-bar {
        gap: 6px;
    }


    .filter-bar a {
        padding: 9px 12px;

        font-size: 10px;
    }


    /* SINGLE INTERVIEW */

    .single-interview {
        width: 92%;

        margin: 35px auto 60px;
    }


    .interview-top {
        margin-bottom: 25px;
    }


    .interview-top h1 {
        font-size: 32px;

        line-height: 1.15;
    }


    .interview-date {
        font-size: 12px;
    }


    .interview-main-image {
        height: 300px;

        margin-bottom: 30px;
    }


    .interview-layout {
        display: block;
    }


    .interview-sidebar {
        margin-bottom: 30px;
    }


    .player-box {
        padding: 18px;
    }


    .interview-text {
        font-size: 17px;

        line-height: 1.75;
    }


    .interview-text .lead {
        font-size: 19px;
    }


    .question {
        font-size: 21px;

        margin-top: 35px;
    }


    blockquote {
        font-size: 20px;

        padding: 20px;

        margin: 30px 0;
    }


    /* FOOTER */

    footer {
        padding: 35px 20px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {


    .hero {
        height: 500px;
    }


    .hero h1 {
        font-size: 28px;
    }


    .hero p {
        font-size: 15px;
    }


    .interview-top h1 {
        font-size: 28px;
    }


    .interview-main-image {
        height: 240px;
    }


    .question {
        font-size: 20px;
    }

}
