/* Training Module Cards - 6aadd3f6 */

.tmc-6aadd3f6-grid {
    display: grid;
    gap: 16px;
}

.tmc-6aadd3f6-cols-1 {
    grid-template-columns: 1fr;
}

.tmc-6aadd3f6-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.tmc-6aadd3f6-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tmc-6aadd3f6-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tmc-6aadd3f6-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tmc-6aadd3f6-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.tmc-6aadd3f6-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.5;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.tmc-6aadd3f6-card-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    z-index: 1;
}

.tmc-6aadd3f6-counter {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    border-color: #6366F1;
    color: #6366F1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.tmc-6aadd3f6-content {
    flex: 1;
    min-width: 0;
}

.tmc-6aadd3f6-title {
    font-size: 17px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
    line-height: 1.3;
}

.tmc-6aadd3f6-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .tmc-6aadd3f6-cols-3,
    .tmc-6aadd3f6-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tmc-6aadd3f6-cols-2,
    .tmc-6aadd3f6-cols-3,
    .tmc-6aadd3f6-cols-4 {
        grid-template-columns: 1fr;
    }
}
