.regulamin-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.regulamin-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
    margin-top:10px;
}

.regulamin-image-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.regulamin-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.regulamin-content {
    flex-grow: 1;
}

.regulamin-content h2 {
    font-size: 18px;
    margin: 5px 0;
}

.regulamin-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.regulamin-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin: 10px 0 !important;
}

@media (max-width: 768px) {
    .regulamin-item {
        flex-direction: column;
        text-align: center;
    }

    .regulamin-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
