.custom-cards-block {
    padding: 40px 20px;
    transition: background-color 0.3s ease;
}

.custom-cards-block.bg-white {
    background-color: #ffffff;
}

.custom-cards-block.bg-gray {
    background-color: #f5f5f5;
}

.block-header {
    text-align: center;
    margin-bottom: 30px;
}

.block-title {
    font-size: 32px;
    color: #333;
    margin: 0;
}

.block-image {
    text-align: center;
    margin-bottom: 30px;
}

.block-image img {
    max-width: 100%;
    height: auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
}

.card-image {
    text-align: center;
    margin-bottom: 15px;
}

.card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.card-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
}

.card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .block-title {
        font-size: 24px;
    }
}