/* Mobile Responsive Styles for Blog Page */
@media (max-width: 768px) {
    /* Header adjustments */
    .bp_header {
        padding: 10px 15px;
        flex-wrap: nowrap;
    }

    .bp_logo {
        order: 1;
        flex: 1;
        min-width: 120px;
        width: auto;
    }

    .bp_logo-image {
        height: 40px;
        width: auto;
        max-width: 150px;
    }

    .bp_nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--bp_white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        margin-left: 0;
        padding: 20px;
    }

    .bp_nav.active {
        right: 0;
    }

    .bp_nav ul {
        flex-direction: column;
        margin: 0;
    }

    .bp_nav ul li {
        margin: 15px 0;
    }

    .bp_nav ul li a {
        padding: 8px 0;
    }

    .bp_nav ul li a.bp_active {
        color: var(--bp_primary-color);
    }

    .bp_nav ul li a.bp_active::after {
        width: 30px;
    }

    .bp_header-icons {
        order: 2;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    .bp_header-icons a {
        margin-left: 8px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .bp_cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .bp_mobile-menu {
        display: block;
        order: 3;
        margin-left: 10px;
    }

    /* Breadcrumb adjustments */
    .bp_breadcrumb {
        margin-top: 80px !important;
        padding: 10px 15px;
        width: 95%;
        border-radius: 6px;
        font-size: 13px;
    }

    /* Blog hero adjustments */
    .bp_blog-hero {
        height: 250px;
        margin: 20px auto;
        width: 95%;
    }

    .bp_blog-hero-content {
        padding: 20px;
    }

    .bp_blog-hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .bp_blog-hero-subtitle {
        font-size: 14px;
    }

    /* Blog container adjustments */
    .bp_blog-container {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
    }

    .bp_blog-main {
        padding: 20px;
    }

    /* Blog post adjustments */
    .bp_blog-post {
        margin-bottom: 40px;
    }

    .bp_blog-post:not(:last-child) {
        padding-bottom: 40px;
    }

    .bp_blog-post-title {
        font-size: 22px;
    }

    .bp_blog-post-meta {
        flex-wrap: wrap;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .bp_blog-post-meta span {
        margin-right: 15px;
        margin-bottom: 5px;
    }

    .bp_blog-post-image {
        height: 200px;
        margin-bottom: 15px;
    }

    .bp_blog-post-content {
        font-size: 15px;
    }

    .bp_blog-post-content h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    /* Sidebar adjustments */
    .bp_blog-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        position: static;
    }

    .bp_sidebar-widget {
        padding: 20px;
    }

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

    .bp_recent-post-image {
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    /* CTA box adjustments */
    .bp_cta-box {
        padding: 20px;
    }

    .bp_cta-box h3 {
        font-size: 20px;
    }

    /* Table adjustments */
    .bp_feature-table {
        font-size: 14px;
    }

    .bp_feature-table th,
    .bp_feature-table td {
        padding: 8px 10px;
    }

    /* Categories widget adjustments */
    .bp_categories-list li a {
        padding: 10px;
    }

    .bp_category-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 12px;
    }

    .bp_category-name {
        font-size: 14px;
    }

    .bp_category-count {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    /* Scroll to top button */
    .bp_scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
}

/* Very small screens (below 480px) */
@media (max-width: 480px) {
    .bp_logo-image {
        max-width: 120px;
    }

    .bp_header-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-left: 6px;
    }

    .bp_nav {
        width: 80%;
    }

    .bp_blog-hero {
        height: 200px;
    }

    .bp_blog-hero-title {
        font-size: 20px;
    }

    .bp_blog-post-title {
        font-size: 20px;
    }

    .bp_blog-post-image {
        height: 180px;
    }

    .bp_blog-post-meta {
        font-size: 11px;
    }

    .bp_feature-table {
        font-size: 12px;
    }

    .bp_cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small screens (below 360px) */
@media (max-width: 360px) {
    .bp_header {
        padding: 8px 10px;
    }

    .bp_logo-image {
        max-width: 100px;
    }

    .bp_header-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .bp_blog-hero-title {
        font-size: 18px;
    }

    .bp_blog-post-title {
        font-size: 18px;
    }

    .bp_blog-post-image {
        height: 150px;
    }

    .bp_blog-post-content {
        font-size: 14px;
    }

    .bp_blog-post-content h3 {
        font-size: 16px;
    }
}