/* ============= BASE STYLES ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.entry-summary {
    display: none;
}
.site-wrapper {
    overflow-x: hidden;
}

.entry-content {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.entry-content p {
    margin: 15px 0;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

 p {
    font-size: 100%;
}

/* ============= HEADER STYLES ============= */
.site-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 12px 0; /* unified header height */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* unified horizontal padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-width: 210px;
    max-height: 50px;
    height: auto;
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}
.site-branding {
    margin-top: 4px;
}
.mobile-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-controls button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    color: currentColor;
}

.menu-toggle {
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    margin: 5px;
    display: block;
    width: 25px;
    height: 3px;
    background: currentColor;
    transition: all 0.3s;
}

.menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-navigation {
    display: none;
}

.main-navigation.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 10px 0;
}

.menu a {
 /*   color: #333;*/
    display: block;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
}

.menu a:hover {
    color: #007bff;
    /* subtle underline animation */
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: currentColor;
    transition: width 0.25s ease;
}

.menu a:hover::after {
    width: 100%;
}

.sub-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.menu-item-has-children.open > .sub-menu {
    display: block;
}

.dropdown-icon {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown-icon i {
    font-size: 0.7em;
}

.menu a i, .footer-links a i, .wp-block-latest-posts__list a i {
    margin-right: 8px;
}

.menu-item-has-children.open > a .dropdown-icon {
    transform: rotate(180deg);
}

/* ============= LAYOUT ============= */
.site-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-area {
    display: contents;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.widget-area {
    width: 350px;
    flex-shrink: 0;
}

/* ============= ARTICLES ============= */
article, .post-card {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border-radius: 8px;
    box-shadow: 0 8px 9px rgb(0 0 0 / 14%);
    border: 1px solid rgb(47 47 47 / 37%);
    transition: all 0.3s;
    animation: fadeUp 500ms ease both;
}

article:hover, .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.single-post {
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 40px;
    animation: fadeUp 500ms ease both;
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}


.related-posts-box {
    margin: 20px 0;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.related-posts-box img {
    width: 150px;
    border-radius: 8px;
}

.facts-list {
    margin: 20px 0;
    padding-left: 20px;
}

.facts-list li {
    margin: 10px 0;
    line-height: 1.8;
}

.author-box {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #f3f6f9;
    border-radius: 8px;
    margin: 25px 0;
}

.author-avatar img {
    border-radius: 8px;
}


.author-description {
    color: #666;
    line-height: 1.7;
}

.comments-area {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-form textarea,
.comment-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.submit {
    background: #7e8389;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.submit:hover {
    background: #54575a;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;

}

.post-navigation a {
    color: #333;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Next/Prev Navigation Fix */
.post-navigation {
    flex-wrap: wrap;
    gap: 15px;
}

.nav-previous, .nav-next {
    flex: 1;
    min-width: 250px;
}

.post-navigation a {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: all 0.3s;
}

.nav-previous a {
    border-left-color: #dc3545;
}

.nav-next a {
    border-left-color: #28a745;
    text-align: right;
}

.nav-previous a:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(220,53,69,0.2);
}

.nav-next a:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(40,167,69,0.2);
}

/* FAQs Modern Look */
h3.wp-block-heading, h3 {
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007bff;
    border-radius: 8px;
    margin: 25px 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

h3.wp-block-heading::before, h3::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

/* Facts List */
.facts-list, .wp-block-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 20px 0;
    list-style: none !important;
}

.facts-list li, .wp-block-list li {
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 35px;
    line-height: 1.7;
    list-style: none !important;
}

.facts-list li:last-child, .wp-block-list li:last-child {
    border-bottom: none;
}

.facts-list li::before, .wp-block-list li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 18px;
}

/* Desktop Menu Hover Fix */
@media (min-width: 992px) {
    .menu-item-has-children {
        position: relative;
    }
    
    .menu-item-has-children .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        max-height: 400px;
        overflow-y: scroll;
        min-width: 200px;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 10px 0;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s;
        z-index: 999;
    }
    
    .menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu-item-has-children .sub-menu a {
        padding: 12px 20px;
        color: #333 !important;
        transition: all 0.2s;
    }
    
    .menu-item-has-children .sub-menu a:hover {
        background: #f8f9fa;
        padding-left: 25px;
    }
}

.entry-title a, h1.entry-title, .single-post .entry-title {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.entry-title a:hover {
    color: #007bff;
}
/*
.entry-meta {
    color: #6c757d;
    font-size: 14px;
    margin: 15px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.entry-meta time {
    font-style: italic;
}
*/
.post-image img, .post-image a img {
    border-radius: 8px;
    margin: 20px 0;
    transition: all 0.3s;
    overflow: hidden;
}

.post-image img:hover {
    transform: scale(1.02);
}

.featured-image img {
    border-radius: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.entry-summary {
    color: #666;
    line-height: 1.8;
}

.read-more, .load-more-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.read-more:hover, .load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.load-more-section {
    text-align: center;
    margin: 40px 0;
}

/* Modern entrance animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQs Global Styles */
.faqs-container {
    margin: 25px 0;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* ============= SIDEBAR ============= */
.widget-area {
    position: sticky;
}

.widget {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.widget h2 {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #007bff;
    position: relative;
}

.widget h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

.wp-block-latest-posts__list {
    list-style: none;
}

.wp-block-latest-posts__list li {
    margin: 12px 0;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

.wp-block-latest-posts__list li:hover {
    background: #f0f7ff;
    padding-left: 15px;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.wp-block-latest-posts__list a {
    color: #333;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.wp-block-latest-posts__list a:hover {
    color: #007bff;
}

.wp-block-latest-posts__list a i {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.wp-block-latest-posts__list li:hover a i {
    opacity: 1;
    transform: translateX(3px);
}

/* ============= FOOTER ============= */
.site-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-links {
        text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    color: #999;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 991px) {
    .site-wrapper {
        flex-direction: column;
        padding: 15px 10px;
        gap: 20px;
    }
    
    .widget-area {
        width: 100%;
        position: static !important;
    }
    
    .widget {
        margin-bottom: 20px;
    }
    
    .main-navigation {
        position: static;
    }
    
    article, .post-card {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .entry-title a, h1.entry-title, .single-post .entry-title {
    font-size: 20px !important;
    font-weight: bolder;
}
    
    .single-post {
        padding: 10px;
    }
    
    .header-container {
        padding: 0 8px;
    }
    
    .site-logo {
        max-width: 210px;
    }
    
    .faq-question {
        padding: 15px 18px !important;
        flex-wrap: wrap;
    }
    
    .faq-question strong {
        font-size: 14px !important;
        flex: 1;
        min-width: 0;
    }
    
    .faq-icon {
        margin-left: 10px;
        flex-shrink: 0;
    }
    
    .facts-list, .wp-block-list {
        padding: 15px 20px;
    }
    
    .facts-list li, .wp-block-list li {
        padding-left: 30px;
        font-size: 14px;
    }
    
    h3 {
        font-size: 20px !important;
        padding: 12px 15px !important;
    }
    
    .entry-title a, h1.entry-title {
        font-size: 24px !important;
    }
    
    .menu a {
        padding: 12px 0;
    }
    
    .widget h2 {
        font-size: 18px !important;
    }
}

@media (min-width: 992px) {
    .mobile-controls {
        display: none;
    }
    
    .main-navigation {
        display: block;
        position: static;
    }
    
    .menu {
    display: flex;
        gap: 30px;
    align-items: center;
    }
    
    .menu > li {
        margin: 0;
    }
    
    .sub-menu {
        position: absolute;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 8px;
        padding: 10px 0;
        min-width: 200px;
    }
    
    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}

/* ============= UTILITIES ============= */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}



/****************************** Whatsapp Floating Button ******************************/
.float {
    position: fixed;
    width: 55px;
    height: 55px;
    right: 10px;
    border-radius: 100px;
    display: flex;
    text-decoration: none;
    align-items: center;
    font-size: 45px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    background-color: #198b27;
    margin-bottom: -43px;
    bottom: 43%;
    animation: shake 8s infinite;
    justify-content: center;
  }

  .fa-whatsapp {
    display: none; /* Hide the FontAwesome WhatsApp icon */
  }

  .my-float {
    font-family: FontAwesome;
    margin-top: 16px;
  }

  .float:before {
    content: 'Join WhatsApp';
    position: absolute;
    left: -135px;
    top: 16px;
    font-size: 15px;
    background: #05940b;
    padding: 5px 15px;
    border-radius: 30px;
    color: #ffffff;
  }

  @keyframes shake {
    0% {}
    35% { transform: scale(1.0); }
    42% { transform: scale(0.8); }
    45% { transform: rotate(0deg) scale(1.2); }
    46% { transform: rotate(-40deg) scale(1.2); }
    47% { transform: rotate(40deg) scale(1.2); }
    48% { transform: rotate(-40deg) scale(1.2); }
    49% { transform: rotate(40deg) scale(1.2); }
    50% { transform: rotate(-20deg) scale(1.2); }
    51% { transform: rotate(0deg) scale(1.2); }
    61% { transform: scale(1.0); }
    100% {}
  }


/****************************** Whatsapp Floating Button end ******************************/

/****************************** whatsapp instagram facebook group button ******************************/
.group-card { margin-bottom: 20px; position: relative; border: 2px solid transparent; border-radius: 5px; background: #f0f8ff; display: flex; align-items: center; padding: 7px; justify-content: space-between; overflow: hidden; } .whatsapp-card { animation: whatsapp-border-animation 1s infinite; } .telegram-card { animation: telegram-border-animation 1s infinite; } .instagram-card { animation: instagram-border-animation 1s infinite; }.facebook-card { animation: facebook-border-animation 1s infinite; }
@keyframes whatsapp-border-animation { 0% { border-color: transparent; } 50% { border-color: #25d366; } 100% { border-color: transparent; } } @keyframes telegram-border-animation { 0% { border-color: transparent; } 50% { border-color: #24A1DE; } 100% { border-color: transparent; } }@keyframes facebook-border-animation { 0% { border-color: transparent; } 50% { border-color: #004F7A; } 100% { border-color: transparent; } } @keyframes instagram-border-animation { 0% { border-color: transparent; } 50% { border-color: #E1306C; } 100% { border-color: transparent; } } .seoquake-nofollow { display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: bold; text-decoration: none; padding: 5px 20px; border-radius: 2px; flex-shrink: 0; transition: all 0.3s ease-in-out; color: white !important; } .seoquake-nofollow i { margin-right: 5px; } .whatsapp-card .seoquake-nofollow { background: #25d366; } .telegram-card .seoquake-nofollow { background: #24A1DE; }.seoquake-nofollow{  text-decoration: none !important;

} .instagram-card .seoquake-nofollow { background: #E1306C; } .seoquake-nofollow:hover { transform: scale(1.05); }
.facebook-card .seoquake-nofollow { background: #3b5998; } .seoquake-nofollow:hover { transform: scale(1.05); }

/****************************** whatsapp instagram facebook group button end ******************************/

/* Related Posts (Single) - Common */
.related-posts-grid { border-radius: 8px;margin: 24px 0;background: #fff; padding: 10px;  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.related-posts-grid > h3.wp-block-heading { margin-bottom: 14px; }
.related-grid {display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 0px 35px;margin: 5px;padding: 0px;}
.related-card { display: flex; flex-direction: column; background: #ffffff; border: 1px solid #eaeaea; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.related-image { display: block; width: 100%; }
.related-image .rp-image { width: 100%; height: 190px; object-fit: cover; display: block;  }
.related-content {  margin: 10px 10px 0px 10px; }
.related-link { text-decoration: none; font-weight: 500; display: inline-block; line-height: 1.35; color: #111; font-size: 16px; }
.related-link:hover { color: #0077cc; }
article.related-card {padding: 0px;margin-top: 10px;box-shadow: none;border: none; border-radius: unset;}
.related-meta {font-size: 12px;color: #0404df;    margin: 0px 10px 10px 10px; }
@media (max-width: 640px) {.footer-links a {margin: 10px 10px;display: block;} .footer-links a i, span.sapratingbar { display: none;} .breadcrumb-current { max-width: 300px;overflow: hidden;} .related-grid { grid-template-columns: 1fr; } .related-image .rp-image { height: 180px; } }

/* ============= NAV SEARCH + SEARCH MODAL (COMMON) ============= */
@media (min-width: 992px) {
	.mobile-controls .menu-toggle { display: none !important; }
	.mobile-controls .search-toggle { display: none !important; }
	.main-navigation .menu { display: flex; align-items: center; gap: 18px; }
}
@media (max-width: 991px) {
	/* Mobile already has a top search icon; hide nav trailing search */
	.main-navigation .menu-search { display: none !important; }
}

/* Desktop nav search button aligned like other menu icons */
.main-navigation .nav-search-btn {
	border: none; background: transparent; cursor: pointer;
   border-radius: 8px; display: inline-flex; align-items: center; gap: 8px;
}


/* Keep submenu open on desktop via hover intent class */
@media (min-width: 992px) {
	.main-navigation .menu-item-has-children > .sub-menu { display: none; }
	.main-navigation .menu-item-has-children.hover-open > .sub-menu { display: block; }
}

/* Search Modal - Base (themes can override colors) */
.search-modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.55); backdrop-filter: blur(2px); display: none; z-index: 1000; }
.search-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: min(760px, 92%); background: #0b1220; color: #e5f0ff; border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px; box-shadow: 0 20px 60px rgba(2,6,23,0.45); display: none; z-index: 1001; overflow: hidden; }
.search-modal-header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.search-modal-header i { color: #9fb4ff; }
.search-input { flex: 1; border: none; outline: none; font-size: 16px; padding: 10px 4px; background: transparent; color: inherit; }
.search-close { border: none; background: transparent; font-size: 18px; cursor: pointer; color: #94a3b8; margin-left: 6px; }
.search-close:hover { color: #e2e8f0; }
.search-modal-body { max-height: 55vh; overflow: auto; padding: 12px 16px; }
.search-hint { font-size: 12px; color: #9ca3af; margin: 6px 0 10px; }
.search-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.search-results li a { display: flex; align-items: center; gap: 8px; padding: 10px 10px; border-radius: 8px; color: inherit; text-decoration: none; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); }
.search-results li a:hover { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.25); }

@media (max-width: 480px) { .search-modal { width: 94%; } }

.breadcrumb {
    margin: 10px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #2563eb;
}

.breadcrumb-sep {
    color: #cbd5f5;
    font-size: 12px;
    opacity: 0.65;
}

.breadcrumb-current {
    color: #475569;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
        gap: 6px;
        padding: 9px 12px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        white-space: nowrap;
    }

    .breadcrumb-sep {
        font-size: 11px;
    }
}

.menu li a, .mobile-controls button {
    font-size: 20px;
}

