/* Start custom CSS for shortcode, class: .elementor-element-b0b6855 */.admission-grid {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 0 15px;
}

.admission-grid h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.class-card {
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-name {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.class-count {
    font-size: 18px;
    font-weight: 600;
}

.available {
    border-top: 5px solid #0a8f3d;
}

.available .class-count {
    color: #0a8f3d;
}

.full {
    border-top: 5px solid #c40000;
}

.full .class-count {
    color: #c40000;
}

/* 📱 МОБІЛЬНА ВЕРСІЯ */
@media (max-width: 768px) {
    .grid-wrapper {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */