@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .board-stats,
    .board-last-post {
        display: none;
    }

    .thread-replies,
    .thread-views,
    .thread-last-post {
        display: none;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-stats {
        justify-content: center;
    }

    .settings-layout {
        flex-direction: column;
    }

    .settings-nav {
        width: 100%;
        display: flex;
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .settings-nav-item {
        white-space: nowrap;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .header-search {
        display: none;
    }

    .post {
        flex-direction: column;
    }

    .post-author {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        padding: 10px 14px;
    }

    .post-author .avatar {
        margin: 0;
    }

    .post-author .user-posts,
    .post-author .user-join {
        display: none;
    }

    .post-author .user-title {
        margin-bottom: 0;
    }

    .board-row {
        flex-wrap: wrap;
    }

    .thread-row {
        flex-wrap: wrap;
    }

    .thread-info {
        width: 100%;
    }

    .forum-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
}
