.search-shell-large {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 18px;
}

.search-shell-large input {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.search-shell-large button {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #ff8740);
    color: #fff;
    font-weight: 700;
}

.search-columns {
    display: grid;
    gap: 18px;
}

.search-result-section {
    display: grid;
    gap: 12px;
}

.search-game,
.search-article {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-game {
    grid-template-columns: 72px 1fr auto;
    align-items: center;
}

.search-game img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

.search-game-copy,
.search-article-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-game-copy p,
.search-article-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.search-article {
    grid-template-columns: 1fr;
}

.search-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 760px) {
    .search-shell-large {
        grid-template-columns: 1fr;
    }

    .search-game {
        grid-template-columns: 60px 1fr;
    }
}
