.check-cards {
    padding: 40px 0;
}

.check-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 24px;
}

.check-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.check-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.check-card-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.check-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fef9e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.check-card-icon img {
    max-width: 32px;
    max-height: 32px;
}

.check-card-title {
    color: var(--primary-color);
    margin: 0 !important;
}

.check-card-text {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.check-cards--accent .check-card {
    border-left: 5px solid var(--yellow-color);
}

.check-cards--accent .check-card-num,
.check-cards--accent .check-card-icon {
    display: none;
}

@media (max-width: 768px) {
    .check-cards-grid {
        grid-template-columns: 1fr;
    }
}