.elementor-17279 .elementor-element.elementor-element-2bd090e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-17279 .elementor-element.elementor-element-551b9b4{text-align:center;}.elementor-17279 .elementor-element.elementor-element-750be01{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-17279 .elementor-element.elementor-element-35d1f33 > .elementor-widget-container{margin:0px 300px 0px 300px;}.elementor-17279 .elementor-element.elementor-element-35d1f33.elementor-element{--align-self:center;}.elementor-17279 .elementor-element.elementor-element-35d1f33{text-align:center;}.elementor-17279 .elementor-element.elementor-element-2e46a80{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-5442f19 *//* ===== Elegante Grundstile ===== */
:root {
    --primary: #00A7C9;
    --primary-dark: #0088a9;
    --secondary: #2c6ecb;
    --light-bg: #f8fbfe;
    --card-bg: #ffffff;
    --text: #333;
    --text-light: #5a6d88;
    --accent-red: #e74c3c;
    --accent-green: #27ae60;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background-color: #f9fcff;
    color: var(--text);
    line-height: 1.6;
}

.autonomy-materials-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    min-height: calc(100vh - 120px);
    box-sizing: border-box;
    position: relative;
}

/* ===== Schlanker Header ===== */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0f0ff;
}

.page-title {
    color: #00A7C9;
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.intro-box {
    max-width: 780px;
    margin: 0 auto;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.archive-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.archive-link:hover {
    text-decoration: underline;
}

/* ===== Materialsektionen ===== */
.material-section {
    margin: 50px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8f0fe;
}

.section-title {
    font-size: 1.8rem;
    color: #00A7C9;
    font-weight: 600;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* ===== Elegante Materialkarten ===== */
.material-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e1ecfe;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.material-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 119, 204, 0.15);
}

.card-header {
    padding: 18px 22px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.workshop-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.material-card h3 {
    font-size: 1.3rem;
    color: #00A7C9;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-right: 80px;
    margin-top: 0;
}

.author {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.author i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

.card-content {
    padding: 0 22px;
    flex-grow: 1;
}

.material-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-footer {
    padding: 0 22px 22px;
}

.download-btn, .presentation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff !important; /* Bright white text color */
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
}

.download-btn:hover, .presentation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 167, 201, 0.3);
    color: #ffffff !important; /* Ensure text stays white on hover */
}

.download-btn i, .presentation-btn i {
    margin-right: 8px;
    color: #ffffff !important; /* Bright white icon color */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .material-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Zusätzliche Stile für Präsentations-Buttons */
.presentation-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #ffffff !important;
}

.presentation-btn i {
    color: #ffffff !important;
}

/* Archive Section Styles */
.archive-section {
    text-align: center;
    margin: 60px 0 30px;
}

.archive-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.archive-btn:hover {
    background: #f0f9ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 167, 201, 0.2);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.archive-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Challenging Section */
.challenging-section {
    background: linear-gradient(135deg, #fff8f7, #fff0ee);
    border-radius: 14px;
    padding: 35px;
    margin: 50px 0;
    border: 1px solid #ffece8;
}

.challenging-title {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .material-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .page-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.9rem;
    }
    
    .intro-box {
        padding: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-icon {
        margin: 0 auto 15px;
    }
    
    .material-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .challenging-section {
        padding: 25px 20px;
    }
    
    .archive-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.7rem;
    }
    
    .section-title, .challenging-title {
        font-size: 1.5rem;
    }
    
    .material-card h3 {
        font-size: 1.2rem;
    }
}/* End custom CSS */