/*
Theme Name: Turizam Diplomat
Theme URI: https://turizam.org/
Author: Turizam.org
Description: Tourism/news WordPress theme inspired by the supplied Diplomat-style layout.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: turizam-diplomat
*/


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #171717;
    line-height: 1.5;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(1400px, calc(100% - 5em));
    margin: 0 auto;
}


/* =========================================
   TOP RED NAVIGATION
========================================= */

.top-navigation {
    background: #b40000;
    color: #ffffff;
    width: 100%;
}

.nav-container {
    min-height: 48px;

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

.navigation-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.navigation-list a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    transition: opacity 0.2s ease;
}

.navigation-list a:hover {
    opacity: 0.7;
}


/* Mobile menu button */

.mobile-menu-toggle {
    display: none;

    border: 0;
    background: transparent;
    color: #ffffff;

    font-size: 24px;
    cursor: pointer;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid #dedede;
}

.header-container {
    position: relative;

    min-height: 90px;

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


/* Logo stays visually centered */

.site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.08em;

    white-space: nowrap;
}


/* Header sides */

.header-left,
.header-right {
    width: 180px;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.header-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Search */

.search-button {
    border: 0;
    background: transparent;

    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;
}

.search-icon {
    font-size: 25px;
    line-height: 1;
}


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

.featured-section {
    padding: 45px 0 55px;

    border-bottom: 1px solid #d9d9d9;
}

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

    gap: 25px;
}


/* Main featured */

.featured-main {
    position: relative;

    background: #111;
    color: #ffffff;
}

.featured-main img {
    aspect-ratio: 16 / 10;
    object-fit: cover;

    opacity: 0.78;
}

.featured-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px;
}

.featured-content h1 {
    max-width: 800px;

    margin: 8px 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
}

.featured-content p {
    max-width: 650px;

    margin-bottom: 12px;

    font-size: 16px;
}


/* Secondary */

.featured-secondary {
    display: grid;
    grid-template-rows: 1fr 1fr;
    border:1px solid #dedede;
    border-radius:1em;
    padding:1em;
    gap: 25px;
    position:relative;
}

.featured-secondary .ticket-icon {
  width:17%;
  position:absolute;
  right:-1em;
  top:-2em;
  opacity:0.9;
}


.featured-small {
    display: grid;
    grid-template-columns: 45% 1fr;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid #d5d5d5;
}

.featured-small img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.featured-small h2 {
    margin: 5px 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    line-height: 1.15;
}


/* =========================================
   COMMON TYPOGRAPHY
========================================= */

.category {
    display: inline-block;

    color: #b40000;

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

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-meta,
.article-time {
    display: block;

    color: #777777;

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

    text-transform: uppercase;
    letter-spacing: 0.05em;
}




/* =========================================
   MAIN THREE COLUMN AREA
========================================= */

.main-section {
    padding: 50px 0;
}

.content-layout {
    display: grid;

    grid-template-columns:
        210px
        minmax(0, 1fr)
        210px;

    gap: 35px;

    align-items: start;
}


/* =========================================
   SIDEBARS
========================================= */

.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-block {
    margin-bottom: 40px;
}

.sidebar-title {
    margin-bottom: 18px;
    padding-bottom: 10px;

    border-bottom: 3px solid #171717;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
}


.sidebar-article {
    display: grid;
    grid-template-columns: 35px 1fr;

    gap: 10px;

    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

.number {
    color: #b40000;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    font-weight: 700;
}

.sidebar-article h4 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
    line-height: 1.3;
}


.topic-list li {
    border-bottom: 1px solid #ddd;
}

.topic-list a {
    display: block;

    padding: 10px 0;

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


/* Right sidebar */

.right-article {
    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

.right-article h4 {
    margin-top: 5px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;
    line-height: 1.3;
}

.right-article .sidebar-right-thumbnail {
    max-height:7em;
}

.right-article .article-time {
    margin-top:0.5em;
}

.sidebar-ad {
  width:100%;
  overflow:hidden;
  margin-bottom:30px;
  min-height:10em;
  img {
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
  }

}
@media (max-width:767px) {
  .sidebar-ad{
    margin-bottom:25px;
  }
}


/* =========================================
   CONTENT SECTIONS
========================================= */

.content-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 10px;

    border-bottom: 3px solid #171717;
}

.section-header h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    line-height: 1;
}

.section-link {
    color: #b40000;

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

    text-transform: uppercase;
}


/* =========================================
   LATEST — 2 × 3
========================================= */

.latest-grid {
    display: grid;

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

    gap: 30px 20px;
}

.post-card {
    min-width: 0;
}

.post-card img {
    aspect-ratio: 4 / 3;

    object-fit: cover;

    margin-bottom: 12px;
}

.post-card h3 {
    margin: 6px 0 8px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    line-height: 1.15;
}

.post-card p {
    color: #666;

    font-size: 13px;
}

/* =========================================
BLOG Articles
========================================= */
.blogs-section {
    margin-top: 50px;
}

.section-heading {
    border-top: 2px solid #111;
    border-bottom: 1px solid #111;
    padding: 10px 0;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    min-width: 0;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card h3 {
    margin: 12px 0 0;
    font-size: 1rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #b40000;
}

.entry-category-post-home {
    position: absolute;
    top: 0.6em;
    right: 0.6em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: #ffffff;
    color: #111111;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border-radius:0.3em;
    opacity:1;
    border:0.1em solid #dedede;
}



/* =========================================
   FEATURED ARTICLES — 2 × 2
========================================= */

.featured-posts-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 35px 25px;
}

.large-post-card img {
    aspect-ratio: 16 / 10;

    object-fit: cover;

    margin-bottom: 15px;
}

.large-post-card h3 {
    margin: 7px 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    line-height: 1.1;
}

.large-post-card p {
    color: #666;

    font-size: 14px;
}


/* =========================================
   BOTTOM — 1 × 4
========================================= */

.bottom-section {
    padding: 45px 0 70px;

    border-top: 1px solid #ddd;
}

.bottom-posts-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.small-post-card img {
    aspect-ratio: 4 / 3;

    object-fit: cover;

    margin-bottom: 12px;
}

.small-post-card h3 {
    margin-top: 5px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    line-height: 1.15;
}


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

.site-footer {
    background: #171717;

    color: #ffffff;
}

.footer-container {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr 1fr;

    gap: 60px;

    padding: 3em 0;
}

.footer-logo {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 15px;

    color: #aaa;

    font-size: 13px;
}

.footer-container .footer-brand img {
    max-width:5em;
    height:auto;
}

.footer-column h3 {
    margin-bottom: 15px;

    font-size: 13px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;

    font-size: 13px;
}

.footer-bottom {
    padding: 20px 0;
    grid-column: 1 / -1;

    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;

    font-size: 11px;
}

.footer-column .footer-social a {
    font-size:3em;
}

.footer-social {
    display:flex;
    gap:1em;
}

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

@media (max-width: 1100px) {

    .content-layout {
        grid-template-columns:
            180px
            minmax(0, 1fr)
            180px;

        gap: 25px;
    }

    .footer-container > :nth-child(4) {
        display:none;
    }

    .navigation-list {
        gap: 20px;
    }

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

    .featured-secondary {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    @media (max-width:1100px) {
      .featured-secondary .ticket-icon {
        display:none;
      }
    }

}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 850px) {

    .container {
        width: min(100% - 30px, 700px);
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }

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

    .bottom-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }


 

}


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

@media (max-width: 600px) {

    .container {
        width: calc(100% - 24px);
    }


    /* Navigation */

    .top-navigation {
        min-height: 48px;
    }

    .nav-container {
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navigation-list {
        display: none;
    }


    /* Header */

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

    .header-left {
        width: auto;
    }

    .header-left .header-link {
        display: none;
    }

    .header-right {
        width: auto;
    }

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

    .search-button span:last-child {
        display: none;
    }


    /* Featured */

    .featured-section {
        padding: 25px 0 35px;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-content h1 {
        font-size: 30px;
    }

    .featured-content p {
        display: none;
    }

    .featured-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-small {
        grid-template-columns: 120px 1fr;
    }

    .featured-small h2 {
        font-size: 18px;
    }


    /* Main */

    .main-section {
        padding: 35px 0;
    }

    .section-header h2 {
        font-size: 23px;
    }


    /* Latest */

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

        gap: 35px;
    }

    .post-card img {
        aspect-ratio: 16 / 10;
    }

    .post-card h3 {
        font-size: 21px;
    }


    /* 2 × 2 becomes 1 column */

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

        gap: 35px;
    }

    .large-post-card h3 {
        font-size: 23px;
    }


    /* 1 × 4 becomes 1 column */

    .bottom-posts-grid {
        grid-template-columns: 1fr;
    }

    .blogs-grid {
      grid-template-columns: 1fr;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

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

    .featured-content h1 {
        font-size: 26px;
    }

    .featured-small {
        grid-template-columns: 100px 1fr;
    }

}

/* =========================================
   SINGLE ARTICLE PAGE
========================================= */

.article-page {
    padding: 70px 0;
}


.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1000px) 250px;
    gap: 60px;
    align-items: start;
}


/* =========================================
   ARTICLE
========================================= */

.single-post {
    min-width: 0;
}


.article-category {
    margin-bottom: 18px;

    color: #b40000;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.article-title {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.05;

    font-weight: 700;

    color: #111;
}


.article-meta-row {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 20px;

    margin-bottom: 35px;

    color: #666;

    font-size: 0.85rem;
}


.article-meta-row span:not(:last-child)::after {
    content: "•";

    margin-left: 20px;

    color: #aaa;
}


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

.article-featured-image {
    margin: 0 0 40px;
}


.article-featured-image img {
    display: block;

    width: 100%;

    height: auto;
}


.article-featured-image figcaption {
    margin-top: 8px;

    color: #777;

    font-size: 0.78rem;

    line-height: 1.5;
}


/* =========================================
   ARTICLE TEXT
========================================= */

.article-content {
    

    color: #222;

    font-family: Roboto, sans-serif;

    font-size: 1.15rem;

    line-height: 1.4;
}


.article-content p {
    margin: 0 0 25px;
}


.article-content .article-lead {
    font-size: 1.34em;
    font-family: Roboto, sans-serif;

    line-height: 1.4;

    font-weight: 400;
}


.article-content h2 {
    margin: 45px 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.8rem;

    line-height: 1.2;

    color: #111;
}


.article-content blockquote {
    margin: 40px 0;

    padding: 20px 25px;

    border-left: 4px solid #b40000;

    background: #f5f5f5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.25rem;

    line-height: 1.6;

    color: #333;
}


/* =========================================
   ARTICLE SIDEBAR
========================================= */

.article-sidebar {
    position: sticky;

    top: 110px;

    align-self: start;
}


.article-sidebar .sidebar-block {
    margin-bottom: 35px;
}


.article-sidebar .sidebar-title {
    margin: 0 0 20px;

    padding-bottom: 10px;

    border-bottom: 2px solid #111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.25rem;
}


.article-sidebar-post {
    margin-bottom: 25px;
}


.article-sidebar-post img {
    display: block;

    width: 100%;

    height: auto;

    margin-bottom: 10px;
}


.article-sidebar-post .article-time {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.05em;
}


.article-sidebar-post h4 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1rem;

    line-height: 1.35;
}


.article-sidebar-post h4:hover {
    color: #b40000;
}


/* =========================================
   SIDEBAR AD
========================================= */

.article-sidebar .sidebar-ad {
    margin-top: 30px;
}


.article-sidebar .sidebar-ad img {
    display: block;

    width: 100%;

    height: auto;
}


/* =========================================
   FROM OUR PARTNERS
========================================= */

.partners-section {
    margin-top: 65px;

    padding-top: 30px;

    border-top: 1px solid #ddd;
}


.partners-grid {
    display: grid;

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

    gap: 20px;
}


.partner-widget {
    overflow: hidden;
}


.partner-widget img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}


/* =========================================
   RECOMMENDED
========================================= */

.recommended-section {
    margin-top: 65px;

    padding-top: 30px;

    border-top: 1px solid #ddd;
}


.recommended-grid {
    display: grid;

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

    gap: 30px 20px;
}


.recommended-card img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    margin-bottom: 12px;
}


.recommended-card h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.05rem;

    line-height: 1.35;
}


.recommended-card h3:hover {
    color: #b40000;
}


/* =========================================
   LINKS
========================================= */

.article-page a {
    text-decoration: none;
}


.article-page h3,
.article-page h4 {
    transition: color 0.2s ease;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .article-layout {
        grid-template-columns: minmax(0, 1fr) 240px;

        gap: 35px;
    }

}


@media (max-width: 850px) {

    .article-layout {
        grid-template-columns: 1fr;
    }


    .article-sidebar {
        position: static;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;
    }


    .article-sidebar .sidebar-block {
        margin-bottom: 0;
    }


    .article-sidebar .sidebar-ad {
        margin-top: 0;
    }


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


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

}


@media (max-width: 600px) {

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


    .article-title {
        font-size: 2.5rem;
    }


    .article-meta-row {
        gap: 8px 12px;
    }


    .article-meta-row span:not(:last-child)::after {
        margin-left: 12px;
    }


    .article-content {
        font-size: 1rem;

        line-height: 1.75;
    }


    .article-content .article-lead {
        font-size: 1.1rem;
    }


    .article-sidebar {
        display: block;
    }


    .partners-grid {
        grid-template-columns: 1fr;
    }


    .recommended-grid {
        grid-template-columns: 1fr;
    }

}

/* WordPress theme additions */
.wp-post-image { width:100%; height:auto; }
.featured-main .featured-content h1 a, .post-card h3 a, .large-post-card h3 a, .small-post-card h3 a, .blog-card h3 a, .featured-small h2 a, .right-article h4 a { text-decoration:none; }
.special-section { margin-bottom:60px; }
.special-section .section-header { margin-bottom:25px; }
.special-grid-2x2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:30px 20px; }
.special-grid-4 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:25px 20px; }
.load-more-wrap { text-align:center; margin-top:30px; }
.load-more-button { border:2px solid #171717; background:#fff; padding:11px 25px; font-size:12px; font-weight:800; text-transform:uppercase; cursor:pointer; }
.load-more-button:hover { background:#b40000; border-color:#b40000; color:#fff; }
.load-more-button[disabled] { opacity:.5; cursor:default; }
.category-page { padding:50px 0 20px; }
.category-page .category-heading { border-bottom:3px solid #171717; padding-bottom:12px; margin-bottom:30px; }
.category-page .category-heading h1 { font:700 32px/1 Georgia,"Times New Roman",serif; }
.category-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:30px 20px; }
.search-overlay { position:fixed; inset:0; background:rgba(255,255,255,.98); z-index:2000; display:none; align-items:center; justify-content:center; padding:30px; }
.search-overlay.is-open { display:flex; }
.search-overlay form { width:min(700px,100%); display:flex; border-bottom:3px solid #171717; }
.search-overlay input { flex:1; border:0; outline:0; font:32px Georgia,"Times New Roman",serif; padding:12px 0; }
.search-overlay button { border:0; background:none; font-size:25px; cursor:pointer; }
.search-close { position:absolute; top:25px; right:30px; border:0; background:none; font-size:32px; cursor:pointer; }
.site-footer .footer-logo img { width:auto; max-width:220px; max-height:70px; object-fit:contain; }
.footer-social a { display:inline-flex; align-items:center; justify-content:center; }
.mobile-nav-open .navigation-list { display:flex; }
.category-pagination { margin-top:35px; }

@media (max-width:850px) {
 .category-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
 .special-grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:600px) {
 .category-grid,.special-grid-2x2,.special-grid-4 { grid-template-columns:1fr; }
 .search-overlay input { font-size:24px; }
}

/* =========================================
   WORDPRESS / ADSENSE HARDENING
========================================= */

.site-footer {
    position: relative;
    z-index: 10;
    clear: both;
    isolation: isolate;
    overflow: visible;
    display: block;
    width: 100%;
}

.site-footer::after {
    content: "";
    display: table;
    clear: both;
}

main {
    position: relative;
    z-index: 1;
    width: 100%;
}

.adsbygoogle,
ins.adsbygoogle,
[data-ad-status] {
    max-width: 100%;
}

ins.adsbygoogle {
    overflow: hidden;
}

.post-card-image,
.featured-main > a:first-child,
.featured-small > a:first-child,
.blog-image,
.article-featured-image {
    display: block;
    overflow: hidden;
}

.post-card-image img,
.featured-main > a:first-child img,
.featured-small > a:first-child img,
.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wp-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eeeeee;
    position: relative;
}

.wp-placeholder::after {
    content: "Turizam.org";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font: 700 14px/1 Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.post-image-caption,
.article-featured-image figcaption {
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

.post-image-caption {
    margin-top: 8px;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.article-content .wp-caption {
    max-width: 100%;
    margin: 25px auto;
}

.article-content .wp-caption-text {
    margin-top: 7px;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

.article-content figure {
    max-width: 100%;
}

/* =========================================
   WORDPRESS DROPDOWN NAVIGATION
========================================= */

.top-navigation {
    position: relative;
    z-index: 1001;
}

.navigation-list,
.navigation-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-list > li {
    position: relative;
}

.navigation-list > li > a {
    display: block;
    padding: 16px 0;
}

.navigation-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 220px;
    padding: 10px 0;
    background: #b40000;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 1005;
}

.navigation-list .sub-menu li {
    position: relative;
    display: block;
}

.navigation-list .sub-menu a {
    display: block;
    padding: 11px 18px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
}

.navigation-list .menu-item-has-children:hover > .sub-menu,
.navigation-list .menu-item-has-children:focus-within > .sub-menu,
.navigation-list .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.navigation-list .sub-menu .sub-menu {
    top: -10px;
    left: 100%;
    transform: translate(8px, 0);
}

.navigation-list .sub-menu .menu-item-has-children:hover > .sub-menu,
.navigation-list .sub-menu .menu-item-has-children:focus-within > .sub-menu,
.navigation-list .sub-menu .menu-item-has-children.is-open > .sub-menu {
    transform: translate(0, 0);
}

.navigation-list .menu-item-has-children > a::after {
    content: " ▾";
    font-size: 10px;
}

@media (max-width: 850px) {
    .nav-container {
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 8px 10px;
    }

    .navigation-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #b40000;
        box-shadow: 0 8px 18px rgba(0,0,0,.18);
    }

    .mobile-nav-open .navigation-list {
        display: flex;
    }

    .navigation-list > li > a {
        padding: 13px 20px;
    }

    .navigation-list .sub-menu,
    .navigation-list .sub-menu .sub-menu {
        position: static;
        width: 100%;
        min-width: 0;
        transform: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .navigation-list .menu-item-has-children.is-open > .sub-menu {
        display: block;
        transform: none;
    }

    .navigation-list .sub-menu a {
        padding: 10px 35px;
    }

    .navigation-list .sub-menu .sub-menu a {
        padding-left: 50px;
    }
}

/* =========================================
   FOOTER VISIBILITY / RESPONSIVE
========================================= */

.footer-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .footer-container > :nth-child(4) {
        display: block;
    }
}

@media (max-width: 850px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
