/* Mobile-specific styles */
@media screen and (max-width: 500px) {
    /* Grid layout */
    .latest-posts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    /* Post card container */
    .post-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 0.5rem;
        overflow: hidden;
        transform: none !important;
        transition: none !important;
    }

    .post-card:hover {
        transform: none !important;
    }

    /* Thumbnail section */
    .post-thumbnail {
        width: 100%;
        position: static !important;
        padding-top: 0 !important;
        overflow: visible !important;
    }

    /* Thumbnail image */
    .post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        position: static !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
    }

    /* Content section */
    .post-content {
        width: 100%;
        padding: 0 1rem 1rem;
    }

    /* Header */
    .entry-header {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Title */
    .entry-title {
        font-size: 1.5rem;
        line-height: 1.3;
        width: 100%;
    }

    .entry-title a {
        color: #333;
        text-decoration: none;
    }

    /* Content */
    .entry-content {
        width: 100%;
    }

    .custom-excerpt {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .pagination .page-numbers {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #333;
        text-decoration: none;
        border-radius: 0.25rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
    }

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

    .page-title{
        font-weight: bold;
        font-size: 0.7rem;
    }

    /* Artist Page Posts */
    .artist-posts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .artist-post-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 0.5rem;
        overflow: hidden;
        transform: none !important;
        transition: none !important;
    }

    .artist-post-thumbnail {
        width: 100%;
        position: static !important;
        padding-top: 0 !important;
        overflow: visible !important;
    }

    .artist-post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        position: static !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
    }

    .artist-post-content {
        padding: 0 1rem 1rem;
    }

    .artist-post-title {
        font-size: 1.5rem;
        line-height: 1.3;
        width: 100%;
    }

    .artist-post-excerpt {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
    }

    /* Artist Sub Page Posts */
    .artist-sub-posts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .artist-sub-post-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 0.5rem;
        overflow: hidden;
        transform: none !important;
        transition: none !important;
    }

    .artist-sub-post-thumbnail {
        width: 100%;
        position: static !important;
        padding-top: 0 !important;
        overflow: visible !important;
    }

    .artist-sub-post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        position: static !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
    }

    .artist-sub-post-content {
        padding: 0 1rem 1rem;
    }

    .artist-sub-post-title {
        font-size: 1.5rem;
        line-height: 1.3;
        width: 100%;
    }

    .artist-sub-post-excerpt {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
    }
    .menu-images-container{
        display: none;
    }
}
