.nz8uc1mNry {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.sjwh-game-block__heading {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.sjwh-game-block__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none !important;
    margin: 0 0 2rem;
    padding: 0;
    border: 0;
}

.sjwh-game-block__nav-item {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.sjwh-game-block__nav-item::marker {
    content: '' !important;
}

.sjwh-game-block__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sjwh-game-block__nav-link:hover {
    opacity: 0.8;
}

.sjwh-game-block__nav-link.active,
.sjwh-game-block__nav-link--active {
    border-bottom-color: currentColor;
    font-weight: 600;
}

.sjwh-game-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sjwh-game-block__icon svg {
    width: 25px;
    height: 24px;
    display: block;
}

.sjwh-game-block__body {
    position: relative;
}

.sjwh-game-block__tab {
    display: none;
}

.sjwh-game-block__tab.active,
.sjwh-game-block__tab--active {
    display: block;
}

.sjwh-game-block__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(263px, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sjwh-game-block__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.sjwh-game-block__item-content {
    padding: 1rem;
}

.sjwh-game-block__item:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.sjwh-game-block__item-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.sjwh-game-block__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sjwh-game-block__item-content {
    padding: 0.75rem 0;
}

.sjwh-game-block__item span {
    display: block;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.sjwh-game-block__item small {
    display: block;
    margin-top: 0;
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .sjwh-game-block__nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sjwh-game-block__nav::-webkit-scrollbar {
        display: none;
    }

    .sjwh-game-block__nav-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .sjwh-game-block__list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}



