/* Training Plan spezifisches Styling */

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.training-card {
    background: #23262B;
    border: 1px solid #292D36;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(30,30,40,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.training-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(94,129,172,0.25);
}

.day-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8FBCBB;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #444851;
    padding-bottom: 0.4rem;
}

.section {
    margin-bottom: 0.8rem;
}

.section h6 {
    font-size: 0.9rem;
    color: #D8DEE9;
    margin-bottom: 0.3rem;
}

.section ul {
    padding-left: 1.2rem;
    margin: 0;
}

.section li {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    color: #ECEFF4;
}
