@charset "utf-8";
/**
 * board_paper/css/list.css
 * List page styles (minimal - uses board_common.css)
 * 
 * %%% MODIFIED %%%
 * - Removed .container (handled by header.php)
 * - Removed duplicate board_common.css styles
 * - Changed .list-write -> .list-title
 * - Mobile First, Single breakpoint: 768px
 */

/* =============================================
   1. LIST TITLE (Mobile)
   ============================================= */
.list-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

/* =============================================
   2. PC (768px+)
   ============================================= */
@media (min-width: 768px) {
    .list-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}
