.sjwh-bonus-block__section {
    width: 100%;
}

.sjwh-bonus-block__heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sjwh-bonus-block__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sjwh-bonus-block__item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sjwh-bonus-block__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sjwh-bonus-block__img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.sjwh-bonus-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sjwh-bonus-block__bottom {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sjwh-bonus-block__category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #666;
    align-self: flex-start;
}

.sjwh-bonus-block__bet {
    display: flex;
    align-items: center;
    min-height: 1.5rem;
}

.sjwh-bonus-block__bet span {
    display: block;
}

.sjwh-bonus-block__text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sjwh-bonus-block__text:hover {
    color: #0073aa;
}

.sjwh-bonus-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.sjwh-bonus-block__button:hover {
    background-color: #005a87;
    color: #fff;
}

@media (max-width: 768px) {
    .sjwh-bonus-block__container {
        grid-template-columns: 1fr;
    }
}

