:root {
    --navy: #0F172A;
    --gold: #B59410;
    --offwhite: #F8F7F3;
    --charcoal: #334155;
    --white: #ffffff;
    --border: rgba(15, 23, 42, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--offwhite);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 0;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.grid {
    display: grid;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .flex-mobile-column {
        flex-direction: column;
    }
}

/* Typography Helpers */
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

.font-medium {
    font-weight: 500;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--charcoal);
    opacity: 0.7;
}

.text-gold {
    color: var(--gold);
}

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

.tracking-widest {
    letter-spacing: 0.2em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

/* Components */

/* Header */
.site-header {
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 888;
}

.site-header.header-sticky .header-top {
    height: 0;
}

.site-header.header-sticky .header-inner {
    height: 50px;
}

.site-header.header-sticky .logo-img {
    height: 40px;
}

.mobile-menu-overlay {
    display: none;
}

.socials {
    display: flex;
    gap: .5rem;
}

.socials svg {
    width: 20px;
}

.topads-after-menu {
    margin: 1rem 0;
}

.act-tabs {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1rem;
    overflow: hidden;
    position: relative;
    flex-wrap: wrap;
}

.act-tabs .btn-cat.active {
    background: var(--gold);
    color: white;
}

.act-tabs .btn-cat {
    color: gray;
    font-weight: normal;
    white-space: nowrap;
    font-size: 0.7rem;
    letter-spacing: -0.1px;
    transition: 0.3s;
}

.act-tabs .btn-cat:hover {
    background: #ebebeb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    transition: 0.3s;
}

.header-top {
    background: var(--offwhite);
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
    overflow: hidden;
    transition: 0.3s;
    height: 55px;
}

.archive-header,
h1.entry-title {
    color: var(--navy);
    margin: 1rem 0;
    padding: 1rem 0;
}

.archive-header:after,
h1.entry-title:after {
    content: '';
    display: block;
    width: 10%;
    background: var(--gold);
    height: 4px;
    margin-top: 1rem;
}

.archive-header:has(.act-tabs):after {
    display: none;
}

.search-form {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

.content a {
    color: var(--gold);
}

.search-input {
    border: none;
    background: transparent;
    font-size: 0.75rem;
    padding: 0.25rem;
    width: 100%;
    outline: none;
}

.search-btn {
    color: var(--charcoal);
    opacity: 0.5;
}

.search-btn:hover {
    opacity: 1;
    color: var(--gold);
}

.single-social {
    color: var(--charcoal);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

.single-social:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-contacts a {
    color: var(--navy);
    font-weight: 500;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: 0.3s;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link-special a {
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.nav-link-special a:hover {
    background: var(--gold);
    color: var(--white);
}

/*Fixed Menu*/
.fixed-menubtn {
    width: 30px;
}

.fixed-menu-container .fixed-menubtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.fixed-menubtn svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.fixed-menu-container {
    position: fixed;
    width: 55%;
    height: 100%;
    top: 0;
    right: 0;
    background: white;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 0 20px 0 #00000059;
    padding: 2rem;
    overflow: auto;
}

.fixed-menu-container.hidden {
    right: -100%;
}

.razdely-fixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.razdely-fixed ul {
    list-style: none;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: var(--navy);
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.burger-toggle svg {
    width: 100%;
    height: 100%;
}

.burger-toggle {
    width: 40px;
    display: none;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero-main {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-main:hover img,
.hero-side-item:hover img {
    transform: scale(1.1);
}


.hero-tag {
    display: inline-block;
    background: var(--gold);
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: white;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-side-item {
    position: relative;
    min-height: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Article Cards */
.article-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
    height: 100%;
    position: relative;
}

.article-card-horizontal {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    position: relative;
}

.article-card-horizontal:hover img {
    transform: scale(1.1)
}

.entry-item {
    position: relative;
}

.article-card-horizontal:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

@media (max-width: 640px) {
    .article-card-horizontal {
        flex-direction: column;
        gap: 1rem;
    }
}

.article-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1000 / 620;
    background: #eee;
    flex-shrink: 0;
}

.article-card-horizontal .article-img-wrapper {
    width: 100%;
    max-width: 250px;
}

@media (max-width: 640px) {
    .article-card-horizontal .article-img-wrapper {
        max-width: none;
    }
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-card-horizontal .article-card-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-card-excerpt {
    margin-bottom: 1rem;
}

.sidebar-on.sh-vertical .article-card-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}

.no-sidebar.sh-vertical .article-card-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


.readmore-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: 0.3s;
}

.article-card-horizontal .article-card-footer {
    border-top: none;
    padding-top: 0;
}

.article-card-footer svg {
    width: 18px;
    color: var(--gold);
}

.article-card-footer time,
.article-card-footer .views {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.btn-outline {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* Layout Splits */
.layout-split {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .layout-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.sponsor-block {
    background: var(--navy);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsor-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .sponsor-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.sponsor-divider {
    height: 1px;
    width: 100px;
    background: var(--gold);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .sponsor-divider {
        display: none;
    }
}

.main-article-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid #ebebeb;
}

.main-article-item.reverse {
    direction: rtl;
}

.main-article-item.reverse>* {
    direction: ltr;
}

@media (max-width: 768px) {
    .main-article-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-article-item.reverse {
        direction: ltr;
    }
}

.main-article-img-wrapper {
    aspect-ratio: 1000 / 620;
    overflow: hidden;
    border-radius: 2px;
}

.main-article-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.main-article-title:hover {
    color: var(--gold);
}

.main-article-excerpt {
    font-size: 1.125rem;
    color: var(--charcoal);
    opacity: 0.8;
    font-weight: 300;
}

/* Category Carousel Styles */
.category-carousel-section {
    padding: 3rem 0;
    /* background-color: var(--white); */
    border-bottom: 1px solid var(--border);
}

.category-slider {
    overflow: hidden;
}

.category-slider .slick-list,
.category-slider .slick-slide {
    margin: 0 -15px;
}


.category-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.category-card-wrapper {
    padding: 0;
}

.category-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
}

.category-image-container {
    position: relative;
    aspect-ratio: 1200/620;
    overflow: hidden;
    border-radius: 8px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    transition: var(--transition);
}

.category-title-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
}


.gallery-section {
    width: 100%;
    overflow: hidden;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.gallery-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.gallery-line {
    height: 4px;
    width: 100px;
    background: var(--gold);
}

.gallery-controls {
    display: flex;
    gap: 1rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-btn:hover {
    background: var(--white);
    color: var(--navy);
}

.gallery-viewport {
    position: relative;
    padding: 2rem 0;
}

.slick-list {
    overflow: visible !important;
}

.slick-slide {
    transition: all 0.5s ease;
    transform: scale(0.9);
    padding: 0 10px;
}

.slick-arrow {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    margin: auto;
    color: transparent;
    background-size: 40px;
    background-repeat: no-repeat;
    background-position-y: center;
    opacity: 0.5;
    transition: 0.3s;
}

.slick-arrow:hover {
    opacity: 1;
}

.slick-prev {
    left: 0;
    background-position-x: left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-left'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M15 6l-6 6l6 6' /%3E%3C/svg%3E");
}

.slick-next {
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-right'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M9 6l6 6l-6 6' /%3E%3C/svg%3E");
    background-position-x: right;
}

.slick-center {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-slide-inner img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-nav-btn:hover {
    background: var(--white);
    color: var(--navy);
}

.gallery-nav-btn.prev {
    left: -25px;
}

.gallery-nav-btn.next {
    right: -25px;
}

@media (max-width: 1024px) {
    .gallery-nav-btn.prev {
        left: 10px;
    }

    .gallery-nav-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-nav-btn {
        display: none;
    }
}

.gallery-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
}

.gallery-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    margin: 0;
    color: white
}

.gallery-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    gap: 0.5rem;
}

.gallery-dots li {
    margin: 0;
    padding: 0;
}

.gallery-dot {
    height: 6px;
    width: 12px;
    border-radius: 3px;
    background: var(--navy);
    opacity: 0.2;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-dots li.slick-active .gallery-dot {
    width: 40px;
    background: var(--gold);
    opacity: 1;
}

.newsletter-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form .wpforms-submit-container button[type="submit"] {
    padding: 19px;
    margin: 0;
}

.text-before-form {
    text-align: center;
    opacity: 0.5;
    width: 50%;
    margin: 2rem auto;
}

.wpforms-error {
    color: #d35656;
    font-size: small;
    left: 0;
    bottom: 0;
}

.wpforms-field-label {
    font-size: small;
    color: gray;
}

span.wpforms-required-label {
    color: #cc6962;
}

.wpforms-field {
    display: flex;
    flex-direction: column;
}

.wpforms-field input {
    width: 100%;
    padding: .5rem;
    border: 1px solid var(--gold);
}

.wpforms-field-payment-checkbox ul {
    list-style: none;
    padding: 0;
}

.wpforms-field-payment-checkbox ul li {
    display: flex;
}

.wpforms-field input[type="checkbox"] {
    width: 15px;
    margin-right: 1rem;
}

.wpforms-submit-container button[type="submit"] {
    background: var(--gold);
    padding: 1rem 2rem;
    margin: 1rem 0;
    color: white;
}

.custom-pagination {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.navigation.pagination {
    justify-content: center;
}

.custom-pagination .nav-links {
    display: flex;
    gap: 1rem;
}

.custom-pagination .page-numbers.current,
a.next.page-numbers,
.page-numbers:hover {
    background: var(--gold);
    color: white;
}

.custom-pagination .page-numbers {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.custom-pagination:has(.nav-links):before,
.custom-pagination:has(.nav-links):after {
    content: '';
    width: 100%;
    display: block;
    background: gray;
    height: 1px;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .newsletter-form form {
        flex-direction: column;
    }
}

.newsletter-input input {
    flex-grow: 1;
    padding: 1rem;
    border: 1px solid var(--navy);
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}

.newsletter-input input:focus {
    outline: none;
    border-color: var(--gold);
}

/*WPFORMS*/
.wpforms-label-hide {
    display: none;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--navy);
    max-width: 900px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.75rem;
    }
}

.quote-author {
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
}

.editorial-block-img-wrapper {
    aspect-ratio: 1000 / 620;
    overflow: hidden;
    background: #eee;
}

.editorial-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.editorial-block-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.25rem;
    width: fit-content;
}

.editorial-block-link:hover {
    color: var(--gold);
}

.sidebar-widget {
    border-top: 2px solid var(--navy);
    padding-top: 1.5rem;
}

.widget-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: var(--gold);
    line-height: 1;
}

h4.footer-title {}

.footer-title a:hover {
    opacity: 0.5;
}

.footer-title+.footer-title {
    margin-top: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    opacity: 0.6;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.podpis a {
    color: var(--gold);
}

.footer-link:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

/* Ad Banners */
.bannery-wrap {
    gap: 1rem 0;
    display: flex;
    flex-direction: column;
}

.banner-slot .side-banner {
    max-width: 290px;
    max-height: 290px;
    overflow: auto;
}

.side-banner img {
    width: 100%;
}

.sposor-banner-mob-top {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.w-full {
    width: 100%;
}

.flex-grow {
    flex-grow: 1;
}

.mb-4 {
    margin-bottom: 1rem;
}

.img-zoom {
    transition: transform 0.7s ease-out;
}

.object-cover {
    object-fit: cover;
}

.w-fit {
    width: fit-content;
}

.inset-0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-25 {
    opacity: 0.25;
}

/*SINGLE*/
.sidebar {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.single .entry-header.single-header {
    position: relative;
    padding: 2rem;
    height: auto;
    aspect-ratio: 1000 / 620;
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: end;
}

.single .featured-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single .featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single .entry-title {
    position: relative;
    color: white;
    margin-bottom: 0;
}

.single .entry-header .entry-date {
    position: relative;
    color: #c1c1c1;
    font-size: small;
}

.single .sidebar {
    margin-top: 0;
}

.entry-header .featured-img-wrap .overlay {
    position: absolute;
    background: linear-gradient(to top, var(--navy), transparent);
    width: 100%;
    height: 100%;
    top: 0;
}

.entry-header .entry-date svg {
    width: 20px;
}

.entry-meta-stripe.meta-bottom {
    font-size: small;
    display: flex;
    width: 100%;
    color: gray;
    background: white;
    padding: 1rem;
    gap: 1rem;
    margin-bottom: 1rem;
}

.entry-meta-stripe.meta-bottom .views {
    display: flex;
    gap: 3px;
}

.entry-meta-stripe.meta-bottom svg,
.dashicons-chart-bar:before {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.shareto svg {
    width: 20px;
    height: 20px;
}

.shareto .share-to {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.shareto .share-to a {
    color: white;
    background: var(--navy);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.the-content a {
    color: var(--gold);
}

.the-content p {
    text-align: left !important;
}

.article-category.english-art {
    background: #cf2e2e;
    color: white;
    width: fit-content;
    padding: 0 5%;
}

/*ADMIN STYLES*/
html :where(.wp-block) {
    max-width: none;
}

/*MOBILE STYLES*/
@media (max-width: 850px) {
    .site-header {
        padding: 5px;
    }

    .mobile-menu-overlay {
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100vh;
        top: -200%;
        background: white;
        transition: 0.5s;
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        overflow: scroll;
    }

    .mobile-menu-overlay.open {
        display: flex;
        z-index: 9999;
        top: 0;
    }

    .logo-img {
        height: 70px;
    }

    .burger-toggle {
        width: 40px;
        display: block;
    }

    .fixed-menubtn {
        display: none;
    }

    .sposor-banner-mob-top {
        display: block;
    }

    .phone-mail {
        color: gray;
        display: flex;
        gap: 1rem;
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 1rem;
    }

    .hero-main {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    p.hero-excerpt {
        font-size: 1rem;
    }

    .hero-side-item {
        padding: 1rem;
    }

    .container-fluid>.container {
        padding: 0;
    }

    .mobile-small-banner img {
        width: 100%;
    }

    .navbar-nav {
        row-gap: 0;
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 1rem;
        column-gap: 2rem;
        justify-content: space-around;
    }

    .mobile-menu-overlay .burger-toggle {
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .search-form {
        width: 85%;
    }

    .main-article-title {
        font-size: 1.5rem;
    }

    .main-article-content {
        gap: 0;
    }

    .entry-meta-stripe.meta-bottom {
        flex-direction: column;
    }

    .text-before-form {
        width: 100%;
    }

    .newsletter-form .wpforms-submit-container button[type="submit"] {
        width: 100%;
    }

    .blog .article-card-footer,
    .archive .article-card-footer {
        align-items: self-start;
        order: 3;
    }

    .blog .article-category,
    .archive .article-category {
        order: 1;
    }

    .blog .article-card-title,
    .archive .article-card-title {
        order: 2;
    }

    .blog .article-card-horizontal .article-card-excerpt,
    .archive .article-card-horizontal .article-card-excerpt {
        order: 4;
    }

    .blog .article-card-horizontal,
    .archive .article-card-horizontal,
    .blog .article-card-horizontal:last-child,
    .archive .article-card-horizontal:last-child {
        border-bottom: 1px solid #adadad;
        padding-bottom: 0;
        margin-bottom: 1rem;
    }

    .blog .article-card-footer>a>span,
    .archive .article-card-footer>a>span {
        display: none;
    }

    .text-xs {
        font-size: 0.6rem;
    }

    .act-tabs {
        flex-wrap: wrap;
        mask-image: none;
        gap: 3px;
    }

    .act-tabs .btn-cat {
        padding: 3px 10px;
        border: 1px solid #ebebeb;
    }

    .banner-slot {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-slot .side-banner {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        padding: 25px;
    }

    .bannery-wrap {
        margin: 1rem 0;
    }

    .sposor-banner-mob-top .mobile-banner,
    .topads-after-menu .mobile-small-banner {
        display: none;
    }

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

    .section-padding {
        padding: 1rem 0;
    }

    .layout-split {
        gap: 1rem;
    }
}