/* ============================================================
 * FILE: public/assets/css/home.css
 * ── 배치 정보 ──────────────────────────────────────────────────
 *   서버: 웹서버 (macOS, 172.20.200.10)
 *   경로: /Users/lajeong/Documents/Site/public/assets/css/home.css
 *   접근: 브라우저에서 직접 로드 — /assets/css/home.css
 * ── 역할 ──────────────────────────────────────────────────────
 *   메인(홈) 페이지 전용 스타일.
 *   히어로 섹션, 최신 게시글 카드, 다운로드 미리보기.
 *   사이트 소개 섹션.
 * ============================================================ */

/* ==============================
   히어로 검색 섹션
   ============================== */
.hero-section {
    background     : radial-gradient(
                         ellipse at 50% 0%,
                         rgba(99,102,241,.18) 0%,
                         transparent 65%
                     ),
                     var(--color-surface);
    border-bottom  : 1px solid var(--color-border);
    padding        : 0 0 56px;
    text-align     : center;
}

.hero-inner {
    max-width      : 680px;
    margin         : 0 auto;
    padding        : 64px 24px 0;
}

.hero-headline {
    font-size      : 36px;
    font-weight    : 800;
    color          : var(--color-text);
    line-height    : 1.25;
    margin-bottom  : 12px;
    letter-spacing : -.02em;
}

.hero-sub {
    font-size      : 16px;
    color          : var(--color-text-muted);
    margin-bottom  : 32px;
}

/* ==============================
   검색 박스
   ============================== */
.search-box-wrap {
    position       : relative;
    margin-bottom  : 20px;
}

.search-box {
    display        : flex;
    align-items    : center;
    background     : var(--color-bg);
    border         : 2px solid var(--color-border);
    border-radius  : 50px;
    padding        : 4px 4px 4px 24px;
    transition     : border-color .2s, box-shadow .2s;
}
.search-box:focus-within {
    border-color   : var(--color-primary);
    box-shadow     : 0 0 0 4px rgba(99,102,241,.15);
}

.search-box--compact {
    border-radius  : var(--radius-lg);
    padding        : 4px 4px 4px 18px;
}

.search-box__input {
    flex           : 1;
    background     : transparent;
    border         : none;
    outline        : none;
    font-size      : 17px;
    color          : var(--color-text);
    font-family    : inherit;
    padding        : 10px 0;
    min-width      : 0;
}
.search-box__input::placeholder { color: #555; }

/* 검색 버튼 */
.search-box__btn {
    width          : 48px;
    height         : 48px;
    border-radius  : 50%;
    background     : var(--color-primary);
    border         : none;
    color          : #fff;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
    transition     : background .2s, transform .1s;
    cursor         : pointer;
}
.search-box__btn:hover  { background: var(--color-primary-h); }
.search-box__btn:active { transform: scale(.93); }

.search-box--compact .search-box__btn {
    width          : 40px;
    height         : 40px;
    border-radius  : var(--radius-md);
}

/* ==============================
   자동완성 드롭다운
   ============================== */
.search-suggest {
    position       : absolute;
    top            : calc(100% + 8px);
    left           : 0;
    right          : 0;
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-lg);
    box-shadow     : var(--shadow-md);
    z-index        : 300;
    overflow       : hidden;
    max-height     : 420px;
    overflow-y     : auto;
}

.suggest-section { padding: 8px 0; }
.suggest-section + .suggest-section {
    border-top     : 1px solid var(--color-border);
}

.suggest-section__label {
    font-size      : 11px;
    font-weight    : 700;
    color          : var(--color-text-muted);
    text-transform : uppercase;
    letter-spacing : .06em;
    padding        : 4px 16px 6px;
}

.suggest-item {
    display        : flex;
    align-items    : center;
    gap            : 10px;
    padding        : 10px 16px;
    font-size      : 14px;
    color          : var(--color-text);
    cursor         : pointer;
    transition     : background .1s;
    text-decoration: none;
}
.suggest-item:hover,
.suggest-item.focused { background: var(--color-surface-2); }

.suggest-icon  { font-size: 14px; flex-shrink: 0; }

.suggest-text  { flex: 1; }
.suggest-text strong { color: var(--color-primary); }

.suggest-count {
    font-size      : 12px;
    color          : var(--color-text-muted);
    flex-shrink    : 0;
}

.suggest-footer {
    display        : block;
    padding        : 10px 16px;
    font-size      : 13px;
    color          : var(--color-primary);
    border-top     : 1px solid var(--color-border);
    background     : var(--color-surface-2);
    text-decoration: none;
    text-align     : center;
    transition     : background .15s;
}
.suggest-footer:hover { background: var(--color-border); }
.suggest-footer strong { color: var(--color-text); }

/* ==============================
   인기검색어
   ============================== */
.hot-keywords {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 8px;
    flex-wrap      : wrap;
}

.hot-keywords__label {
    font-size      : 13px;
    color          : var(--color-text-muted);
    font-weight    : 600;
}
.hot-keywords__loading {
    font-size      : 13px;
    color          : var(--color-text-muted);
}

.hot-keyword-tag {
    display        : inline-flex;
    align-items    : center;
    gap            : 5px;
    padding        : 5px 12px;
    background     : var(--color-surface-2);
    border         : 1px solid var(--color-border);
    border-radius  : 20px;
    font-size      : 13px;
    color          : var(--color-text-muted);
    transition     : border-color .15s, color .15s, background .15s;
}
.hot-keyword-tag:hover {
    border-color   : var(--color-primary);
    color          : var(--color-primary);
    background     : rgba(99,102,241,.06);
}

.hot-keyword-rank {
    font-size      : 11px;
    font-weight    : 700;
    color          : var(--color-primary);
    min-width      : 14px;
    text-align     : center;
}

/* ==============================
   광고 래퍼
   ============================== */
.ad-wrap { overflow: hidden; }

.ad-wrap--header {
    width          : 100%;
    padding        : 12px 0 0;
    text-align     : center;
}

.ad-wrap--sidebar {
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-md);
    padding        : 12px;
    overflow       : hidden;
}

.ad-wrap--inline {
    margin         : 32px 0;
    padding        : 16px;
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-md);
    text-align     : center;
}

.ad-label {
    font-size      : 10px;
    color          : var(--color-text-muted);
    text-align     : right;
    margin-bottom  : 4px;
    letter-spacing : .06em;
    text-transform : uppercase;
}

/* ==============================
   메인 홈 바디 레이아웃
   ============================== */
.home-body {
    display        : flex;
    gap            : 32px;
    padding-top    : 40px;
    padding-bottom : 80px;
    align-items    : flex-start;
}

.home-main   { flex: 1; min-width: 0; }

.home-sidebar {
    width          : 260px;
    flex-shrink    : 0;
    position       : sticky;
    top            : 80px;
    display        : flex;
    flex-direction : column;
    gap            : 20px;
}

/* ==============================
   홈 섹션 공통
   ============================== */
.home-section { margin-bottom: 48px; }

.home-section__header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    margin-bottom  : 20px;
    padding-bottom : 12px;
    border-bottom  : 1px solid var(--color-border);
}

.home-section__title {
    font-size      : 18px;
    font-weight    : 700;
    color          : var(--color-text);
}

.home-section__more {
    font-size      : 13px;
    color          : var(--color-primary);
    white-space    : nowrap;
}
.home-section__more:hover { text-decoration: underline; }

/* ==============================
   관리자 솔루션 카드 그리드
   ============================== */
.admin-post-grid {
    display        : grid;
    grid-template-columns: repeat(3, 1fr);
    gap            : 16px;
}

.admin-post-card {
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-lg);
    overflow       : hidden;
    display        : flex;
    flex-direction : column;
    transition     : border-color .2s, transform .2s, box-shadow .2s;
}
.admin-post-card:hover {
    border-color   : var(--color-primary);
    transform      : translateY(-3px);
    box-shadow     : var(--shadow-md);
}

.admin-post-card__thumb-link { display: block; }
.admin-post-card__thumb {
    position       : relative;
    width          : 100%;
    padding-top    : 56.25%;
    overflow       : hidden;
    background     : var(--color-surface-2);
}
.admin-post-card__thumb img {
    position       : absolute;
    inset          : 0;
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    transition     : transform .3s;
}
.admin-post-card:hover .admin-post-card__thumb img {
    transform      : scale(1.04);
}
.admin-post-card__thumb--empty {
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 36px;
}

/* YouTube 재생 배지 */
.admin-post-card__yt-badge {
    position       : absolute;
    top            : 50%;
    left           : 50%;
    transform      : translate(-50%, -50%);
    width          : 44px;
    height         : 44px;
    background     : rgba(0,0,0,.65);
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          : #fff;
    font-size      : 16px;
}

.admin-post-card__body {
    padding        : 14px 16px 16px;
    flex           : 1;
    display        : flex;
    flex-direction : column;
    gap            : 6px;
}

.admin-post-card__title {
    font-size      : 14px;
    font-weight    : 600;
    color          : var(--color-text);
    line-height    : 1.4;
}
.admin-post-card__title a { color: inherit; }
.admin-post-card__title a:hover { color: var(--color-primary); }

.admin-post-card__summary {
    font-size      : 12px;
    color          : var(--color-text-muted);
    line-height    : 1.6;
    flex           : 1;
}

.admin-post-card__meta {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    font-size      : 12px;
    color          : var(--color-text-muted);
    margin-top     : 4px;
}

/* ==============================
   인기 게시글 목록
   ============================== */
.hot-post-list {
    display        : flex;
    flex-direction : column;
    gap            : 1px;
}

.hot-post-item {
    display        : flex;
    align-items    : center;
    gap            : 14px;
    padding        : 14px 8px;
    border-bottom  : 1px solid var(--color-border);
    transition     : background .15s;
    border-radius  : var(--radius-sm);
    overflow       : hidden;
}
.hot-post-item:hover { background: var(--color-surface-2); }

.hot-post-rank {
    font-size      : 18px;
    font-weight    : 800;
    color          : var(--color-border);
    min-width      : 28px;
    text-align     : center;
    line-height    : 1.4;
    flex-shrink    : 0;
}
.hot-post-rank--top { color: var(--color-primary); }

/* 인기 게시글 썸네일 */
.hot-post-thumb {
    flex           : 0 0 52px;
    width          : 52px;
    height         : 52px;
    border-radius  : var(--radius-sm);
    overflow       : hidden;
    background     : var(--color-surface-2);
    position       : relative;
}
.hot-post-thumb img {
    position       : absolute;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    display        : block;
}

.hot-post-body { flex: 1; min-width: 0; }

.hot-post-title {
    display        : block;
    font-size      : 14px;
    font-weight    : 500;
    color          : var(--color-text);
    margin-bottom  : 4px;
    white-space    : nowrap;
    overflow       : hidden;
    text-overflow  : ellipsis;
}
.hot-post-title:hover { color: var(--color-primary); }

.hot-post-meta {
    display        : flex;
    align-items    : center;
    gap            : 8px;
    font-size      : 12px;
    color          : var(--color-text-muted);
}

.hot-post-board {
    background     : rgba(99,102,241,.1);
    color          : var(--color-primary);
    padding        : 1px 7px;
    border-radius  : var(--radius-sm);
    font-size      : 11px;
    font-weight    : 600;
}

/* ==============================
   게시판 최신글 그리드
   ============================== */
.board-overview-grid {
    display        : grid;
    grid-template-columns: repeat(3, 1fr);
    gap            : 16px;
}

.board-overview-card {
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-md);
    padding        : 16px;
}

.board-overview-card__header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    margin-bottom  : 12px;
    padding-bottom : 10px;
    border-bottom  : 1px solid var(--color-border);
}

.board-overview-card__name {
    font-size      : 14px;
    font-weight    : 700;
}
.board-overview-card__name a { color: var(--color-text); }
.board-overview-card__name a:hover { color: var(--color-primary); }

.board-overview-card__more {
    font-size      : 12px;
    color          : var(--color-text-muted);
}
.board-overview-card__more:hover { color: var(--color-primary); }

.board-overview-list {
    display        : flex;
    flex-direction : column;
    gap            : 8px;
}

.board-overview-item {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : 8px;
}

.board-overview-item__title {
    font-size      : 13px;
    color          : var(--color-text-muted);
    flex           : 1;
    white-space    : nowrap;
    overflow       : hidden;
    text-overflow  : ellipsis;
    transition     : color .15s;
}
.board-overview-item__title:hover { color: var(--color-text); }

.board-overview-item__likes {
    font-size      : 11px;
    color          : var(--color-text-muted);
    flex-shrink    : 0;
}

.board-overview-empty {
    font-size      : 13px;
    color          : var(--color-text-muted);
    text-align     : center;
    padding        : 12px 0;
}

/* ==============================
   홈 다운로드 그리드
   ============================== */
.home-dl-grid {
    display        : grid;
    grid-template-columns: repeat(2, 1fr);
    gap            : 8px;
}

.home-dl-card {
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-md);
    overflow       : hidden;
    display        : flex;
    flex-direction : row;
    align-items    : center;
    gap            : 10px;
    padding        : 10px 12px;
    transition     : border-color .2s, transform .15s;
    text-decoration: none;
}
.home-dl-card:hover {
    border-color   : var(--color-primary);
    transform      : translateY(-2px);
}

.home-dl-card__thumb {
    width          : 48px;
    height         : 48px;
    flex-shrink    : 0;
    border-radius  : var(--radius-sm);
    overflow       : hidden;
    background     : var(--color-surface-2);
    position       : relative;
}
.home-dl-card__thumb img {
    position       : absolute;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    display        : block;
}
.home-dl-card__thumb--empty {
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 20px;
}

.home-dl-card__info {
    flex           : 1;
    min-width      : 0;
    padding        : 0;
}

.home-dl-card__name {
    font-size      : 13px;
    font-weight    : 600;
    color          : var(--color-text);
    line-height    : 1.4;
    margin-bottom  : 2px;
    white-space    : nowrap;
    overflow       : hidden;
    text-overflow  : ellipsis;
}
.home-dl-card__desc {
    font-size      : 11px;
    color          : var(--color-text-muted);
    margin-bottom  : 2px;
    white-space    : nowrap;
    overflow       : hidden;
    text-overflow  : ellipsis;
}
.home-dl-card__meta {
    font-size      : 11px;
    color          : var(--color-text-muted);
}

/* ==============================
   검색 결과 페이지 상단 바
   ============================== */
.search-bar-wrap {
    background     : var(--color-surface);
    border-bottom  : 1px solid var(--color-border);
    padding        : 16px 0;
    position       : sticky;
    top            : 60px;
    z-index        : 50;
    backdrop-filter: blur(8px);
}

.search-bar-wrap .container {
    display        : flex;
    align-items    : center;
    gap            : 20px;
    flex-wrap      : wrap;
}

.search-box-wrap--compact { flex: 1; max-width: 520px; margin-bottom: 0; }

.search-type-tabs {
    display        : flex;
    gap            : 4px;
}

.search-type-tab {
    padding        : 6px 14px;
    border-radius  : 20px;
    font-size      : 13px;
    color          : var(--color-text-muted);
    border         : 1px solid transparent;
    transition     : background .15s, color .15s;
    white-space    : nowrap;
}
.search-type-tab:hover  { background: var(--color-surface-2); color: var(--color-text); }
.search-type-tab.active {
    background     : var(--color-primary);
    color          : #fff;
    font-weight    : 600;
}

/* ==============================
   검색 결과 레이아웃
   ============================== */
.search-body {
    padding-top    : 32px;
    padding-bottom : 80px;
}

.search-results-layout {
    display        : flex;
    gap            : 32px;
    align-items    : flex-start;
}

.search-results-main { flex: 1; min-width: 0; }

.search-sidebar {
    width          : 260px;
    flex-shrink    : 0;
    position       : sticky;
    top            : 130px;
}

/* 검색 결과 섹션 */
.search-results-section { margin-bottom: 40px; }

.search-results-section__title {
    font-size      : 16px;
    font-weight    : 700;
    color          : var(--color-text);
    margin-bottom  : 16px;
    padding-bottom : 10px;
    border-bottom  : 1px solid var(--color-border);
    display        : flex;
    align-items    : center;
    gap            : 8px;
}

.result-count-badge {
    font-size      : 13px;
    font-weight    : 400;
    color          : var(--color-text-muted);
    background     : var(--color-surface-2);
    padding        : 2px 8px;
    border-radius  : 20px;
}

/* 솔루션 검색 결과 카드 그리드 */
.search-admin-grid {
    display        : grid;
    grid-template-columns: repeat(2, 1fr);
    gap            : 16px;
    margin-bottom  : 24px;
}

.search-admin-card {
    background     : var(--color-surface);
    border         : 1px solid var(--color-border);
    border-radius  : var(--radius-lg);
    overflow       : hidden;
    display        : flex;
    gap            : 0;
    flex-direction : column;
    transition     : border-color .2s, transform .15s;
}
.search-admin-card:hover {
    border-color   : var(--color-primary);
    transform      : translateY(-2px);
}

.search-admin-card__thumb-link { display: block; }
.search-admin-card__thumb {
    position       : relative;
    padding-top    : 52%;
    overflow       : hidden;
    background     : var(--color-surface-2);
}
.search-admin-card__thumb img {
    position       : absolute;
    inset          : 0;
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    transition     : transform .3s;
}
.search-admin-card:hover .search-admin-card__thumb img { transform: scale(1.04); }

.search-admin-card__thumb--empty {
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 32px;
}

.search-admin-card__yt-badge {
    position       : absolute;
    top            : 50%;
    left           : 50%;
    transform      : translate(-50%, -50%);
    width          : 38px;
    height         : 38px;
    background     : rgba(0,0,0,.6);
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          : #fff;
    font-size      : 14px;
}

.search-admin-card__body {
    padding        : 14px 16px 16px;
    display        : flex;
    flex-direction : column;
    gap            : 6px;
    flex           : 1;
}

.search-admin-card__title {
    font-size      : 14px;
    font-weight    : 600;
    color          : var(--color-text);
    line-height    : 1.4;
}
.search-admin-card__title a { color: inherit; }
.search-admin-card__title a:hover { color: var(--color-primary); }
.search-admin-card__title mark { background: rgba(99,102,241,.2); color: var(--color-primary); border-radius: 2px; }

.search-admin-card__summary {
    font-size      : 12px;
    color          : var(--color-text-muted);
    line-height    : 1.6;
    flex           : 1;
}
.search-admin-card__summary mark { background: rgba(99,102,241,.15); color: var(--color-primary); }

.search-admin-card__meta {
    display        : flex;
    justify-content: space-between;
    font-size      : 12px;
    color          : var(--color-text-muted);
}

/* 커뮤니티 검색 결과 목록 */
.search-comm-list {
    display        : flex;
    flex-direction : column;
    gap            : 1px;
}

.search-comm-item {
    border-bottom  : 1px solid var(--color-border);
}

.search-comm-item__link {
    display        : flex;
    padding        : 14px 8px;
    transition     : background .15s;
    border-radius  : var(--radius-sm);
}
.search-comm-item__link:hover { background: var(--color-surface-2); }

.search-comm-item__body { flex: 1; min-width: 0; }

.search-comm-item__top {
    display        : flex;
    align-items    : center;
    gap            : 8px;
    margin-bottom  : 4px;
    flex-wrap      : wrap;
}

.search-comm-item__board {
    display        : inline-block;
    padding        : 2px 7px;
    background     : rgba(99,102,241,.1);
    color          : var(--color-primary);
    border-radius  : var(--radius-sm);
    font-size      : 11px;
    font-weight    : 700;
    flex-shrink    : 0;
}

.search-comm-item__title {
    font-size      : 14px;
    font-weight    : 500;
    color          : var(--color-text);
}
.search-comm-item__title mark {
    background     : rgba(99,102,241,.15);
    color          : var(--color-primary);
    border-radius  : 2px;
}

.search-comm-item__meta {
    display        : flex;
    align-items    : center;
    gap            : 8px;
    font-size      : 12px;
    color          : var(--color-text-muted);
    flex-wrap      : wrap;
}

/* ==============================
   단일 관리자 게시물 상세 뷰
   ============================== */
.admin-detail-view {
    max-width      : 800px;
    margin         : 0 auto;
    padding-bottom : 60px;
}

.back-link {
    display        : inline-block;
    font-size      : 13px;
    color          : var(--color-text-muted);
    margin-bottom  : 20px;
    transition     : color .15s;
}
.back-link:hover { color: var(--color-primary); }

.admin-detail-view__header {
    margin-bottom  : 28px;
    padding-bottom : 20px;
    border-bottom  : 1px solid var(--color-border);
}

.admin-detail-view__title {
    font-size      : 28px;
    font-weight    : 700;
    line-height    : 1.35;
    color          : var(--color-text);
    margin-bottom  : 12px;
    word-break     : keep-all;
}

.admin-detail-view__summary {
    font-size      : 16px;
    color          : var(--color-text-muted);
    line-height    : 1.65;
    margin-bottom  : 12px;
}

.admin-detail-view__meta {
    display        : flex;
    gap            : 16px;
    font-size      : 13px;
    color          : var(--color-text-muted);
}

.admin-detail-view__thumb {
    margin-bottom  : 24px;
    border-radius  : var(--radius-md);
    overflow       : hidden;
}
.admin-detail-view__thumb img { width: 100%; }

.admin-detail-view__youtube { margin-bottom: 24px; }
.admin-detail-view__youtube .youtube-embed-wrap {
    border-radius  : var(--radius-md);
    overflow       : hidden;
}

.admin-detail-view__pdf { margin-bottom: 24px; }

.admin-detail-view__body {
    font-size      : 16px;
    line-height    : 1.85;
    color          : var(--color-text);
}
.admin-detail-view__body h2 { font-size: 22px; margin: 28px 0 12px; }
.admin-detail-view__body h3 { font-size: 18px; margin: 22px 0 10px; }
.admin-detail-view__body p  { margin-bottom: 14px; }
.admin-detail-view__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 12px 0; }
.admin-detail-view__body a  { color: var(--color-primary); text-decoration: underline; }
.admin-detail-view__body blockquote {
    border-left    : 3px solid var(--color-primary);
    padding        : 10px 18px;
    color          : var(--color-text-muted);
    background     : var(--color-surface);
    border-radius  : 0 var(--radius-sm) var(--radius-sm) 0;
    margin         : 16px 0;
}

/* ==============================
   빈 상태 / 오류 화면
   ============================== */
.search-empty-state {
    text-align     : center;
    padding        : 80px 20px;
}
.search-empty-icon { font-size: 56px; margin-bottom: 16px; }
.search-empty-text {
    font-size      : 18px;
    font-weight    : 600;
    color          : var(--color-text);
    margin-bottom  : 8px;
}
.search-empty-sub {
    font-size      : 14px;
    color          : var(--color-text-muted);
}

/* ==============================
   반응형
   ============================== */
@media (max-width: 1024px) {
    .admin-post-grid     { grid-template-columns: repeat(2, 1fr); }
    .board-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .search-admin-grid   { grid-template-columns: 1fr; }
    .home-sidebar        { display: none; }
    .search-sidebar      { display: none; }
}

@media (max-width: 768px) {
    .hero-headline       { font-size: 26px; }
    .hero-sub            { font-size: 14px; }
    .hero-inner          { padding-top: 40px; }
    .search-box__input   { font-size: 15px; }
    .home-body           { flex-direction: column; padding-top: 24px; }
    .search-results-layout { flex-direction: column; }
    .search-bar-wrap .container { flex-direction: column; align-items: flex-start; }
    .search-box-wrap--compact { max-width: 100%; }
}

@media (max-width: 600px) {
    .admin-post-grid     { grid-template-columns: repeat(2, 1fr); }
    .board-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .home-dl-grid        { grid-template-columns: 1fr; }
    .admin-detail-view__title { font-size: 22px; }
    .hot-keywords        { justify-content: flex-start; }
}