/*
Theme Name: suitcasemag-theme
Theme URI: https://github.com/irmantastam/suitcasemag-theme
Author: Irmantas Tamašauskas
Author URI: https://github.com/irmantastam
Description: Blank WordPress theme for building custom front-end. Github: <a href="https://github.com/irmantastam/suitcasemag-theme">irmantastam/suitcasemag-theme</a>
Version: 1.0
Requires PHP: 7.3
License: MIT
License URI: https://opensource.org/licenses/MIT
Tags: wordpress, html, javascript, sass, css, postcss, webpack, babel
Text Domain: suitcasemag-theme
*/

/*
This CSS file is needed for WordPress to recognize the theme and display its info.
Please use the ../src/assets/styles/main.scss as an entry point for your SASS code.
*/
:root {
    --articles-font: 'Georgia', 'sans-serif';
    --main-font: 'Arial', 'sans-serif';
    --text-color: #4A4A4A; /* #1B1C1E*/
    --content-width: 580px;

}

body {
    font-size: 1rem;
    font-family: var(--main-font);
    color: var(--text-color);
    margin: 0;
    background-color: #F9F9F9;
} 
body *{
    box-sizing: border-box;
}
main{
    margin: 60px 0 20px 0;
    /*padding-top: 60px;*/
}
@media (max-width: 1000px){
    main{
        margin: 120px 0 20px 0; 
        /*padding-top: 60px;*/
    }
}
main{
    padding: 0 15px;
}
main .container{
    max-width: 1190px;
    min-height: 420px;
}

main .page-title{
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 2.7rem;
    font-family: var(--main-font);
    font-size: 1.375rem;
    font-weight: 500;
}
input {
    height: 45px;
    border: none;
    background-color: #F1F2F3;
    outline: none;
}

ul, ol {
    list-style: none;
    padding: 0;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--articles-font);
}
h1{
    font-size: 3rem;
    margin-bottom: 1.5em;
}
.hidden {
    display: none;
}

.displayed {
    display: block;
}

a {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
}

.button {
    cursor: pointer;
}
.logo{
    height: 50px;
    text-align: center;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-desktop {
    width: 100%;
}

.logo-mobile {
    width: calc(100% - 100px);
    max-width: 16rem;
}

.overflow-hidden {
    overflow: hidden;
}

/* Search */
form.search {
    width: fit-content;
}

.search-container {
    position: relative;
}

.search .search-input {
    width: 100%;
    max-width: 18rem;
    padding: 0 45px 0 10px;
}

.search-submit,
.mobile-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    width: 45px;
    height: 45px;
    color: #E4BE7C;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.search-submit {
    top: 0;
    right: 0;
    position: absolute;
}

#mobile-search-container .search {
    width: 100%;
}

#mobile-search-container .search .search-input {
    max-width: unset;
}

input::-webkit-search-cancel-button {
    display: none;
}

input::-moz-search-cancel-button {
    display: none;
}

input::-ms-clear {
    display: none;
}

.container,
section {
    /*padding: 10px 20px;*/
    max-width: calc(1190px + 2em);
    /*max-width: 1640px;*/
    margin: auto;
}

/* Header */

#top-header,
#bottom-header,
#mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#mobile-header {
    border-bottom: 1px solid #D3D3D3;
    padding: 10px;
    background-color: #ffffff;
}
#top-header{
    padding: 1.2em 0;
}
#bottom-header{
    justify-content: center;
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    background-color: #ffffff;
}
#mobile-header .mobile-menu-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e4be7c;
    background-color: #ffffff;
}
#mobile-header .open-icon,
#mobile-header .close-icon {
    position: absolute;
}

#mobile-header .open-icon,
#mobile-header .close-icon {
    display: none;
}
.open-icon,
.close-icon,
.search-icon{
    width: 1.5em;
    height: 1.5em;
}
.open-icon svg,
.close-icon svg,
.search-icon svg{
    width: 100%;
    height: 100%;
    fill: #E4BE7C;
}
#mobile-menu-container {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #ffffff;
    display: none;
    z-index: 5;
}

#mobile-menu .sub-menu {
    background: linear-gradient(225deg, #1a232c, #1b2e42);
    display: none;
}
#mobile-menu .sub-menu li {
    padding-inline-start: 0;
    border-bottom: 1px solid #E7E7E7;
}
#mobile-menu .sub-menu li a{
    width: 100%;
    padding: 18px 35px;
    color: #E7E7E7;
}
#mobile-header .menu-close .close-icon {
    display: block;
}

#mobile-header .menu-open .open-icon {
    display: block;
}

/* Footer */

footer {
    color: #ffffff;
    background-color: #1A232C;
}

footer .menu a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #ffffff;
}
footer .socials{
    padding: 12px 20px;
}
footer .socials .inner-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

footer .social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
}
footer .social-icon svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#top-footer {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
#top-footer h2{
    padding: 12px 20px;
    font-family: var(--main-font);
}
#bottom-footer{
    font-style: italic;
}
/* Menu */

.menu a {
    padding: 12px 20px;
}

.main-menu-container {
    max-width: 1440px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    width: stretch;
}

#main-menu,
#mobile-menu {
    margin: 0;
    position: unset;
    font-family: "Arial", Sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#main-menu .sub-menu {
    z-index: 5;
    background: linear-gradient(225deg, #1a232c, #1b2e42);
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    justify-content: center;
    flex-wrap: wrap;
}
#main-menu a{
    display: flex;
    align-items: center;
    height: 45px;
}
#main-menu .sub-menu a {
    color: #ffffff;
    white-space: nowrap;
}
#main-menu li:hover > a{
    box-shadow: #E4BE7C inset 0 -3px 0 0;
}
.dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 10px;
}

.dropdown-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}

.dropdown-menu > li:hover .sub-menu {
    display: flex;
}

.toggle-menu {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
}

.toggle-menu li:not(.toggle-menu li:last-child) {
    border-bottom: 1px solid #E7E7E7;
}

.toggle-menu ul li {
    padding-inline-start: 10px;
}
.toggle-menu .menu-item a{
    position: relative;
    width: 100%;
}
.toggle-menu .menu-item-has-children > a::after {
    height: 100%;
    width: 50px;
    position: absolute;
    right: 0;
    top: 0;::afterflex
    border-left: 1px solid var(--text-color);
    color: var(--text-color);
    opacity: 0.3;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    font-weight: 900;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
}

.toggle-menu .menu-item-has-children.opened > a::after {
    rotate: 180deg;
}

#mobile-search-container {
    display: none;
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #D3D3D3;
}

@media (max-width: 999px) {
    #top-header,
    #bottom-header {
        display: none;
    }
}

@media (min-width: 1000px) {
    #mobile-header {
        display: none;
    }
}

@media (min-width: 769px) {
    footer .container-column {
        width: 33%;
    }
}

@media (max-width: 768px) {
    footer .container-column {
        margin-bottom: 20px;
        width: 50%;
    }

    footer .container-column:last-child {
        width: 100%;
    }
}

@media (max-width: 420px) {
    footer .container-column {
        width: 100%;
    }
}

/* Category/post loop */

.categories-grid,
.posts-grid{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 420px) {
    .posts-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.posts-grid .category-loop,
.posts-grid .post-loop{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}
.post-rows{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.post-rows .post-loop{
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.category-loop-summary,
.post-loop-summary{
    padding: 10px;
}
.posts-grid .post-loop-summary{
    height: 100%;
    width: 100%;
    border-radius: 3px;
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.category-loop-thumbnail,
.post-loop-thumbnail{
    text-align: center;
}
.post-cover .post-cover-inner{
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 430px;
    width: 100%;
    transition: 0.3s;
}
.post-cover .post-cover-inner:before{
    transition: 0.3s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.post-cover .post-cover-inner:hover:before{
    background: rgba(0,0,0,0);
}
.post-cover .post-cover-title{
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 4rem;
    font-weight: 600;
}
.post-cover .post-cover-inner:hover{
    filter: brightness(1);
}
.category-loop-thumbnail img,
.post-loop-thumbnail img{
    height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (max-width: 768px) {
    .category-loop-thumbnail img,
    .post-loop-thumbnail img {
        max-height: 360px;
        height: 100%;
    }
}
.post-rows .post-loop-thumbnail img{
    width: 380px;
    height: 190px;
}
.posts-grid .post-loop-thumbnail{
    width: 100%;
}
.posts-grid .post-loop-thumbnail img{
    border-radius: 0 0 3px 3px;
}
@media (max-width: 768px) {
    .post-rows .post-loop-thumbnail img{
        width: 100%;
    }
}
.category-loop-title,
.post-loop-title{
    font-size: 1.75rem;
    font-family: var(--articles-font);
    margin: 0.5em 0;
}
.post-loop-description{
    line-height: 1.5;
    font-family: var(--articles-font);
}
.post-loop-category{
    font-family: var(--main-font);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #E4BE7C;
    margin: 0.5em 0;
}

.category-summary{
    margin: auto;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 50%;
}
.category-summary *:last-child{
    padding-bottom: 20px;
}
.category-summary *{
    margin: 0;
}
.category-title {
    font-family: var(--articles-font);
    color: #4A4A4A;
    font-size: 3.125rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.category-description {
    font-family: var(--main-font);
    color: #39393A;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75rem;
    margin: 1.25rem auto 0 auto;
    text-align: center;
}
.category-see-all{
    color: #E4BE7C;
    text-align: center;
}
@media (min-width: 769px) {
    .post-rows .post-loop{
        flex-direction: row;
    }
    .post-rows .post-loop .post-loop-summary{
        order: 1;
    }
    .post-rows .post-loop .post-loop-thumbnail{
        order: 2;
    }
}
@media (max-width: 768px) {
    .post-loop-thumbnail{
        width: 100%;
    }
    .category-summary{
        width: 100%;
    }
}
/*.posts-grid-2-2,
.posts-grid-3,
.posts-grid-3-3,
.posts-grid-4,
.posts-grid-4-4,
.posts-grid-15,
.posts-grid-12{
    padding: 0 15px;
}*/
.posts-grid-15{
    margin-top: 1.75em;
}
@media (min-width: 769px) {
    .posts-grid-2-4 li:nth-child(1) .post-loop-title,
    .posts-grid-2-4 li:nth-child(2) .post-loop-title,
    .posts-grid-3-4 li:nth-child(1) .post-loop-title,
    .posts-grid-3-4 li:nth-child(2) .post-loop-title,
    .posts-grid-3-4 li:nth-child(3) .post-loop-title,
    .posts-grid-3-3 .post-loop-title,
    .posts-grid-3 .post-loop-title,
    .posts-grid-2-2 .post-loop-title,
    .post-rows .post-loop-title {
        font-size: 1.75rem;
    }
}
.posts-grid.posts-grid-2-4,
.posts-grid.posts-grid-3-4{
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}
.posts-grid.posts-grid-2-4 li,
.posts-grid.posts-grid-3-4 li{
    width: calc(25% - 25px);
}
.posts-grid.posts-grid-2-2{
    grid-template-columns: repeat(2, 1fr);
}
.posts-grid.posts-grid-4-4,
.posts-grid.posts-grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.posts-grid.posts-grid-3{
    grid-template-columns: repeat(3, 1fr);
}
.post-rows li{
    width: 100%;
}
.posts-grid.posts-grid-2-4 li:nth-child(1),
.posts-grid.posts-grid-2-4 li:nth-child(2){
    width: calc(50% - 15px);
}

.posts-grid.posts-grid-3-4 li:nth-child(1),
.posts-grid.posts-grid-3-4 li:nth-child(2),
.posts-grid.posts-grid-3-4 li:nth-child(3){
    width: calc(33% - 20px);
}
.posts-grid.posts-grid-2-2 .post-loop-thumbnail img,
.posts-grid.posts-grid-2-4 li:nth-child(1) .post-loop-thumbnail img,
.posts-grid.posts-grid-2-4 li:nth-child(2) .post-loop-thumbnail img{
    height: 100%;
    max-height: 360px;
}

@media (max-width: 999px) {
    .posts-grid.posts-grid-4-4,
    .posts-grid.posts-grid-4{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .posts-grid.posts-grid-2-4 li,
    .posts-grid.posts-grid-3-4 li{
        width: calc(50% - 15px);
    }
    .posts-grid.posts-grid-2-4 li:nth-child(1),
    .posts-grid.posts-grid-2-4 li:nth-child(2),
    .posts-grid.posts-grid-3-4 li:nth-child(1),
    .posts-grid.posts-grid-3-4 li:nth-child(2),
    .posts-grid.posts-grid-3-4 li:nth-child(3){
        /*width: calc(100% - 30px);*/
        width: 100%;
    }
    .posts-grid.posts-grid-3 li{
        width: 100%;
    }
    .posts-grid.posts-grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 420px) {
    .posts-grid.posts-grid-2-4 li,
    .posts-grid.posts-grid-3-4 li{
        width: 100%;
    }

    .posts-grid.posts-grid-2-2,
    .posts-grid.posts-grid-4-4,
    .posts-grid.posts-grid-4{
        grid-template-columns: repeat(1, 1fr);
    }
}
.favorite-posts{
    row-gap: 60px;
}
.newsletter-subscription-form-container{
    background-color: #ffffff;
}
.newsletter-subscription-form{
    color: #4A4A4A;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(1190px + 2em);
    padding: 1em;
}
@media (max-width: 768px){
    .newsletter-subscription-form{
        flex-direction: column;
    }
}
.newsletter-subscription-form > div{
    width: calc(50% - 20px);
}
.newsletter-subscription-form > div:nth-child(2){
    display: flex;
}
.newsletter-subscription-form input{
    padding: 0 10px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    width: stretch;
}
.newsletter-subscription-form button{
    border: none;
    white-space: nowrap;
    background-color: #E4BE7C;
    color: #ffffff;
    height: 45px;
    padding: 0 30px;
}
@media (max-width: 768px) {
    .newsletter-subscription-form > div{
        width: 100%;
    }
}

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 2em 0;
}
.pagination .current{
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    opacity: 1;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 40%;
}

.read-more{
    transition: 0.3s;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--main-font);
    padding: 20px 30px;
    font-size: 1rem;
    background-color: #E4BE7C;
    color: #ffffff;
}
.read-more:hover{
    background-color: #D79F3D;
}

.category-entry{
    text-align: center;
    margin: auto;
}
.category-section{
    padding: 2em 0;
}
.category-section-title{
    font-size: 3.125rem;
    text-align: center;
}
.parent-category-title {
    color: #39393A;
    font-family: var(--main-font);
    font-size: 0.625rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    text-align: center;
}
.category-entry .category-title{
    font-size: 4.2rem;
}
.category-entry p{
    max-width: 50%;
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 2em auto;
}
.category-section-description{
    color: #39393A;
    font-family: var(--main-font);
    margin-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75rem;
    text-align: center;
}
article > .content > *{
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
article .content > *{
    margin: 40px auto;
}
article .inner-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 1em;
}
article.type-page p a{
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid #e4be7c;
}
article.type-page ul{
    list-style-type: disc;
    padding-inline-start: 40px;
}
/*article h1{
    margin: 0;
}*/
.post-summary{
    margin: 0 auto;
    width: 100%;
    max-width: 1020px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.post-date{
    font-family: Gotham SSm A, Gotham SSm B, Arial, Helvetica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: .8rem;
    line-height: 1.2;
    margin-top: 36px;
    letter-spacing: 3px;
    color: #4a4a4a;
    text-align: center;
}
.post-thumbnail{
    position: relative;
    overflow: hidden;
    height: 500px;
    width: 100%;
    margin: 50px 0;
}
.post-thumbnail img{
    position: absolute;
    width: 100%;
    height: auto;
}
.post-title{
    text-align: center;
    font-family: Mercury Text G1 A, Mercury Text G1 B, Georgia, Times new roman, serif;
    letter-spacing: normal;
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.2;
}
.post-excerpt{
    font-family: Mercury Text G1 A, Mercury Text G1 B, Georgia, Times new roman, serif;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    margin-top: 50px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.hero-image,
.single-image,
.post-thumbnail{
    max-width: 1020px;
    height: 520px;
    margin: 50px auto;
}
.hero-image img,
.single-image img,
.post-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.byline{
    text-align: center;
}
.byline > div{
    margin-bottom: 0.6em;
}
.article__richtext {
    font-family: Mercury Text G1 A, Mercury Text G1 B, Georgia, Times new roman, serif;
    letter-spacing: normal;
    color: #4a4a4a;
}
.richtext__content,
article.type-page p,
article.type-page ul{
    line-height: 1.5;
    font-family: var(--articles-font);
}{
    line-height: 1.5;
}
.richtext__content p{
    margin-bottom: 1.8em;
}
.richtext__content::first-letter,
.first-letter-capitalized::first-letter {
    font-size: 3.75rem;
    color: #e4be7c;
    float: left;
    line-height: .9;
    margin: -5px 6px 0 0;
    position: relative;
    text-indent: 0;
}

.richtext__title{
    line-height: 1.3;
    font-size: 28px;
    margin: 0.5em;
    text-align: center;
}
.richtext__entry{
    margin: 1em 0;
    text-align: center;
}
.article__richtext a,
article.type-page p a{
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid #e4be7c;
}
.article__richtext blockquote,
article.type-page blockquote{
    margin-inline-start: -100px;
    margin-top: 20px;
    font-family: inherit;
    letter-spacing: normal;
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 300;
    padding: 40px 0;
    border-image: linear-gradient(to right, #e4be7c 30%, transparent 30%);
    border-image-width: 5px 0;
    border-image-slice: 1;
/*    border-top: 5px solid #e4be7c;
    border-bottom: 5px solid #e4be7c;*/
}
@media (min-width: 768px){
    .article__richtext blockquote {
        margin-left: -100px;
    }
}
.article__richtext blockquote:before {
    content: "\201C";
    line-height: 12px;
}
/*
.article__richtext blockquote:after,
.article__richtext blockquote:before {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background-color: #e4be7c;
}
.article__richtext blockquote:before {
    margin-bottom: 40px;
}
.article__richtext blockquote:after {
    margin-top: 40px;
}*/
.multiple-image img{
    object-fit: contain;
}
.multiple-image.grid{
    align-items: center;
    justify-content: center;
    display: grid;
}
.multiple-image.grid img{
    padding: 5px;
    width: 100%;
}
.multiple-image.grid-1{
    grid-template-columns: repeat(1, 1fr);
}
.multiple-image.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.multiple-image.grid-3{
    grid-template-columns: repeat(3, 1fr);
}
.multiple-image.swiper img{
    height: 320px;
}
.multiple-image.grid-1.swiper .swiper-wrapper{
    justify-content: center;
}

.discover-more-options{
    column-gap: 10px;
    display: flex;
    white-space: nowrap;
}
.discover-more-options li{
    width: 20%;
    height: 80px;
    position: relative;
    overflow: hidden;
    min-width: calc(1020px / 5);
}
.discover-more-options li a{
    padding: 0.5em;
    transition: 0.3s;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    position: absolute;
    white-space: normal;
}
.discover-more-options li a:hover{
    background-color: rgba(0, 0, 0, .2);
}
.discover-more-options li img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1020px) {
    .discover-more-options{
        overflow-x: auto;
    }
}
.footer__copyright{
    padding: 12px 20px;
}
.page-numbers.next{
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-numbers svg{
    width: 14px;
}
.fixed-header{
    position: fixed!important;
    width: 100%;
    top: 0;
    z-index: 10;
}
.admin-bar .fixed-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .fixed-header {
        top: 46px;
    }
}
/*
span:empty,
p:empty {
    display: none!important;
}*/
.logo-scroll{
    padding: 1em;
    border-right: 1px solid #d3d3d3;
}
.logo-scroll.logo-desktop{
    width: calc(150px + 2em);
}
#mobile-header .logo-mobile{
    width: 150px;
}
.logo-scroll.logo-mobile{
    width: fit-content;
}
@media screen and (max-width: 1470px) {
    .logo-scroll.logo-desktop {
        display: none!important;
    }
}
@media screen and (min-width: 1471px) {
    .logo-scroll.logo-mobile {
        display: none!important;
    }
}
.underquote{
    margin-top: 25px;
    color: #BBBBBB;
    font-size: 0.75rem;
    font-weight: 500;
}
.gotham-font{
    font-family: Gotham SSm A, Gotham SSm B, Arial, Helvetica, sans-serif;
}
.divider{
    height: 1px;
    background-color: #9A9A9A;
    width: 100%;
    margin-top: 10px;
}