/* ============================================
   Responsive Styles for Tablet and Mobile
   ============================================ */

/* ============================================
   Tablet Styles (768px - 991px)
   ============================================ */
@media (max-width: 991.98px) {
    
    /* Topbar Responsive */
    .topbar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .topbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .topbar .row {
        margin: 0;
    }
    
    .topbar .col-md-6 {
        padding: 0.25rem 0;
        text-align: center;
    }
    
    .topbar .col-md-6:first-child {
        margin-bottom: 0.5rem;
    }
    
    .topbar-email {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .topbar-email i {
        margin-right: 0.375rem;
        font-size: 0.85rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    /* Main Header Responsive */
    .main-header {
        position: relative;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar-toggler {
        padding: 0.625rem 1rem;
        font-size: 1.15rem;
        border: 2px solid var(--theme-primary);
        border-radius: var(--border-radius);
        background: transparent;
        color: var(--theme-primary);
        transition: var(--transition);
        z-index: 10001;
        position: relative;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
        outline: none;
    }
    
    .navbar-toggler:hover {
        background: var(--theme-primary);
        color: var(--theme-white);
    }
    
    .navbar-toggler[aria-expanded="true"] {
        display: none !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 69, 145, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.75em;
        height: 1.75em;
    }
    
    /* Full Screen Menu Overlay for Tablet */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: var(--theme-white);
        z-index: 9999;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow-y: auto;
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.25s ease-out,
                    visibility 0.25s ease-out;
        will-change: opacity;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        pointer-events: none;
    }
    
    .navbar-collapse.show {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .navbar-collapse.collapsing {
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
        opacity: 0.98;
        z-index: -1;
    }
    
    .navbar-nav {
        margin: 0 !important;
        padding: 3rem 1.5rem 2rem;
        width: 100%;
        max-width: 600px;
        text-align: center;
        position: relative;
        z-index: 1;
        list-style: none;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        display: block;
        width: 100%;
        color: var(--theme-white);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus {
        background: rgba(255, 255, 255, 0.25);
        color: var(--theme-white);
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        outline: none;
    }
    
    /* Dropdown Menu for Tablet - Full Screen */
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius);
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--theme-white);
        border-radius: 8px;
        margin: 0.25rem 0.75rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        text-decoration: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.25);
        color: var(--theme-white);
        padding-left: 2rem;
        transform: translateX(5px);
        outline: none;
    }
    
    /* Dropdown Toggle Styling for Tablet */
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle::after {
        margin-left: 0.5rem;
        vertical-align: 0.15em;
        border-top: 0.4em solid;
        border-right: 0.35em solid transparent;
        border-bottom: 0;
        border-left: 0.35em solid transparent;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    
    /* Nested Dropdown for Tablet */
    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        border: none;
        border-left: 3px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
        transform: none;
        opacity: 1;
        visibility: visible;
        display: block;
        border-radius: 12px;
    }
    
    .dropdown-submenu > .dropdown-item {
        padding-left: 2rem;
    }
    
    .dropdown-submenu:hover > .dropdown-item {
        padding-left: 2rem;
    }
    
    /* Header Logos - Hide on Tablet */
    .header-logos {
        display: none !important;
    }
    
    /* Close Button for Full Screen Menu - Added via JavaScript */
    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        color: var(--theme-white);
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Menu Animation - Disable Bootstrap default animation */
    .navbar-collapse.collapsing {
        transition: opacity 0.25s ease-out,
                    visibility 0.25s ease-out;
        height: auto !important;
    }
    
    /* Prevent layout shift during animation */
    .navbar-collapse,
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        contain: layout style paint;
    }
}

/* ============================================
   Mobile Styles (max-width: 767px)
   ============================================ */
@media (max-width: 767.98px) {
    
    /* Topbar Mobile - Hide on Mobile */
    .topbar {
        display: none !important;
    }
    
    /* Main Header Mobile */
    .main-header {
        position: relative;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar-brand {
        padding: 0.25rem 0;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.875rem;
        font-size: 1.1rem;
        border: 2px solid var(--theme-primary);
        border-radius: 8px;
        z-index: 10001;
        position: relative;
    }
    
    .navbar-toggler[aria-expanded="true"] {
        display: none !important;
    }
    
    .navbar-toggler-icon {
        width: 1.6em;
        height: 1.6em;
    }
    
    /* Full Screen Menu Overlay for Mobile */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: var(--theme-white);
        z-index: 9999;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow-y: auto;
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.25s ease-out,
                    visibility 0.25s ease-out;
        will-change: opacity;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        pointer-events: none;
    }
    
    .navbar-collapse.show {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .navbar-collapse.collapsing {
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
        opacity: 0.98;
        z-index: -1;
    }
    
    .navbar-nav {
        margin: 0 !important;
        padding: 4rem 1.5rem 2rem;
        width: 100%;
        max-width: 500px;
        text-align: center;
        position: relative;
        z-index: 1;
        list-style: none;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        display: block;
        width: 100%;
        color: var(--theme-white);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus {
        background: rgba(255, 255, 255, 0.25);
        color: var(--theme-white);
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        outline: none;
    }
    
    /* Dropdown Menu for Mobile - Full Screen */
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 0.75rem 0;
        list-style: none;
    }
    
    .dropdown-item {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--theme-white);
        border-radius: 8px;
        margin: 0.25rem 0.75rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        text-decoration: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.25);
        color: var(--theme-white);
        padding-left: 2rem;
        transform: translateX(5px);
        outline: none;
    }
    
    /* Dropdown Toggle Styling */
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle::after {
        margin-left: 0.5rem;
        vertical-align: 0.15em;
        border-top: 0.4em solid;
        border-right: 0.35em solid transparent;
        border-bottom: 0;
        border-left: 0.35em solid transparent;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    
    /* Nested Dropdown for Mobile */
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu > .dropdown-item {
        padding-left: 2rem;
    }
    
    .dropdown-submenu > .dropdown-item .fa-chevron-right {
        display: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        border: none;
        border-left: 3px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
        transform: none;
        opacity: 1;
        visibility: visible;
        display: block;
        padding: 0.75rem 0;
        border-radius: 12px;
    }
    
    .dropdown-submenu:hover > .dropdown-item,
    .dropdown-submenu > .dropdown-item:hover {
        padding-left: 2rem;
    }
    
    /* Header Logos - Hide on Mobile */
    .header-logos {
        display: none !important;
    }
    
    /* Close Button for Full Screen Menu - Mobile (Added via JavaScript) */
    .mobile-menu-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.25) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.35) !important;
        transform: rotate(90deg) scale(1.1);
    }
    
    /* Prevent body scroll when menu is open - Smooth version */
    body.menu-open {
        overflow: hidden !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Prevent layout shift when menu opens */
    html.menu-open {
        overflow: hidden !important;
    }
    
    /* Prevent jerking by ensuring smooth transitions */
    body.menu-open,
    html.menu-open {
        transition: none !important;
    }
    
    /* Mobile Menu Toggle Animation - Hide when menu is open */
    .navbar-toggler[aria-expanded="true"] {
        display: none !important;
    }
    
    /* Menu backdrop overlay */
    .navbar-collapse.show::before {
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 0.98;
        }
    }
    
    /* Menu item animations */
    .navbar-nav .nav-item {
        animation: slideInUp 0.4s ease backwards;
    }
    
    .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .navbar-nav .nav-item:nth-child(7) { animation-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(8) { animation-delay: 0.45s; }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Tablet - Menu item animations */
    @media (max-width: 991.98px) {
        .navbar-nav .nav-item {
            animation: slideInUp 0.4s ease backwards;
        }
    }
}

/* ============================================
   Small Mobile Styles (max-width: 575px)
   ============================================ */
@media (max-width: 575.98px) {
    
    /* Topbar Small Mobile - Already hidden in mobile section */
    
    /* Main Header Small Mobile */
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .latest-issue-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .latest-issue-date,
    .latest-issue-categories {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .latest-issue-categories {
        gap: 0.25rem;
    }
    
    .latest-issue-categories a {
        font-size: 0.8rem;
    }
    
    .single-post-hero-no-image .single-post-title {
        font-size: 1.5rem;
    }
    
    .single-post-navigation {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .single-post-navigation .nav-links {
        gap: 0.5rem;
    }
    
    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .single-post-navigation .nav-label {
        font-size: 0.65rem;
    }
    
    .single-post-navigation .nav-title {
        font-size: 0.85rem;
    }
    
    .single-post-navigation i {
        font-size: 0.85rem;
    }
}

/* ============================================
   Hero Scroll Indicator Responsive Styles
   ============================================ */

/* Tablet - Hero Scroll Indicator */
@media (max-width: 991.98px) {
    .hero-scroll-indicator {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .scroll-mouse {
        width: 26px;
        height: 44px;
        padding-top: 7px;
    }
    
    .scroll-wheel {
        width: 3px;
        height: 7px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
}

/* Mobile - Hero Scroll Indicator */
@media (max-width: 767.98px) {
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* Small Mobile - Hero Scroll Indicator */
@media (max-width: 575.98px) {
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* ============================================
   Landscape Mobile Styles (max-width: 767px and landscape)
   ============================================ */
@media (max-width: 767.98px) and (orientation: landscape) {
    
    .navbar-collapse {
        max-height: calc(100vh - 80px);
    }
    
    .topbar {
        padding: 0.4rem 0;
    }
    
    .hero-scroll-indicator {
        bottom: 0.5rem;
    }
}

/* ============================================
   Additional Responsive Styles from style.css
   ============================================ */

/* Dropdown Submenu - Tablet */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        left: auto;
        margin-left: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        border-left: 2px solid var(--theme-green);
        transform: none;
    }
    
    .dropdown-submenu > .dropdown-item .fa-chevron-right {
        transform: rotate(90deg);
    }
    
    .dropdown-submenu:hover > .dropdown-item .fa-chevron-right {
        transform: rotate(90deg) translateX(3px);
    }
}

/* General Responsive Styles - Tablet */
/* Post Navigation for 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo-img {
        height: 45px;
    }
    
    .single-post-navigation {
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }
    
    .single-post-navigation .nav-links {
        gap: 1.5rem;
    }
    
    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        padding: 1.25rem 1.5rem;
        gap: 0.875rem;
    }
    
    .single-post-navigation .nav-label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .single-post-navigation .nav-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .single-post-navigation i {
        font-size: 1.125rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-heading-large {
        font-size: 2.25rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .parallax-section {
        height: 60vh;
        min-height: 450px;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .parallax-background {
        background-attachment: scroll;
        height: 100%;
        animation: none !important;
    }
    
    .parallax-overlay {
        height: 100%;
    }
    
    .parallax-content {
        padding: 4rem 0;
    }
    
    .parallax-title {
        font-size: 2.75rem;
    }
    
    .parallax-text {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .parallax-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .parallax-icon i {
        font-size: 2.5rem;
    }
    
    .parallax-stats {
        gap: 2rem;
    }
    
    .parallax-stat-item {
        padding: 1.5rem 2rem;
        min-width: 160px;
    }
    
    .parallax-stat-number {
        font-size: 2.75rem;
    }
    
    .parallax-stat-label {
        font-size: 0.85rem;
    }
    
    /* Category/Archive Page Tablet */
    .page-header {
        padding: 3.5rem 1.5rem;
        margin: 0;
        margin-bottom: 2.5rem;
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .page-header .taxonomy-description {
        font-size: 1rem;
    }
    
    .content-area {
        padding: 1.5rem 0;
    }
    
    .content-area.col-lg-8 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .sidebar {
        width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .sidebar .widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sidebar .widget-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .sidebar .tagcloud a {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .content-area .site-main > article {
        padding: 1.75rem;
    }
    
    .content-area .entry-title {
        font-size: 1.625rem;
    }
    
    /* Tablet Pagination */
    .content-area .pagination,
    .content-area .nav-links {
        margin: 2.5rem 0;
        gap: 0.5rem;
    }
    
    .content-area .page-numbers,
    .content-area .nav-links a,
    .content-area .nav-links span {
        padding: 0.6875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .content-area .pagination .prev,
    .content-area .pagination .next,
    .content-area .nav-links .prev,
    .content-area .nav-links .next {
        width: 44px;
        height: 44px;
    }
    
    .header-logos {
        margin-top: 1rem;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 1px solid var(--theme-border);
    }
    
    .current-issue-container {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    
    .current-issue-card .service-card {
        transform: scale(1);
    }
    
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .introduction-section,
    .services-section {
        padding: 5rem 0;
    }
    
    .intro-content-card {
        padding: 3rem 2.5rem;
    }
    
    .section-heading-modern {
        font-size: 2rem;
    }
    
    .intro-content {
        padding-left: 0;
    }
    
    .intro-features {
        gap: 1rem;
    }
    
    .intro-cta-wrapper {
        flex-direction: column;
    }
    
    .intro-cta-wrapper .btn {
        width: 100%;
        justify-content: center;
    }
    
    .intro-cta-wrapper-modern {
        flex-direction: column;
    }
    
    .intro-cta-wrapper-modern .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* General Responsive Styles - Mobile */
@media (max-width: 768px) {
    /* Remove fade-in-up animation for guideline-card on mobile for all pages */
    .guideline-card.fade-in-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .copyright-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright-text .separator {
        display: none;
    }
    
    .topbar {
        text-align: center;
        padding: 0.625rem 0;
    }
    
    .topbar .col-md-6 {
        margin-bottom: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-section {
        height: 75vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-subscribe {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .parallax-section {
        height: 55vh;
        min-height: 400px;
    }
    
    .parallax-background {
        background-attachment: scroll;
        height: 100%;
        animation: none !important;
    }
    
    .parallax-overlay {
        height: 100%;
    }
    
    .parallax-content {
        padding: 3rem 1.5rem;
    }
    
    .parallax-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .parallax-text {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .parallax-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .parallax-icon i {
        font-size: 2rem;
    }
    
    .parallax-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .parallax-stat-item {
        padding: 1.5rem 1.75rem;
        min-width: 140px;
        flex: 1 1 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
    
    .parallax-stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .parallax-stat-label {
        font-size: 0.85rem;
    }
    
    .section-heading {
        font-size: 1.625rem;
    }
    
    .heading-highlight {
        font-size: 1em;
    }
    
    .intro-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .intro-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .intro-badge-wrapper {
        margin-bottom: 2rem;
    }
    
    .intro-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .intro-feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .section-heading-large {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .introduction-section,
    .services-section {
        padding: 4rem 0;
    }
    
    .intro-content-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .intro-icon {
        width: 70px;
        height: 70px;
    }
    
    .intro-icon i {
        font-size: 1.75rem;
    }
    
    .section-heading-modern {
        font-size: 1.75rem;
    }
    
    .heading-highlight-modern {
        font-size: 0.85em;
    }
    
    .intro-text-modern {
        font-size: 1rem;
        text-align: center;
    }
    
    .intro-cta-wrapper-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-cta-wrapper-modern .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .current-issue-container {
        margin-bottom: 2rem;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .intro-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-card-body {
        padding: 2rem 1.75rem;
    }
    
    .service-card-header {
        padding: 1.25rem;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .service-card-number {
        font-size: 4rem;
    }
    
    .service-card-image {
        height: 220px;
    }
    
    .section-heading-large {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 3.5rem 0 0;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .input-group-modern {
        gap: 0.625rem;
    }
    
    .form-control-modern {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-subscribe {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .footer-submission-box {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .submission-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
    
    .contact-item {
        gap: 0.875rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-partners {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-copyright {
        text-align: center;
        width: 100%;
    }
    
    .copyright-text {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright-text .separator {
        display: none;
    }
    
    .navbar {
        padding: 1rem 0;
    }
}

/* Small Mobile - General Styles */
@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
        min-height: 550px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-subscribe {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
    }
    
    .parallax-section {
        height: 50vh;
        min-height: 500px;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .parallax-background {
        background-attachment: scroll;
        height: 100%;
        animation: none !important;
    }
    
    .parallax-overlay {
        height: 100%;
    }
    
    .parallax-content {
        padding: 2.5rem 1rem;
    }
    
    .parallax-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .parallax-text {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .parallax-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .parallax-icon i {
        font-size: 1.75rem;
    }
    
    .parallax-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .parallax-stat-item {
        padding: 1.25rem 1.5rem;
        min-width: 100%;
        max-width: 280px;
        width: 100%;
    }
    
    .parallax-stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }
    
    .parallax-stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .section-heading-large {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .heading-highlight {
        font-size: 0.95em;
        padding-left: 1.25rem;
    }
    
    .heading-highlight::before {
        width: 3px;
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        padding-left: 1.25rem;
    }
    
    .intro-text::before {
        width: 5px;
        height: 5px;
        top: 0.6rem;
    }
    
    .intro-feature-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* Page Header Responsive - Tablet */
@media (max-width: 991px) {
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .page-header-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header-icon {
        width: 80px;
        height: 80px;
    }
    
    .page-header-icon i {
        font-size: 2rem;
    }
    
    .author-card {
        padding: 2rem;
    }
    
    .author-card-title {
        font-size: 1.75rem;
    }
    
    .author-features {
        grid-template-columns: 1fr;
    }
    
    .ethics-points {
        grid-template-columns: 1fr;
    }
    
    .author-card-cta {
        flex-direction: column;
    }
    
    .author-card-cta .btn {
        width: 100%;
    }
    
    .editorial-board-section {
        padding: 3rem 0 4rem;
    }

    .editorial-card {
        padding: 2rem;
    }
    
    .contribution-types {
        grid-template-columns: 1fr;
    }
    
    .guideline-card {
        padding: 2rem;
    }
    
    .guideline-card-title {
        font-size: 1.75rem;
    }
    
    .welcome-card {
        padding: 2rem;
    }
    
    .welcome-card-title {
        font-size: 1.75rem;
    }
}

/* Page Header Responsive - Mobile */
@media (max-width: 768px) {
    .page-header-section {
        padding: 4rem 0 3rem;
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .page-header-title {
        font-size: 2rem;
    }
    
    .page-header-subtitle {
        font-size: 1rem;
    }
    
    .authors-section {
        padding: 3rem 0;
    }
    
    .author-card {
        padding: 1.5rem;
    }
    
    .author-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .author-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .author-card-icon i {
        font-size: 1.5rem;
    }
    
    .guideline-section {
        padding: 1rem;
    }
    
    .guideline-heading {
        font-size: 1.1rem;
    }
    
    .editorial-card {
        padding: 1.75rem;
    }

    .editorial-card-header {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .latest-issue-hero-section .page-header-title {
        font-size: 2.5rem;
    }

    .latest-issue-hero-section .page-header-subtitle {
        font-size: 1.1rem;
    }

    .latest-issue-card-body {
        padding: 1.75rem;
    }

    .latest-issue-title {
        font-size: 1.5rem;
    }

    .latest-issue-thumbnail {
        height: 220px;
    }
    
    .latest-issue-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .latest-issue-date,
    .latest-issue-categories {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .latest-issue-categories {
        flex-wrap: wrap;
        gap: 0.375rem;
        width: 100%;
        max-width: 100%;
    }
    
    .latest-issue-categories a {
        font-size: 0.85rem;
        white-space: nowrap;
        word-break: keep-all;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: inline-block;
    }
    
    .authors-guidelines-section {
        padding: 3rem 0;
    }
    
    .guideline-card {
        padding: 1.5rem;
    }
    
    .guideline-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .guideline-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .guideline-card-icon i {
        font-size: 1.5rem;
    }
    
    .contribution-type-item {
        flex-direction: column;
    }
    
    .contribution-type-icon {
        width: 45px;
        height: 45px;
    }
    
    .guideline-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .guideline-item-header h3 {
        font-size: 1.1rem;
    }
    
    .reference-examples {
        padding: 1rem;
    }
    
    .reference-example {
        font-size: 0.9rem;
    }
    
    .welcome-content-section {
        padding: 3rem 0;
    }
    
    .welcome-card {
        padding: 1.5rem;
    }
    
    .welcome-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .welcome-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .welcome-card-icon i {
        font-size: 1.5rem;
    }
    
    .welcome-image-wrapper {
        margin-bottom: 3rem;
    }
    
    .single-post-hero {
        min-height: 50vh;
    }

    .single-post-hero-overlay,
    .single-post-hero-no-image {
        padding: 3rem 0 2rem;
    }

    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-hero-no-image .single-post-title {
        font-size: 1.75rem;
    }

    .single-post-excerpt {
        font-size: 1.05rem;
    }

    .single-post-content-wrapper {
        padding: 2.5rem 0;
    }

    .single-post-content {
        font-size: 1rem;
    }

    .single-post-content h2 {
        font-size: 1.75rem;
    }

    .single-post-content h3 {
        font-size: 1.5rem;
    }

    .single-post-meta-top,
    .single-post-meta-bottom {
        font-size: 0.85rem;
        gap: 1rem;
    }
    
    .single-post-navigation {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .single-post-navigation .nav-links {
        gap: 0.75rem;
    }
    
    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        padding: 1rem;
        gap: 0.625rem;
    }
    
    .single-post-navigation .nav-label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .single-post-navigation .nav-title {
        font-size: 0.9rem;
    }
    
    .single-post-navigation i {
        font-size: 0.9rem;
    }
    
    .single-post-section {
        padding: 2.5rem 0;
    }
    
    .single-post-section .widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .single-post-section .widget-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }
    
    .single-post-section .widget p,
    .single-post-section .widget li a {
        font-size: 0.9rem;
    }
    
    /* Category/Archive Page Mobile */
    .page-header {
        padding: 3rem 1.5rem;
        margin: 0;
        margin-bottom: 2rem;
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .page-header .page-title {
        font-size: 1.75rem;
    }
    
    .page-header .taxonomy-description {
        font-size: 0.95rem;
    }
    
    .content-area {
        padding: 1.5rem 0;
    }
    
    .content-area.col-lg-8 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .sidebar {
        width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .sidebar .widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sidebar .widget-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .content-area .site-main {
        padding: 0;
    }
    
    .content-area .site-main > article {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-area .entry-title {
        font-size: 1.5rem;
    }
    
    .content-area .entry-summary,
    .content-area .entry-content {
        font-size: 0.95rem;
    }
    
    .sidebar .widget {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .sidebar .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.625rem;
    }
    
    .sidebar .widget li {
        padding: 0.625rem 0;
        font-size: 0.9rem;
    }
    
    .sidebar .tagcloud a {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .sidebar .widget_search .search-field {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
    
    .sidebar .widget_search .search-submit {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .content-area .entry-footer {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    .content-area .pagination,
    .content-area .nav-links {
        margin: 2rem 0;
        gap: 0.375rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .content-area .page-numbers,
    .content-area .nav-links a,
    .content-area .nav-links span {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
        min-width: 38px;
        height: 38px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .content-area .pagination .prev,
    .content-area .pagination .next,
    .content-area .nav-links .prev,
    .content-area .nav-links .next {
        padding: 0.625rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0 !important;
        flex: 0 0 auto;
        max-width: none;
    }
    
    .content-area .pagination .prev:after,
    .content-area .pagination .next:after,
    .content-area .nav-links .prev:after,
    .content-area .nav-links .next:after {
        font-size: 0.9375rem;
    }
    
    .content-area .pagination .prev i,
    .content-area .pagination .next i,
    .content-area .nav-links .prev i,
    .content-area .nav-links .next i {
        font-size: 0.9375rem;
    }
    
    /* Better spacing for mobile */
    .content-area .pagination .prev {
        margin-right: 0.375rem !important;
    }
    
    .content-area .pagination .next {
        margin-left: 0.375rem !important;
    }
    
    /* Ensure pagination doesn't overflow */
    .content-area .pagination {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .content-area .pagination::-webkit-scrollbar {
        display: none;
    }
    
    .back-issues-hero-section {
        min-height: 40vh;
    }

    .back-issues-hero-section .page-header-title {
        font-size: 2rem;
    }

    .back-issues-hero-section .page-header-subtitle {
        font-size: 1.05rem;
    }

    .back-issues-content-section {
        padding: 3rem 0;
    }

    .back-issues-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-issues-card {
        padding: 1.75rem;
    }

    .back-issues-card-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .back-issues-card-title i {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .back-issues-card-content {
        font-size: 1rem;
    }

    .back-issues-link-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .peer-reviewed-hero-section .page-header-title {
        font-size: 2.5rem;
    }

    .peer-reviewed-hero-section .page-header-subtitle {
        font-size: 1.1rem;
    }

    .peer-reviewed-card-body {
        padding: 1.75rem;
    }

    .peer-reviewed-title {
        font-size: 1.5rem;
    }

    .peer-reviewed-thumbnail {
        height: 220px;
    }
    
    .non-peer-reviewed-hero-section .page-header-title {
        font-size: 2.5rem;
    }

    .non-peer-reviewed-hero-section .page-header-subtitle {
        font-size: 1.1rem;
    }

    .non-peer-reviewed-card-body {
        padding: 1.75rem;
    }

    .non-peer-reviewed-title {
        font-size: 1.5rem;
    }

    .non-peer-reviewed-thumbnail {
        height: 220px;
    }
    
    .error-404-hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .error-404-icon {
        font-size: 3.5rem;
    }

    .error-404-title {
        font-size: 5rem;
    }

    .error-404-subtitle {
        font-size: 1.75rem;
    }

    .error-404-description {
        font-size: 1.1rem;
    }

    .error-404-search,
    .error-404-quick-links,
    .error-404-recent-posts {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .error-404-section-title {
        font-size: 1.5rem;
    }

    .error-404-search .search-form {
        flex-direction: column;
    }

    .error-404-search .search-form label {
        width: 100%;
    }

    .error-404-search .search-submit {
        width: 100%;
    }

    /* General search form responsive */
    .search-form {
        flex-direction: column;
    }

    .search-form label {
        width: 100%;
    }

    .search-form .search-submit {
        width: 100%;
    }

    .error-404-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .error-404-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .error-404-home-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .search-results-hero-section {
        min-height: 40vh;
        padding: 3rem 0;
    }

    .search-results-icon {
        font-size: 3rem;
    }

    .search-results-hero-section .page-header-title {
        font-size: 2.5rem;
    }

    .search-results-hero-section .page-header-subtitle {
        font-size: 1.1rem;
    }

    .search-result-card-body {
        padding: 1.75rem;
    }

    .search-result-title {
        font-size: 1.5rem;
    }

    .search-result-thumbnail {
        height: 220px;
    }

    .search-results-empty-state h2 {
        font-size: 2rem;
    }

    .search-results-suggestions ul {
        flex-direction: column;
        align-items: stretch;
    }

    .search-results-suggestions a {
        width: 100%;
        text-align: center;
    }
}

/* Single Post Responsive - Tablet */
@media (max-width: 992px) {
    .single-post-title {
        font-size: 2.5rem;
    }

    .single-post-excerpt {
        font-size: 1.15rem;
    }

    .single-post-content {
        font-size: 1.05rem;
    }

    .single-post-navigation {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .single-post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .single-post-navigation .nav-next {
        text-align: left;
        flex-direction: row;
    }
    
    .single-post-navigation .nav-label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .single-post-navigation .nav-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .single-post-navigation i {
        font-size: 1rem;
    }
    
    .single-post-sidebar {
        position: static;
        top: auto;
    }
    
    .single-post-section .sidebar,
    .single-post-section .widget-area {
        margin-top: 3rem;
    }
    
    .back-issues-hero-section .page-header-title {
        font-size: 2.5rem;
    }

    .back-issues-hero-section .page-header-subtitle {
        font-size: 1.15rem;
    }

    .back-issues-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-issues-card {
        padding: 2rem;
    }

    .back-issues-card-title {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .topbar,
    .main-header,
    .footer {
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
}

