@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

body {
    background-color: #f2f2f2;
    font-family: "Funnel Display", sans-serif;
    font-size: 18px;
}

/* Linki */
a, a:visited {
    text-decoration: none;
    color: #483C32;
}
a:hover, a:hover:visited {
    color: #745335;
}

/* Tekst - nagłówki */
h2 {
    font-size: 28px;
}
h3 {
    font-size: 24px;
}

/* Przyciski */
.btn-loadmore {
    background-color: #E0AC00;
    border-color: #E0AC00;
    color: #483C32;
    font-weight: 700;
}
.btn-loadmore:hover {
    background-color: #FFCB2E;
    border-color: #FFCB2E;
    color: #483C32;
}
.btn-search {
    background-color: #C9A66B;;
    border-color: #C9A66B;
    color: #fff;
    font-weight: 700;
}
.btn-search:hover {
    background-color: #745335;
    border-color: #745335;
    color: #fff;
}

/* Sekcje */
.section {
    margin: 80px 0px 80px 0px;
}
.section-header {
    padding-top: 20px;
    padding-bottom: 20px;
}
.copywright {
    display: flex;
    justify-content: space-between;
}
.copywright > p {
    font-size: 15px;
}
@media (max-width: 600px) {
    .copywright {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
}
.section-hero {
    height: 70vh;
}
/* Header */
.mainnav_item {
    margin-right: 35px;
    color: #483C32;
    text-decoration: none;
    letter-spacing: 1px;
}
.mainnav_item:hover {
    color: #745335;
}
.mainnav_item:visited {
    margin-right: 35px;
    color: #483C32;
    text-decoration: none;
    letter-spacing: 1px;
}
.mainnav_item:visited:hover {
    color: #745335;
}
/* Navs header */
.main_header {
    align-items: center;
    justify-content: center;
    /*padding: 15px;*/
    padding: 10px;
}
.main_header-menu {
    display: flex;
    justify-content: center;
}
.main_header-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Post box */
.post-box {
    padding: 10px;
}
.img-post {
    border-radius: 20px;
    transition: 500ms;
}
.img-post:hover {
    -webkit-box-shadow: 8px 8px 30px -14px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 8px 30px -14px rgba(66, 68, 90, 1);
    box-shadow: 8px 8px 30px -14px rgba(66, 68, 90, 1);
    transition: 700ms;
}
.post-meta, .post-title {
    padding: 0px 15px 0px 15px;
}
.meta-category {
    font-size: 15px;
    font-weight: 700;
    background-color: #C9A66B;
    border-radius: 10px;
    padding: 8px 20px;
}
a > .meta-category, a:visited > .meta-category {
    color: #fff !important;
}
a:hover > .meta-category, a:hover:visited > .meta-category {
    color: #4b4b4b !important;
}

/* List tagów */
.taglist {
    font-size: 15px;
    font-weight: 700;
    background-color: #dddbdb;
    border-radius: 10px;
    padding: 8px 20px;
    margin: 5px 5px;
}
.taglist:hover{
    background-color: #C9A66B;
}

/* Polecany wpis hero */
.featured-post {
    padding: 0px;
}
.featured-post > .post-head > .post__image {
    position: relative;
    height: 70vh; /* lub inna wartość lub % jeśli rodzic też ma wysokość */
    overflow: hidden; /* opcjonalnie, by upewnić się że obraz nie wyjdzie */
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post__title > h1 > a, .post__title > h1 > a:hover , .post__title > h1 > a:visited , .post__title > h1 > a:hover:visited {
    color: #fff;
}

/* Treść wpisu */
.post__title {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 60px;
    background-color: #22222298;
    transition: 500ms;
}
.post__title:hover {
    background-color: #222222c5;
    transition: 700ms;
}
.post__title > h1 {
    text-align: center;
    font-weight: 700;
    color: #fff;
    text-shadow: #222222 1px 0 10px;
}
.post__title > p {
    color: #fff;
    text-shadow: #222222 1px 0 10px;
}
@media (max-width: 600px) {
    .post__title > h1 {
        font-size: 20px;
    }
    .post__title > p {
        font-size: 15px;
    }
}
p > .posted-on > a , p > .posted-on > a:visited{
    color: #fff;
    font-weight: 700;
}
.post-content {
    max-width: 1080px;
}
.post-content > .entry-content > p > a , .post-content > .entry-content > p > a:visited , .source-content > p > a , .source-content > p > a:visited {
    color: #c02323;
}
.post-content > .entry-content > p > a:hover , .post-content > .entry-content > p > a:hover:visited , .source-content > p > a:hover , .source-content > p > a:hover:visited {
    color: #745335;
}
.post-content > .entry-content > p {
    padding-left: 60px;
    padding-right: 60px;
}
h2.wp-block-heading {
    padding-left: 60px;
    margin: 20px 0px 20px 0px;
}
h3.wp-block-heading {
    padding-left: 60px;
    margin: 20px 0px 20px 0px;
}
@media (max-width: 1050px) {
    .post-content > .entry-content > p {
        padding-left: 20px;
        padding-right: 20px;
    }
    h2.wp-block-heading {
        padding-left: 20px;
        padding-right: 20px;
        margin: 20px 0px 20px 0px;
    }
    h3.wp-block-heading {
        padding-left: 20px;
        padding-right: 20px;
        margin: 20px 0px 20px 0px;
    }
}

.wp-block-image img {
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
}
blockquote {
    margin: 1.5rem 0 1.5rem;
    padding-left: 120px;
    padding-right: 120px;
    font-weight: 800;
    font-size: 35px;
}
@media (max-width: 1050px) {
    blockquote {
        margin: 1.5rem 0 1.5rem;
        padding-left: 20px;
        padding-right: 20px;
        font-weight: 800;
        font-size: 28px;
    }
}
.source-box {
    max-width: 1080px;
    border: 1px solid #a3a1a1;
    border-radius: 20px;
    padding: 30px 20px;
}

/* Post navigation */
a.page-numbers {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px 20px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #fff;
}
span.page-numbers.current {
    border: 1px solid #C9A66B;
    border-radius: 10px;
    padding: 10px 20px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #C9A66B;
    color: #fff;
}
.comment-navigation .nav-links, .posts-navigation .nav-links, .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}
.nav-previous, .nav-next {
    max-width: 390px;
    font-weight: 500;
}

/* Wyszukiwarka */
div#searchFormWrapper {
    padding: 20px 200px;
}
input.form-control {
    border-radius: 10px;
    padding-left: 10px;
}