/* ============================================
   Content Pages - Gemeinsame Styles
   ============================================ */

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, #aeccd1 0%, #429393 100%);
    color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.hero-section h1 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.hero-section h2 {
    color: #e3f2fd;
    font-size: 1.4em;
    margin-bottom: 25px;
}

.hero-content-box {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.hero-header {
    color: rgba(81, 135, 45, 0.72);
    font-size: 2.2em;
    margin-bottom: 20px;
}


/* Section Headers */
.section-header {
    color: #5e8187;
    margin-bottom: 25px;
}

.section-header-center {
    color: #5e8187;
    margin-bottom: 25px;
    text-align: center;
}

/* Cards */
.skill-card {
    border: 2px solid #5e8187;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-card-header {
    background: linear-gradient(135deg, #5e8187 0%, #7a9196 100%);
    color: white;
    border-radius: 4px 8px 0 0;
}

.skill-card-green {
    border: 2px solid #6d8a83;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-card-header-green {
    background: linear-gradient(135deg, #6d8a83 0%, #7a9691 100%);
    color: white;
    border-radius: 4px 4px 0 0;
}

.skill-card-gray {
    border: 2px solid #7a8a92;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-card-header-gray {
    background: linear-gradient(135deg, #7a8a92 0%, #8a989e 100%);
    color: white;
    border-radius: 4px 8px 0 0;
}

/* Icons */
.icon-primary { color: #5e8187; }
.icon-green { color: #6d8a83; }
.icon-gray { color: #7a8a92; }
.icon-olive { color: #8a8f7a; }

/* Call-to-Action */
.cta-section {
    background: linear-gradient(135deg, #5e8187 0%, #889a9a 100%);
    color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
}

.cta-section h3 {
    color: white;
    margin-bottom: 20px;
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.bg-gradient-white {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* Border Highlights */
.border-left-primary {
    border-left: 5px solid #5e8187;
}

.border-left-blue {
    border-left: 5px solid #2196f3;
}

.border-left-purple {
    border-left: 5px solid #9c27b0;
}

.border-left-orange {
    border-left: 5px solid #8a8f7a;
}

/* Alert Boxes */
.alert-info-custom {
    border-left: 5px solid #2196f3;
    background: #e3f2fd;
}

.alert-warning-custom {
    border-left: 5px solid #8a8f7a;
    background: #fff8e1;
}

/* Related Links Section */
.related-section {
    padding: 20px;
    background: #f8f9fa;
}

/* Role Cards (smaller, icon-focused) */
.role-card {
    border: 2px solid #5e8187;
    text-align: center;
}

.role-card-green { border: 2px solid #6d8a83; }
.role-card-gray { border: 2px solid #7a8a92; }
.role-card-orange { border: 2px solid #8a8f7a; }
.role-card-blue { border: 2px solid #2196f3; }
.role-card-purple { border: 2px solid #9c27b0; }

/* System Category Cards */
.system-card-purple {
    border: 2px solid #9c27b0;
    border-radius: 8px;
}

.system-card-header-purple {
    background: #9c27b0;
    color: white;
}

.system-card-blue {
    border: 2px solid #2196f3;
    border-radius: 8px;
}

.system-card-header-blue {
    background: #2196f3;
    color: white;
}

.system-card-orange {
    border: 2px solid #8a8f7a;
    border-radius: 8px;
}

.system-card-header-orange {
    background: #8a8f7a;
    color: white;
}

.system-card-green {
    border: 2px solid #6d8a83;
    border-radius: 8px;
}

.system-card-header-green {
    background: #6d8a83;
    color: white;
}

/* Utility Classes */
.mb-30 { margin-bottom: 30px; }
.p-30 { padding: 30px; }
.p-25 { padding: 25px; }
.border-radius-8 { border-radius: 8px; }
.border-radius-10 { border-radius: 10px; }
