@charset "UTF-8";

/* ==========================================================================
   Table List (Board Style) 😊💎
   ========================================================================== */
.table-list {
    margin-bottom: 80px;
}

.zzan-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-top: 2px solid var(--zp-black);
}

.zzan-table th {
    padding: 20px 15px;
    font-size: 15px;
    font-weight: 800;
    color: var(--zp-black);
    background: var(--zp-gray-50);
    border-bottom: 1px solid var(--zp-gray-200);
    text-align: center;
}

.zzan-table td {
    padding: 18px 15px;
    font-size: 15px;
    color: var(--zp-gray-700);
    border-bottom: 1px solid var(--zp-gray-100);
    transition: background 0.2s;
}

.zzan-table tr:hover td {
    background: #fafafa;
}

.zzan-table .t-topic { width: 150px; text-align: center; }
.zzan-table .t-title { text-align: left; font-weight: 600; color: var(--zp-black); }
.zzan-table .t-author { width: 120px; text-align: center; }
.zzan-table .t-date { width: 120px; text-align: center; color: var(--zp-gray-500); }
.zzan-table .t-read { width: 80px; text-align: center; color: var(--zp-gray-500); }

.zzan-table .t-title a {
    color: inherit;
    text-decoration: none;
}

.zzan-table .t-title a:hover {
    color: var(--zp-electric-blue);
}

.mobile-only-list { display: none; }

@media (max-width: 767px) {
    .zzan-table { display: none; }
    .mobile-only-list { display: block; border-top: 2px solid var(--zp-black); }
    .m-list-item {
        padding: 20px 0;
        border-bottom: 1px solid var(--zp-gray-100);
    }
    .m-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .m-date { font-size: 12px; color: var(--zp-gray-500); }
    .m-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
    .m-title a { color: var(--zp-black); text-decoration: none; }
    .m-info { display: flex; gap: 12px; font-size: 13px; color: var(--zp-gray-500); }
    .m-read { position: relative; padding-left: 12px; }
    .m-read::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 10px; background: var(--zp-gray-300); }
}
