/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Colors */
    --primary-blue: #1a365d;
    --primary-red: #69a341;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --dark-raspberry: #69043b;
    --blackberry: #59023b;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --container-max: 1280px;
    --header-height: 140px;
}

/* Add to your child theme CSS file (e.g., css/style.css) */
@font-face {
    font-family: "Optimus Princeps";
    src: url('../fonts/OptimusPrinceps/OptimusPrinceps.woff2') format('woff2'),
         url('../fonts/OptimusPrinceps/OptimusPrinceps.woff') format('woff'),
         url('../fonts/OptimusPrinceps/OptimusPrinceps.svg') format('svg'),
         url('../fonts/OptimusPrinceps/OptimusPrinceps.eot') format('embedded-opentype'),
         url('../fonts/OptimusPrinceps/OptimusPrinceps.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


ul{
    padding-left: 18px;
    list-style: disc;
}
.pad-15-lr{
    padding: 0 15px;
}
header.site-header{
    margin-bottom: 20px;
    background-color: var(--dark-raspberry);
    color: var(--white);
    color: var(--white);
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.header-container, .mobile-container, .footer-container {
    padding: 0;
    max-width: 1310px;
    margin: 0 auto;
    position: relative;
}

/* Top Bar */
.top-bar {
    padding: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.date-weather {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
}

.current-date {
    font-weight: 400;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    top: -1px;
}

.weather-icon {
    width: 18px;
    height: 18px;
    color: #fbbf24;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--medium-gray);
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.header-middle{
    padding:10px 0;
}
/* Logo and Branding */
.brand {
    text-align: center;
}
.brand a img{
    text-align: center;
    max-width: 420px;
}
.brand a img:hover, .header-globe img{
   transform: scale(1);
}
.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.header-globe{
    max-width: 66px;
}
.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin:0;
}

.main-nav-header{
    background-color: var(--blackberry);
    color: var(--white);
}

/* Navigation */
.main-nav {
    justify-self: center;
}

ul.nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}
.top-nav-links {
    margin: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.dark-mode{
    display: flex;
    justify-content: center;
    margin-top: 8px;
    margin-left: 20px;

}
.nav-link, .top-nav-links a{
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    color: var(--white);
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 8px;
    white-space: nowrap;
}
.top-nav-links a{
    padding: 5px 8px;
}
.nav-link a {
    position: relative;
    display: inline-block; /* important for ::after sizing */
    transition: all 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
}
.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #59023b;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    z-index: 99;
}
.sub-arrow{
    align-items: center;
    display: flex
    line-height: 1;
    font-size: 9px;
    margin-block-end: -10px;
    margin-block-start: -10px;
    padding: 10px;
    padding-inline-end: 0;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    border-bottom: 1px solid #CFCFCF;
    transition: all 0.2s ease;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: #B2B2B2;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.search-btn:hover,
.menu-toggle:hover {
    background-color: var(--light-gray);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* toggle-icon Menu */

.toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.toggle-icon span {
    display: block;
    height: 2px;
    background: #fff !important;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.offcanvas-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.offcanvas-site-logo{
    text-align: center;
    padding: 0 10%;
}
.offcanvas-site-logo-title a{
    font-family: "Optimus Princeps", sans-serif;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 300;
    font-style: normal;
    color: var(--light-gray);
}
.tag-line a{
    font-family: "PT Serif", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #E0E0E0;
    text-transform: capitalize;
}
.static-navigation .heading-title{
    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 10px 0 20px 0;
}
.parent-icon-list a, .sub-icon-list a{
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    margin: 0 0 10px 0;
}
.sub-icon-list{
    margin: 0 0 0 45px;
}
.parent-icon-list ul, .sub-icon-list ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.static-navigation i{
    font-size: 19px;
    width: 24px;
    margin-right: 15px;
    display: inline-block;
}
/* Hide nav-close and nav-footer on desktop */
.nav-close {
    display: none;
}

.nav-footer {
    display: none;
}

/* Responsive Design */

    .header-content {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-close {
        display: flex;
    }

    .nav-footer {
        display: block;
    }

    /* Overlay for off-canvas menu */
    .off-canvas-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999998;
        cursor: pointer;
    }

    .off-canvas-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .off-canvas-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background-color: #69043b;
        box-shadow: var(--shadow-lg);
        padding: 60px 20px 40px;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 999999;
        display: flex;
        flex-direction: column;
    }

    .off-canvas-menu  hr{
        width: 82%;
        margin: 20px auto !important;
    }


    .off-canvas-menu.active {
        left: 0;
    }
    .dark-mode-offcanvas{
        position: absolute;
        top: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: start;
        justify-content: start;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--dark-gray);
        transition: all 0.2s ease; 
    }
    .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--dark-gray);
        transition: all 0.2s ease;
    }

    .nav-close:hover {
        background-color: var(--light-gray);
        border-radius: 50%;
    }

    .nav-close svg {
        width: 24px;
        height: 24px;
        color: var(--white);
    }

    .nav-list {
        flex-direction: row;
        gap: 4px;
        flex: 1;
    }

    .nav-footer {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--light-gray);
        text-align: center;
    }
    .nav-footer h2, .newsletter-form h2{
        font-family: "Roboto", Sans-serif;
        color: var(--white);
        font-size: 19px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 10px;
        text-align: center;
    }
    .newsletter-form h2{
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .nav-app a{
        display: block;
    }
    .nav-app a img{
        max-width: 70%;
        transform: scale(1);
        margin-bottom: 15px;
    }
    .nav-social h2{
        font-family: "Roboto", Sans-serif;
        color: var(--white);
        font-size: 19px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .nav-social-links{
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .nav-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--light-gray);
        border-radius: 50%;
        color: var(--white);
        font-size: 22px;
        transition: all 0.3s ease;
    }

    .nav-social svg {
        width: 30px;
        height: 30px;
        color: var(--white);
    }

    .nav-copyright {
        font-family: "Roboto", Sans-serif;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        letter-spacing: 0.3px;
        color: #CCCCCC;
    }

    .nav-info {
        font-size: 0.75rem;
        color: var(--medium-gray);
        margin: 0;
    }

    .nav-link {
        padding: 4px 6px;
        font-size: 14px;
        justify-content: space-between;
        color: var(--light-gray);
    }

    .nav-item.expanded .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        font-size: 14px;
    }
    .menu-toggle i{
        font-size: 22px;
        margin-left: 10px;
    }


/* Mobile-specific visibility classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Tablet-specific Media Queries */
@media (min-width: 641px) and (max-width: 1024px) {
    /* Show mobile top bar on tablets too */
    .desktop-only, .main-nav-header, .header-globe {
        display: none;
    }
    .header-middle {
        padding: 10px 0 15px;
    }
    .mobile-bottom-bar{
        border-top: 1px solid #9E9E9E7A;
    }
    .mobile-only {
        display: block;
        padding: 0 15px;
    }
    
    /* Adjust header for tablets */
    .main-header {
        padding: 16px 0;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .tagline {
        display: block;
        font-size: 0.75rem;
    }
    
    /* Fix button alignment */
    .header-actions {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }
    .brand a img {
        text-align: center;
        max-width: 256px;
    }
    .search-btn,
    .menu-toggle {
        width: 48px;
        height: 48px;
    }
    
    /* Center newsletter/contact text */
    .newsletter-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Top Bar Styles */
.mobile-top-bar {
    background-color: var(--light-gray);
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    font-size: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 98;
}

.mobile-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-date {
    font-family: "PT Serif", sans-serif;
    font-weight: 500;
    color: var(--white);
}

.mobile-weather {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
}

.mobile-weather-emoji {
    font-size: 1rem;
}

.mobile-weather-text {
    font-weight: 500;
}

@media (max-width: 640px) {
    .desktop-only, .main-nav-header, .header-globe {
        display: none;
    }
    .header-middle {
        padding: 10px 0 15px;
    }
    .mobile-bottom-bar{
        border-top: 1px solid #9E9E9E7A;
    }
    .mobile-only {
        display: block;
        padding: 0 15px;
    }
    .menu-toggle i {
        font-size: 24px;
         margin-left: 0px; 
    }
    header.site-header {
        position: relative;
        margin-bottom: 0px;
    }

    .main-header {
        padding: 12px 0;
    }
    .brand a img {
        text-align: center;
        max-width: 256px;
    }
    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .tagline {
        display: block;
        font-size: 0.5rem;
        margin-top: 1px;
        line-height: 1;
        white-space: nowrap;
    }

    .search-btn {
        display: flex;
        margin-right: 0;
        padding:0;
    }

    .header-actions {
        display: flex;
        gap: 0px;
        align-items: center;
        justify-content: space-between;
    }

    /* Hide sticky header on mobile */
    .sticky-header.desktop-only {
        display: none;
    }
}

/* Sticky Header Styles (Desktop Only) */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 53px;
    height: auto;
    background-color: var(--dark-raspberry);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;

}

.sticky-header.show {
    transform: translateY(0);
}

.sticky-header .header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Sticky Date */
.sticky-date {
    text-align: center;
    width: 36%;
}

.sticky-current-date {
    font-family: "PT Serif", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
}

/* Sticky Brand */
.sticky-brand {
    text-align: left;
    width:35%;
    margin-left: 15px;
}
.sticky-brand a {
    font-family: "Optimus Princeps", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #FBFBFB;
}

.sticky-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.sticky-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin: 0 0 2px 0;
    letter-spacing: -0.02em;
}

.sticky-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2px 0;
    line-height: 1;
}

/* Sticky Actions */
.sticky-actions {
    width: 17%;
    text-align: center;
}

/* Sticky Menu Toggle */
.sticky-header .offcanvas-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-header .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.2s ease;
    color: var(--white);
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.sticky-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 22px;
    transition: all 0.2s ease;
    color: var(--white);
    text-decoration: none;
}

.sticky-search-btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.sticky-search-btn svg {
    width: 20px;
    height: 20px;
}

.sticky-header .dark-mode, .sticky-header .offcanvas-toggle{
    width: 6%;
    margin: 0 0 0 30px;
}

/* Hide sticky header on tablet and mobile */
@media (max-width: 1024px) {
    .sticky-header.desktop-only {
        display: none !important;
    }
    .mobile-sticky-brand img{
        width:190px;
    }
}

@media (max-width: 640px) {
    /* Ensure touch targets are at least 44px */
    .search-btn,
    .sticky-search-btn,
    .menu-toggle {
        width: 24px;
        height: 44px;
        padding: 0px;
    }
}


.qc-cmp-cleanslate{
    z-index: 999999999999!important;
}
#onesignal-popover-container, #onesignal-slidedown-container {
	z-index: 99999!important;
}
.sticky-nav {
    transform: translatey(-100px);
    -moz-transition: all .3s ease!important;
    -webkit-transition: all .3s ease!important;
    transition: all .3s ease!important;
}

.mobile-sticky-nav {
transform: translatey(-100px);
-moz-transition: all .3s ease!important;
-webkit-transition: all .3s ease!important;
transition: all .3s ease!important;
}

.widget{
    margin-bottom: 20px;
    font-style: normal;
}
.above_comment.aeon-news-widget,
.nyd-target, .aeon-news-widget, .third-col .widget.sidebar-ads{
    text-align: center;
}
.aeon-news-ads-widget{
	text-align: center;
}
.aeon-news-ads-adlabel{
    line-height: 1;
    margin-bottom: 4px;
    font-size: 10px;
    text-transform: uppercase;
    display: block;
}
.nyd-target iframe {
	position: initial !important;
}
.nyd-target .content-video {
	 position: relative;
	 padding-top: 0; 
     padding-bottom: 0;
	 height: auto;
	 overflow: hidden;
}

.informationsruta em, .serif blockquote em,  .serif blockquote p{
	font-family: 'Publico Text Web';
	font-style: italic;
}
.serif em {
  font-family: 'Publico Text Web';
  font-style: italic;
  font-weight: 400;
}
.serif strong em{
    font-weight: 700;
}
.nyd-inside-content-after-paragraph{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}
#qc-cmp2-container{
	z-index: 99999;
    position: relative;
}

/*-- BTC pay Btn --*/
.btcpay-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btcpay-form input{
    width:initial;
    padding:0;
}
.btcpay-form--inline {
    flex-direction: row;
}

.btcpay-form--block {
    flex-direction: column;
}

.btcpay-form--inline .submit {
    margin-left: 15px;
}

.btcpay-form--block select {
    margin-bottom: 10px;
}

.btcpay-form .btcpay-custom-container {
    text-align: center;
}

.btcpay-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btcpay-form .plus-minus {
    cursor: pointer;
    font-size: 25px;
    line-height: 25px;
    background: #DFE0E1;
    height: 30px;
    width: 45px;
    border: none;
    border-radius: 60px;
    margin: auto 5px;
    display: inline-flex;
    justify-content: center;
}

.btcpay-form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: currentColor;
    background: transparent;
    border: 1px solid transparent;
    display: block;
    padding: 1px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    cursor: pointer;
    text-align: center;
}

.btcpay-form select:hover {
    border-color: #ccc;
}

.btcpay-form option {
    color: #000;
    background: rgba(0, 0, 0, .1);
}

.btcpay-input-price {
    -moz-appearance: textfield;
    appearance: textfield;
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 25px;
    margin: auto;
    border-radius: 5px;
    line-height: 35px;
    background: #fff;
}

.btcpay-input-price::-webkit-outer-spin-button,
.btcpay-input-price::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btcpay-form input[type="image"]{
    border:none;
    padding:0;
}
.wp-dark-mode-active .ajax-load-more-wrap.infinite>.alm-btn-wrap .alm-load-more-btn.more {
    background-image: url(./img/alm-spinner-nyd-dark.gif) !important;
}
.ajax-load-more-wrap.infinite>.alm-btn-wrap .alm-load-more-btn.more {
    background-image: url(./img/alm-spinner-nyd-light.gif) !important;
}
.search-page{
	width:72%;
	float:left;
    padding: 50px 15px;
}
.search-search-form{
    display: flex;
}
.search-submit {
    /* width: 32px; */
    background: #69a341;
    color: #fff;
    border: 1px solid #69a341;
    border-radius: 0 5px 5px 0;
    padding: 10px;
    cursor: pointer;
    height: 100%;
}
.search-submit:focus{
	background: #69a341;
}
.spacer30{
    height: 30px;
}
.search-search-form input[type="search"]{
    margin:0 0 30px 0;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 95%;
    box-sizing: border-box;
}
.search-search-form input[type="search"]:focus{
    outline: none;
}

/* Footer Container */
.footer-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Main Footer */
.site-footer {
    background: #69043B;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Top Bar Section */
.footer-top-bar {
    background: #59023b;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.tips-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.tips-section h3,
.social-section h3 {
    font-family: "Sanomat", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.tips-section p {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.tips-section a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 700;
}

.tips-section a:hover {
    text-decoration: underline;
    color: #3A7BD5;
}
.social-section{
    display: flex;
    align-items: center;
    gap: 30px;
}
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Main Footer Content */
.footer-main {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-column h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1;
}

.footer-column p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 700;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.app-badges img {
    height: 48px;
    width: auto;
    border-radius: 4px;
    filter: brightness(1.1);
}

/* Contact Column */
.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #4A90E2;
    font-weight: 700;
}

/* Publisher Column */
.footer-publisher p {
    margin-bottom: 15px;
}

.footer-publisher strong {
    font-weight: 600;
    color: #ffffff;
}

/* Separator Line */
.footer-separator {
    background: linear-gradient(135deg, #7B2D8E 0%, #8B1538 50%, #6B1E3F 100%);
    padding: 0;
}

.separator-line {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Bottom Section */
.footer-bottom {
    padding: 40px 0 30px;
}

.footer-bottom-content {
    text-align: center;
    border-top: 1px solid #ccc;
}

.footer-brand {
    font-family: "Optimus Princeps", Sans-serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: var(--white);
    line-height: 1.2;
    margin: 30px 0;
}

.copyright, .legal-text {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 0;
}

.legal-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top-bar {
        padding: 25px 0;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-bottom {
        padding: 30px 0 25px;
    }
    
    .footer-brand {
        font-size: 36px;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column p {
        font-size: 13px;
    }
    
    .tips-section h3,
    .social-section h3 {
        font-size: 16px;
    }
    
    .tips-section p {
        font-size: 13px;
    }
}

/* Additional styling for exact match */
.footer-column p:last-child {
    margin-bottom: 0;
}

.footer-about p:nth-of-type(2) {
    margin-bottom: 20px;
}

.footer-about p:nth-of-type(3) {
    margin-bottom: 15px;
}

.footer-contact p:first-of-type {
    margin-bottom: 15px;
}

.footer-contact p:nth-of-type(2) {
    margin-bottom: 10px;
}

.footer-publisher p:first-of-type {
    margin-bottom: 10px;
}

.footer-publisher p:nth-of-type(2) {
    margin-bottom: 15px;
}
.wpforms-form button[type=submit]{
    background-color: #FF4086!important;
    border-color: #FF4086!important;
    width: 100%!important;
    border-radius: 10px!important;
    color: #fff!important;
}
.wpforms-form .wpforms-field{
    padding: 0 !important;
}

div.wpforms-container-full .wpforms-form input[type=email]{
    background: transparent!important;
    border-radius: 10px!important;
    border: 2px solid #C6C6C6!important;
}