/**
 * search-result.css — 검색 결과 (/search) 반응형 단일 정의
 * .page-title/.page-subtitle/.directory-header는 boards.css에서 공유
 */
.search-results-page {
    padding-bottom: 60px;
    width: 100%;
}

.recommended-boards {
    margin: 24px 0 40px;
}

.section-hint {
    font-size: 13px;
    color: var(--text-muted, #999);
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-hint i {
    color: var(--primary-color, #49c48d);
    font-size: 14px;
    opacity: 0.7;
}

.board-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.board-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-glass, rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.board-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.board-info {
    flex: 1;
    min-width: 0;
}

.board-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 17px;
    margin-bottom: 4px;
    display: block;
}

.board-desc {
    display: block;
    max-width: 100%;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-card-arrow {
    display: none;
    color: var(--text-tertiary, var(--text-muted));
    flex-shrink: 0;
}

.post-results {
    margin-top: 20px;
}

.tag-pill.highlight {
    background-color: rgba(255, 149, 0, 0.15);
    color: #ff9500;
    font-weight: 700;
}

@media (max-width: 768px) {
    .search-results-page {
        padding-bottom: 24px;
    }

    .recommended-boards {
        margin: 12px 0 24px;
    }

    .board-card-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .board-card {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .board-card:hover {
        transform: none;
    }

    .board-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .board-name {
        font-size: 1.0625rem;
    }

    .board-desc {
        font-size: 0.8125rem;
    }

    .board-card-arrow {
        display: block;
        font-size: 0.875rem;
    }
}
