/* ===== 스포츠분석 게시판 ===== */
#sports_board { width:100%; }

/* 상단 배너 */
.sports-banner {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 24px 28px;
    margin-bottom: 16px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.sports-banner::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, #e63946 0%, #c0392b 100%);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.sports-banner-text { position: relative; z-index: 1; flex: 1; }
.sports-banner-eyebrow { font-size: 11px; font-weight: 700; color: #e63946; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 6px; }
.sports-banner-text h1 {
    font-size: 18px; font-weight: 800;
    color: #111; margin: 0 0 6px; letter-spacing: -0.3px;
    line-height: 1.4;
}
.sports-banner-text h1 span { color: #e94560; }
.sports-banner-text p {
    font-size: 12px; color: #666; margin: 0; line-height: 1.6;
}
.sports-banner-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding-left: 20px;
}
.sports-banner-icon-main { font-size: 48px; color: rgba(255,255,255,.9); }

/* 카테고리 탭 */
.sports-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 12px;
    background: #fff;
    gap: 0;
}
.sports-tab {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px; font-weight: 600; color: #666;
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: none;
    margin-bottom: -2px;
    border-radius: 4px 4px 0 0;
    transition: all .15s;
    white-space: nowrap;
}
.sports-tab.active {
    color: #111;
    border-color: #ddd;
    border-bottom-color: #fff;
    background: #fff;
}
.sports-tab:hover { color: #e94560; }

/* 카운트 바 */
.sports-count-bar {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 6px 2px 10px; font-size: 13px; color: #555;
    border-bottom: 2px solid #e94560;
    margin-bottom: 0;
    flex-wrap: wrap; gap: 8px;
}
.sports-count-bar strong { color: #111; font-weight: 700; }
.sports-bar-right { display:flex; align-items:center; gap:6px; }
.sports-rank-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; border: 1px solid #e94560;
    border-radius: 20px; padding: 5px 14px;
    font-size: 12px; font-weight: 700; color: #e94560;
    text-decoration: none; cursor: pointer;
    transition: all .15s;
}
.sports-rank-btn:hover { background: #e94560; color: #fff; }
.sports-icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border: 1px solid #ddd; border-radius: 4px;
    background: #fff; color: #555; font-size: 13px;
    cursor: pointer; text-decoration: none;
    transition: all .15s;
}
.sports-icon-btn:hover { background: #e94560; color: #fff; border-color: #e94560; }

/* 검색 폼 (토글) */
.sports-search-form {
    display: none;
    background: #fff; border: 1px solid #ddd; border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    padding: 12px 14px; margin-bottom: 10px;
    gap: 6px; align-items: center;
}
.sports-search-form.open { display:flex; }
.sports-search-form select {
    border: 1px solid #ddd; border-radius: 4px;
    padding: 7px 8px; font-size: 12px; outline: none;
    background: #fff; height: 36px; min-width: 80px;
}
.sports-search-form input[type=text] {
    flex: 1; border: 1px solid #ddd; border-radius: 4px;
    padding: 7px 10px; font-size: 12px; outline: none; height: 36px;
}
.sports-search-form button[type=submit] {
    background: #e94560; color: #fff; border: none;
    border-radius: 4px; padding: 0 14px; height: 36px;
    font-size: 13px; cursor: pointer;
}

/* 테이블 */
.sports-table { width:100%; border-collapse:collapse; background:#fff; }
.sports-table thead tr { background: #1a1a2e; }
.sports-table thead th {
    padding: 10px 8px;
    font-size: 12px; font-weight: 700; color: #fff;
    background: transparent;
    border-bottom: none;
    text-align: center; white-space: nowrap;
}
.sports-table thead th.th-left { text-align: left; padding-left: 10px; }
.sports-table tbody tr { border-bottom: 1px solid #ebebeb; }
.sports-table tbody tr:hover td { background: #fff3f3 !important; }
.sports-table tbody td {
    padding: 9px 8px; font-size: 13px; color: #333;
    vertical-align: middle; text-align: center; height: 42px;
}
.sports-table tbody td.td-left { text-align: left; padding-left: 8px; }
.sports-table tbody tr:nth-child(even) td { background: #f9f9f9; }

/* 열 너비 */
.sports-table .col-num  { width: 56px; color: #999; font-size: 12px; }
.sports-table .col-name { width: 110px; font-size: 12px; color: #444; }
.sports-table .col-date { width: 60px; color: #aaa; font-size: 11px; }
.sports-table .col-hit  { width: 52px; color: #999; font-size: 11px; }

/* 제목 링크 */
.sports-title-a {
    display: inline; color: #333; text-decoration: none;
    transition: color .15s;
}
.sports-title-a:hover { color: #e94560; }

/* 아이콘 */
.sports-cat-icon { margin-right: 4px; font-size: 14px; vertical-align: middle; }

/* 공지 배지 */
.sports-notice-badge {
    display: inline-block; background: #e94560; color: #fff;
    font-size: 10px; font-weight: 700; padding: 1px 5px;
    border-radius: 2px; margin-right: 5px; vertical-align: middle;
}
/* 새글 */
.sports-new {
    display: inline-block; background: #e94560; color: #fff;
    font-size: 9px; font-weight: 700; padding: 0 3px;
    vertical-align: middle; margin-left: 3px; border-radius: 2px;
}
/* 댓글 수 */
.sports-cmt { color: #e94560; font-size: 11px; margin-left: 2px; font-weight: 600; }
/* 썸네일 아이콘 */
.sports-img-icon {
    display:inline-block; background:#e0e0e0; color:#888;
    font-size:9px; padding:1px 4px; border-radius:2px;
    margin-left:3px; vertical-align:middle;
}

/* 작성자 */
.sports-nick-wrap {
    display: inline-flex; align-items: center; gap: 5px;
    white-space: nowrap;
}
.sports-nick-avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: #eee; font-size: 10px; color: #888; flex-shrink: 0;
    overflow: hidden;
}
.sports-nick-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }

/* 빈 행 */
.sports-empty { text-align:center; color:#bbb; padding:30px 0; font-size:13px; }

/* 페이지 */
.sports-pg-wrap { text-align:center; padding:12px 0 4px; }
.sports-pg-wrap .pg_wrap { display:inline-block; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .sports-banner { padding: 22px 20px; }
}
@media (max-width: 768px) {
    .sports-banner { padding: 20px 16px; min-height: 110px; }
    .sports-banner-right { display: none; }
    .sports-banner-text h1 { font-size: 15px; }
}
@media (max-width: 480px) {
    .sports-banner { padding: 16px 12px; min-height: 90px; }
    .sports-banner-text h1 { font-size: 13px; }
}
