/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 13 2025 | 11:49:02 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-icon img {
    max-width: 90px!important;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.2rem;
    margin: 0!important;
}

.card-desc {
    font-size: 1rem;
    color: #555;
}

.card-desc ul {
	padding: 0 25px;
}

.wp-post-image {
	border-radius: 12px!important;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
