/*!
Theme Name: The Globe Trotters
Theme URI: None
Author: SemiCoulomb
Author URI: None
Description: Custom theme for The Globe Trotters
Version: 1.3
*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,600,700,800,900|Roboto:400,500|Raleway:400,500,700,800,900|Licorice:400,500,600,700,800,900');

:root{
    --text-shadow-1px: 1px 1px 3px rgb(0, 0, 0);
    --text-shadow-0px: 0px 1px 3px rgb(0, 0, 0);
    --read-more-bg-lb: #57c8ef;
    --read-more-bg-bl: #49aaca;
    --white: rgb(255, 255, 255);
    --dgrey: #333;
    --skyblue: #61d0fc;
}

*, body{
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 99;
}

.modal-content{
    position: absolute;
    width: 90%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.01);
    transition: transform 250ms ease-in-out;
}

.modal-content img{
    display: block;
    width: 100%;
    height: auto;
	max-height: 1080px;
    object-fit: contain;
}

.modal-content.open{
    transform: translate(-50%, -50%) scale(1);
}

.modal .close{
	position: absolute;
    right: 2%;
    top: 5%;
    width: 40px;
    height: 40px;
    color: white;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}

.modal .close i{
	font-size: 30px;
}

.wrapper{
    position: relative;
    min-height: 100vh;
}

a{
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}

/* Global classes */
.raleway{
    font-family: 'Raleway', sans-serif;
}

.open-sans{
    font-family: 'Open Sans', sans-serif;
}

.licorice{
    font-family: 'Licorice', sans-serif;
}

.date{
    color: #c9f0fc;
    text-transform: uppercase;
    text-shadow: var(--text-shadow-1px);
}

.head-title{
    font-size: 2.5rem;
    text-shadow: var(--text-shadow-1px);
}

.light{
    font-weight: 500;
}

.extra-bold{
    font-weight: 700;
}

.bold{
    font-weight: 600;
}

.white{
    color: var(--white);
}

.uppercase{
    text-transform: uppercase !important;
}

.capitalize{
    text-transform: capitalize;
}

.center{
    text-align: center;
}

.read-more{
    display:block;
    background: var(--read-more-bg-bl);
    color:var(--white);
    width: max-content;
    padding: .75em 1.5em .75em 1.5em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.no-scroll{
    overflow: hidden;
    touch-action: none;
}

.fixed{
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 98;
    background-color: white;
    animation: .5s slideDown ease-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

.mobile-links.fixed{
    position: fixed;
}

.mobile-links.fixed.open{
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
}

.top{
    position: fixed;
    bottom: 2%;
    right: 5%;
    width:40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .75);
    border-radius: 100%;
    z-index: 98;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, .5);
    transform: translateY(150%);
	opacity: 0;
}

.top.show{
	opacity: 1;
    animation: .5s slideUp ease-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

.top.hide{
	opacity: 1;
    animation: .5s slideOut ease-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

.top i{
    color: black;
    font-size: 1.5rem;
}


/*Header styles */
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 80px;
    max-height: 250px;
    background: var(--white);
}

.logo-container a{
    text-transform: none;
}

/* Site Nav styles */
.site-nav{
    display: flex;
    list-style: none;
    padding-bottom: 1rem;
}

.menu{
    display: flex;
    list-style:none;
}

.site-nav li{
    position: relative;
    margin-right: 1rem;
}

.site-nav li::before{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: "";
    display: block;
    width: 0px;
    height: 1px;
    background: black;
    transition: width 200ms ease-in-out;
}

.site-nav li:hover::before{
    width: 100%;
}

.site-nav li:hover.current::before{
    background: #76c1df;
}

.site-nav li.current a{
    color: var(--skyblue);
}
.site-nav li.current::before{
    width: 100%;
    background: var(--skyblue);
}
/* End of site nav styles */

/* Mobile nav styles */

.mobile-nav{
    display: none;
    position: relative;
    background: black;
    width: 100%;
    height: 50px;
}

.mobile-links{
	display: none;
}

.mobile-nav > .menu-top-nav-container{
    position: absolute;
    top: 100%;
    width: 100%;
}

.menu-toggle{
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    background: white !important;
    height: 3px;
    width: 2em;
    transition: all ease-in-out 500ms;
}

.hamburger::before{
    transform: translateY(-6px);
}

.hamburger::after{
    transform: translateY(3px);
}

.menu-toggle.open .hamburger::before{
    opacity: 0;
}

.open .hamburger{
    transform: rotate(45deg);
}

.open .hamburger::after{
    transform: translateY(-3px) rotate(-90deg);
}


.mobile-menu-text{
    margin-left: calc(1rem / 3);
}

/* Logo styles */
.logo-container{
    padding: 3rem 0 3rem 0;
}

.logo-container h1{
    font-size: 6rem;
    color: black;
}
/* END OF LOGO-STYLES */
/* End of header styles */

/* Slider styles */
.slider-container{
    display: flex;
    min-height: 400px;
}

.slider-inner-container{
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    align-items: center;
    overflow: hidden;
}

/*Slide styles */
.slider-container #slide{
    position: absolute;
    background: var(--skyblue);
    display: none;
    align-items: center;
    width: 100%;
    min-height: 100%;
    background-size: cover !important;
    background-position: center !important;
    top: -99%;
}

.slider-container #slide.first{
    display: flex;
    top: 0;
}

.slider-container #slide.current{
    z-index: 1;
}

/* Column Styles */
.slider-container #slide .column{
    position: absolute;
    left: 20%;
    max-width: 450px;
}

.slider-container #slide .column .read-more{
    outline: 3px solid #333;
    transition: outline 300ms ease-in-out, background 300ms ease-in-out;
}

.slider-container #slide .column .read-more:hover{
    outline: 3px solid black;
    background: var(--read-more-bg-lb);
}

#slide > .column > .date{
    margin-bottom: .5rem;
}

#slide > .column > .head-title{
    margin-bottom: 1rem;
}

.slide.active{
	cursor: pointer;
}
/* End Column styles */
/* End of Slide Styles */

/* Slide previews */
.slider-inner-container > .slide-previews{
    position: absolute;
    display: flex;
    max-width: 50px;
    height: auto;
    flex-direction: column;
    right: 1rem;
    z-index: 2;
}

.slide-previews #slide-preview{
    display: block;
    width: 50px;
    height: 50px;
    background-size: cover !important;
    margin-top: .5rem;
    outline: 1px solid var(--white);
    cursor: pointer;
    transition: all 200ms ease-in-out;
    box-shadow: inset 0px 0px 4px 0px rgb(51 51 51);
    background: var(--skyblue);
}

.slide-previews > #slide-preview:first-of-type{
    margin: 0;
}

.slide-previews > #slide-preview.current{
    outline: 1px solid black !important;
}

.slide-previews > #slide-preview:hover{
    outline: 1px solid var(--dgrey);
}

.column .date-container{
    width: 100%;
    min-height: 22px;
    position: relative;
    overflow: hidden;
}

.date-container h2.date{
    position: absolute;
    top: -100%;
}
/* End of Slider Previews */
/* End of Slider Styles */

/* Main Content Styles */
.main-content{
    display: flex;
    position: relative;
    width: 1040px;
    margin: 0 auto;
    margin-top: 2rem;
    flex-direction: column;
    min-height: calc(100vh - 576px);
}

/* Upper Column Styles */
.upper-column{
    display: flex;
    width: 100%;
    height: 200px;
}

/* Box Styles */
.upper-column > .box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 33%;
    min-height: 100%;
    background-size: cover !important;
    background-position: center !important;
    margin-right: 2rem;
}

.upper-column > div.box:last-of-type{
    margin: 0;
}

.upper-column > .box > .box-inner{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction:column;
    align-items: center;
    min-height: 100%;
    justify-content: center;
}

.upper-column > .box > .read-more{
    height: max-content;
    background: var(--read-more-bg-lb);
    text-shadow: var(--text-shadow-0px);
    transition: all 300ms ease-in-out;
}

.upper-column > a.box:hover .read-more{
    background: #2b96d8;
}

.upper-column > .box > .box-inner > .read-more{
    position: absolute;
    height: max-content;
    background: var(--read-more-bg-lb);
    text-shadow: var(--text-shadow-0px);
}

.upper-column > div.box > .box-inner > .expandable{
    display:flex;
    max-height: 0;
    width: 100%;
    background: var(--read-more-bg-lb);
    flex-direction:column;
    text-align: center;
    overflow: hidden;
    transition: all 200ms ease-in;
    z-index: 1;
}

.upper-column > div.box:hover > .box-inner > .expandable{
    max-height: 100%;
    z-index: 1;
}


.upper-column > div.box > .box-inner > .expandable a{
    padding-bottom: .5rem;
    width: 100%;
    color: var(--white);
    text-shadow: var(--text-shadow-0px);
    transition: all 200ms ease-in-out;
}

.upper-column > div.box > .box-inner > .expandable a:first-of-type{
    padding-top: .5rem;
}

.upper-column > div.box > .box-inner > .expandable a:hover{
    color: var(--dgrey);
    text-shadow: none;
}

/* End of Box Styles */
/* End of Upper Column Styles */

/*Bottom Column Styles */
.bottom-column{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 1450px;
}

.bottom-column > .post{
    display: flex;
    width: 100%;
    height: 225px;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e7e7e7
}

/* Post styles */
/* Post Image */
.post > a{
    width: 33%;
    margin-right: 1rem;
}

.post > .post-image{
    width: 33%;
    background-size: cover !important;
    background-position: center !important;
    margin-right: 1rem;
}

.post > a > .post-image{
    width: 100%;
    height: 100%; 
    background-size: cover !important;
    background-position: center !important;
}

.post > a > .post-image img{
    width: 100%;
    height: 100%;
}

/* End of Post Image */

/* Post Data Styles */
.post > .post-data{
    width: 66%;
}

.post > .post-data > .post-title,
.post > .post-data > .date-and-category,
.post > .post-data > .post-content{
    margin-bottom: .5rem;
}

.post > .post-data > .post-title > a{
    text-transform: none;
}

/* Date and Category Styles */
.post > .post-data > .date-and-category > .date,
.post > .post-data > .date-and-category > .category,
.post > .post-data > .date-and-category > .comments-number,
.comment-row > .date-and-category > .date,
.comment-row > .date-and-category > .author{
    width: max-content;
    color: gray;
    text-shadow: none;
    font-size: 14px;
    text-transform: none;
}

.post > .post-data > .date-and-category > .date i,
.post > .post-data > .date-and-category > .category i,
.post > .post-data > .date-and-category > .comments-number i{
    font-size: 14px;
    margin-right: .25rem;
}

.post > .post-data > .date-and-category > .category,
.post > .post-data > .date-and-category > .comments-number{
    margin-left: 2rem;
}

/* Post Text Styles */
.post > .post-data > .post-content > .post-text{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    max-width: 75%;
    line-height: 1.5;
    color: var(--dgrey);
}
/* End of Post Text Styles */

.post > .post-data > a.read-more{
    background: var(--read-more-bg-lb);
    font-size: 12px;
    transition: all 300ms ease-in-out;
}

.post > .post-data > a.read-more:hover{
    background: #2b96d8;
}
/* End Of Post Styles */

/* Single Post Styles */
/* Showcase Styles */
.video-container{
	display: flex;
	justify-content: center;
	align-items: center;
}

#single.showcase{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center !important;
    flex-direction: column;
}

#single.showcase > h1.header-title{
    color: var(--white);
    text-shadow: var(--text-shadow-1px);
    font-size: 2rem;
}

.slide-buttons{
    position: absolute;
    z-index: 1;
    display: none;
    justify-content: center;
    width: 100%;
    bottom: 1%;
}

.circle{
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .5);
    border-radius: 100%;
    margin-right: .5%;
    box-shadow: 0px 0px 15px black;
}

.circle.active{
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 3px black;
}

/* Main Content */
#single.main-content{
    width: 1040px;
}
#single.main-content > .post{
    width: 75%;
    margin: 0 auto;
    margin-top: .5rem;
}

#single.main-content > .post > .post-data{
    display: flex;
    width: 50%;
}

/* Single post text styles */
#single .post > .post-data {
    margin-top: 1rem;
}

#single .post > .post-content{
    border-bottom: 1px solid #e7e7e7;
	padding-bottom: 30px;
}

#single.main-content > .post > .post-content > .post-text{
    margin-top: 1rem;
    line-height: 1.5;
}

#single.main-content > .post > .post-content > .image-container{
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
}

#single.main-content > .post > .post-content > .image-container > .header-title > h1{
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--dgrey);
}


#single.main-content > .post > .post-content > .image-container > .post-images{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

#single.main-content > .post > .post-content >  .image-container > .post-images > a{
    display: block;
    cursor: pointer;
    width: 200px;
    height: 100px;
    background-size: cover !important;
    background-position: center !important;
}

#single .post > .post-data > .date-and-category > .date{
    margin-left: .25rem;
}

#single.main-content .slider{
    width: 100%;
    height: 400px;
    background: grey;
}

/* SINGLE PAGE MODAL */

#single .slider{
    width: 100%;
    height: 400px;
}

#single .slider-inner{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#single .slide{
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#single .slide:first-of-type{
    display: block;
    left: 0%;
    z-index: 1;
}

.slide-img{
    width: 100%;
    height: 400px;
}

#single .slider-nav{
    display: flex;
    position: absolute;
	top: 50%;
    width: 100%;
    align-items: center;
    z-index: 1;
}

#single .slider-nav > .left,
#single .slider-nav > .right{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    width: 30px;
    height: 60px;
    background: rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: background 200ms ease-in-out;
}

#single .slider-nav > .left:hover,
#single .slider-nav > .right:hover{
    background: rgba(0, 0, 0, .6);
}

#single .slider-nav > .right{
    right: 0;
}

#single .slider-nav > .left i,
#single .slider-nav > .right i{
    font-size: 1rem;
}

#single .header-title{
    font-size: 1.5rem;
    margin-top: 2rem;
}

/* Comment Styles */
.comment-title{
    margin-top: 1rem;
}

#respond.comment-respond{
    margin-top: 1rem;
}

.comment-row{
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

input#email,
input#author{
    width: 250px;
    height: 25px;
}

#comment{
    width: 100%;
    resize: none;
}

.comment-form p{
    margin-top: 1rem;
}

label, p.comment-notes, #reply-title{
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

input#submit.submit{
    background: var(--skyblue);
    border: none;
    padding: .5rem;
    color: var(--white);
    cursor: pointer;
    outline: 0px;
    transition: all 200ms ease-in-out;
}

input#submit.submit:hover{
    outline: 1px solid #333;
}

.comment-row > .date-and-category{
    width: max-content;
    border-bottom: 1px solid #333;
}

/* ## Comments
--------------------------------------------- */
.comment-respond,
.entry-pings,
.entry-comments {
    color: #444;
    padding: 20px 45px 40px 45px;
    border: 1px solid #ccc;
    overflow: hidden;
    background: #fff;
}
.entry-comments h3{
    font-size: 30px;
    margin-bottom: 30px;
}
.comment-respond h3,
.entry-pings h3{
    font-size: 20px;
    margin-bottom: 30px;
}
.comment-respond {
    padding-bottom: 5%;
    margin: 20px 1px 20px 1px;
}
.comment-header {
    color: #adaeb3;
    font-size: 14px;
    margin-bottom: 20px;
}
.comment-header cite a {
    border: none;
    font-style: normal;
    font-size: 16px;
    font-weight: bold;
}
.comment-header .comment-meta a {
    border: none;
    color: #adaeb3;
}
li.comment {
    background-color: #fff;
    border-right: none;
}
.comment-content {
    clear: both;
    overflow: hidden;
}
.comment-list li {
    font-size: 14px;
    padding: 20px 30px 20px 50px;
}
.comment-list .children {
    margin-top: 40px;
    border: 1px solid #ccc;
}
.comment-list li li {
    background-color: #f5f5f6;
}
.comment-list li li li {
    background-color: #fff;
}
.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
    width: 50%;
}
.comment-respond label {
    display: block;
    margin-right: 12px;
}
.entry-comments .comment-author {
    margin-bottom: 0;
    position: relative;
}
.entry-comments .comment-author img {
    border-radius: 50%;
    border: 5px solid #fff;
    left: -80px;
    top: -5px;
    position: absolute;
    width: 60px;
}
.entry-pings .reply {
    display: none;
}
.bypostauthor {
    list-style: none;
}
.form-allowed-tags {
    background-color: #f5f5f5;
    font-size: 16px;
    padding: 24px;
}
.comment-reply-link{
    cursor: pointer;
    background-color: #444;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 4px 10px 4px;
    text-transform: uppercase;
    width: auto;
}
.comment-reply-link:hover{
    color: #fff;
}
.comment-notes{
    display:none;   
}
.comment, .children, .bypostauthor, .parent{
    list-style: none;
}

.comment-list > .comment{
    margin-top: 1rem;
}

li.comment{
    border-bottom: 1px solid #e7e7e7;
}

li.comment:last-of-type{
    border-bottom: none;
}

.comment-list a{
    text-transform: none;
}

.comment-body p{
    margin-top: 1rem;
}

.comment-meta{
    width: max-content;
    border-bottom: 1px solid black;
}

.reply{
    margin-top: 1rem;
}

.reply a{
    text-transform: uppercase;
}

.comment-list li, ul, .logged-in-as{
    font-family: 'Open sans', sans-serif;
}

.logged-in-as .required-field-message{
    display: block;
    margin-top: 1rem;
}

.comment-list .fn{
    text-transform: capitalize;
}

.comment-list{
    width: 100%;
    margin: 0 auto;
    margin-top: 10rem;
}

#reply-title{
    margin: 0 !important;
}

.comment-list #cancel-comment-reply-link{
    display: block;
    margin-bottom: 1rem;
    width: max-content;
}

.footer{
    width: 100%;
    margin-top: 10rem;
    text-align: center;
    background: var(--read-more-bg-lb);
    padding: 2rem 0 2rem 0;
    color: white;
    text-shadow: var(--text-shadow-1px);
}

.footer a{
    text-transform: none;
    color: white;
}

/* Archive page styles */
#archive.showcase,
#single .showcase{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    background-position: center !important;
    background-size: cover !important;
    background: var(--skyblue);
}

#archive.showcase h1.header-title{
    font-size: 2rem;
    text-shadow: var(--text-shadow-1px);
}

.no-content{
    text-align: center;
    margin-top: 2rem;
    font-size: 3rem;
    font-family: 'Open Sans', 'sans-serif';
}

@media only screen and (max-device-width: 800px){
    .header{
        max-height: none;
        padding-top: 50px;
    }
    .logo-container{
        padding: 0;
        padding-top: 1rem;
    }
    .logo-container h1{
        font-size: 4rem;
    }

    .site-nav{
        display: none;
    }

    .mobile-links, .mobile-nav{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .mobile-links{
        height: 0;
        position: absolute;
        left: 0;
        top: 50px;
        z-index: 99;
        overflow:hidden;
    }

    .menu{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: black;
        width: 100%;
        height: 100%;
    }

    .menu.open{
        background: black;
        height: 100vh;
    }

    .menu > li{
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .menu > li a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        color: white;
        padding: calc(1rem / 3);
    }

    .menu > li.current > a{
        color: var(--skyblue);
    }

    .upper-column{
        display: flex;
        height: auto;
        flex-direction: column;
    }

    .slider-container #slide .column{
        left: 10%;
        word-break: break-word;
        max-width: 200px;
    }

    .slider-container #slide .column h1{
        font-size: 1.5rem;
    }

    .upper-column > .box{
        width: 100%;
        height: 100%;
        min-height: 200px;
        margin: 0;
        margin-bottom: 2rem;
        overflow: hidden;
    }

    .upper-column > div.box:last-of-type{
        margin-bottom: 0;    
    }

    .upper-column > .box > .box-inner > .read-more{
        position: relative;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-left: 0;
    }

    .upper-column > .box > .box-inner > .expandable{
        max-height: fit-content !important;
    }
    
    .upper-column > div.box > .box-inner > .expandable a{

        padding-top: 1rem !important;
        padding-bottom: 1rem !important;

    }

    .upper-column > div.box > .box-inner > .expandable a:first-of-type{
        padding-top: 2rem !important;
    }

    .upper-column > div.box > .box-inner > .expandable a:last-of-type{
        padding-bottom: 2rem !important;
    }

    .bottom-column > .post{
        flex-direction: column;
        height: auto !important;
    }

    .post > .post-data{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .post > .post-data > .post-content > .post-text{
        text-align: center;
        margin: 0 auto;
    }

    .post > .post-data > .post-title, 
    .post > .post-data > .date-and-category, 
    .post > .post-data > .post-content{
        margin-bottom: 1rem;
    }

    .post > .post-data > .post-title{
        margin-top: 1rem;
		width: 85%;
    }

    .post > a{
        width: 100%;
        height: 200px;
    }

    .post > a > .post-image{
        width: 100%;
        height: 100%;
    }

    .post > .post-data > a.read-more{
        padding: 1rem 1.5rem;
    }

    .post > .post-data > .post-content > .post-text{
        max-width:90%;
        font-size: 14px;
    }

    .main-content{
        width: 100%;
    }

    #single.main-content{
        width: 100%;
        margin-top: 0;
    }

    #single.main-content .slider{
        height: 300px;
    }

    #single.main-content .slider .slide-img{
        height: 100%;
    }

    #single .slider-nav{
        display: none;
    }

    #single.main-content > .post{
        width: 85%;
        text-align: center;
    }

    #single .post > .post-content{
        text-align: left !important;
    }

    #single.main-content > .post > .post-data{
        width: 100%;
    }

    .comment-list > .comment{
        margin: 0;
        text-align: left;
        padding: 0;
        margin-top: 2rem;
        padding-bottom: 1rem;
    }

    .comment-respond{
        margin: 0;
        padding: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    input#email, input#author{
        width: 85%;
        height: 25px;
        font-size: 16px;
    }

    .comment-title{
        text-align: left;
        width: 100%;
        margin: 0 auto;
    }

    .comment-respond label{
        width: 85%;
        margin: 0 auto;
        margin-top: 1rem;
    }

    .comment-respond, .entry-pings, .entry-comments{
        margin: 0 auto;
    }

    .comment-respond label{
        text-align: left;
    }

    #comment{
        width: 85%;
    }

    input#submit.submit{
        margin-top: 1rem;
        width: 85%;
    }

    .comment-list{
        margin-top: 1rem;
    }

    .comment-reply-link{
        padding: 10px 20px 10px;
    }

    #archive .post > .post-image{
        width: 100%;
        min-height: 200px;
        margin-right: 0;
    }

    #archive.showcase{
        height: 200px;
    }

    .no-content{
        font-size: 1rem;
    }

    .slide-buttons{
        display: flex;
    }
	
	.slide-previews #slide-preview{
		width: 30px;
		height: 30px;
	}
	
	#single .showcase{
		height: 300px;
	}

	#single.main-content, #archive.main-content{
		margin-top: 0;
	}
	
    .footer{
        margin-top: 2rem;
    }
	
	.post-content video{
		width: 100%;
		height: 100%;
	}
}

@media only screen and (max-device-width: 1024px) and (orientation: landscape){
	#single.main-content > .post > .post-data{
		width: 75%;
	}
}

@media(max-width: 1080px){
    .main-content, #single.main-content{
        width: 100%;
    }
}

@media(min-width: 1700px){
    #single.main-content, .main-content{
        width: 1440px;
    }
}

@-webkit-keyframes slideDown {
    from {
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
        transform: translateY(-150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes slideDown {
    from {
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
        transform: translateY(-150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-o-keyframes slideDown {
    from {
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
        transform: translateY(-150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideDown {
    from {
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
        transform: translateY(-150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideUp {
    from {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes slideUp {
    from {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%)
    }
    to {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%)
    }
}

@-o-keyframes slideUp {
    from {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideUp {
    from {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%)
    }
    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideOut {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%);
    }
}

@-moz-keyframes slideOut {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%);
    }
}

@-o-keyframes slideOut {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%);
    }
}

@keyframes slideOut {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(150%);
        -moz-transform: translateY(150%);
        -ms-transform: translateY(150%);
        -o-transform: translateY(150%);
        transform: translateY(150%);
    }
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 20px;
    overflow: hidden;
    height: 500px !important; /* Desktop height */
}

.gallery-slider .slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slider .slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
}

.gallery-slider .slide.active {
    display: block;
    z-index: 1 !important;
    
}

.gallery-slider .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 300px !important; /* Mobile height */
    }
	
	.post > .post-image{
		width: 100%;
		height: 250px;
	}
}

.gallery-slider .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.gallery-slider .slider-nav span {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    /* margin: auto; */
    display: block;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.modal-image {
    max-width: 100%;
    max-height: 1080px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-slider-nav {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 1010;
}

.modal-slider-nav span {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    font-size: 24px;
}

.modal-nav {
    text-align: center;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.modal-thumbnail.active,
.modal-thumbnail:hover {
    border-color: #fff;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.view-more-btn {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 800; /* extra-bold */
}

.view-more-container > a.view-more-btn{
    background: var(--read-more-bg-lb);
    font-size: 12px;
    transition: all 300ms ease-in-out;
    color: var(--white);
    width: max-content;
    padding: .75em 1.5em .75em 1.5em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.view-more-container > a.view-more-btn:hover{
    background: #2b96d8;
}

/* Sorting Controls */
.sorting-controls {
    text-align: left;
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
}

.sorting-controls a, .sorting-controls span {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.sorting-controls a:hover {
    text-decoration: underline;
}

.sort-link{
    background: var(--read-more-bg-lb);
    color: var(--white);
    padding: .5em 1em;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sort-link.active{
    background: var(--read-more-bg-bl);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: .5em 1em;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .modal-thumbnail {
        width: 60px;
        height: 45px;
    }

    .modal-slider-nav span {
        padding: 10px;
        font-size: 18px;
    }

    .close-modal {
        font-size: 30px;
        right: 20px;
    }
}

/* Single Image Container */
.single-image-container {
    margin: 20px 0;
    text-align: center;
}

.single-image-container img {
    max-width: 100%;
    height: auto;
}

/* Responsive Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-header{
    padding-bottom: 15px;
}