.elementor-5972 .elementor-element.elementor-element-ff2b4c5{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-7d8f8a5 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  /* Farben für die Kurs-Karten (aus dem Stellenangebote-Bild) */
  --navy-dark: #272b4d;      
  --burgundy: #671e32;       
  --badge-bg: #fae8ec;       
  --badge-text: #b54060;     
  --text-muted: #666666;     
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 12px;

  /* Farben für Formular & Texte (aus der HTML-Vorlage) */
  --green: #3f4a2c;
  --green-dark: #2f3821;
  --terra: #a65d2b;
  --line: #d7c6ae;
}

/* --- Allgemeiner Container --- */
.kurs-section-wrapper {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
}

/* --- 1. Header-Bereich (Texte über den Kursen) --- */
.eyebrow {
    color: #e889a9;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .86rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    margin: 0 0 10px 0;
    color: #2d3561;
    font-weight: 800;
}

.hint {
    color: var(--text-muted);
    max-width: 560px;
    margin: 8px 0 30px;
    line-height: 1.5;
}

/* --- 2. Das Kurs-Grid & Die Karten --- */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.course-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
}

/* Bild-Bereich der Karte */
.course-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5efe5; /* Fallback-Farbe, falls das Bild lädt */
}

.course-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.badge {
    align-self: flex-start;
    background: var(--badge-bg);
    color: var(--badge-text);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.75rem;
}

.course-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
    color: var(--navy-dark);
    font-weight: 700;
}

.course-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.course-meta span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.course-meta svg {
    color: var(--navy-dark);
    opacity: 0.7;
}

.price {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--navy-dark);
    margin-top: 5px;
}

.course-actions {
    margin-top: auto;
    display: flex;
    padding-top: 10px;
}

/* Kurs-Button ("Jetzt anmelden") */
.small-btn {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: var(--burgundy);
    color: #ffffff;
    font-size: 0.95rem;
    transition: background 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Hover-Effekt: Der gewünschte Farbton #a72428 */
.small-btn:hover {
    background: #a72428;
    color: #ffffff;
}

/* --- 3. Formular-Bereich (unten) --- */
.anmelde-section {
    margin-top: 60px;
    padding-top: 40px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    margin-top: 22px;
    line-height: 1.6;
    color: var(--text-muted);
}

.info-box strong {
    color: var(--green-dark);
}

.form-wrap {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-wrap form {
    display: grid;
    gap: 16px;
}

.form-wrap label {
    font-weight: 800;
    color: var(--green-dark);
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-wrap input, 
.form-wrap select, 
.form-wrap textarea {
    width: 100%;
    border: 1px solid #cfc4b6;
    border-radius: 14px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: #242424;
}

.form-wrap textarea {
    min-height: 110px;
    resize: vertical;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .94rem;
    color: #444;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.notice {
    font-size: .9rem;
    color: #555;
    background: #f8f3eb;
    border-left: 4px solid var(--terra);
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

/* Absende-Button des Formulars */
.submit {
    border: 0;
    border-radius: 999px;
    background: #631627;
    color: white;
    font-weight: 900;
    padding: 15px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
}

.submit:hover {
    background: #a72428; /* Auch hier der neue Hover-Farbton */
}

/* --- Mobile Ansicht (Responsive) --- */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ff2b4c5 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  /* Farben für die Kurs-Karten (aus dem Stellenangebote-Bild) */
  --navy-dark: #272b4d;      
  --burgundy: #671e32;       
  --badge-bg: #fae8ec;       
  --badge-text: #b54060;     
  --text-muted: #666666;     
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 12px;

  /* Farben für Formular & Texte (aus der HTML-Vorlage) */
  --green: #3f4a2c;
  --green-dark: #2f3821;
  --terra: #a65d2b;
  --line: #d7c6ae;
}

/* --- Allgemeiner Container --- */
.kurs-section-wrapper {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
}

/* --- 1. Header-Bereich (Texte über den Kursen) --- */
.eyebrow {
    color: #e889a9;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .86rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    margin: 0 0 10px 0;
    color: #2d3561;
    font-weight: 800;
}

.hint {
    color: var(--text-muted);
    max-width: 560px;
    margin: 8px 0 30px;
    line-height: 1.5;
}

/* --- 2. Das Kurs-Grid & Die Karten --- */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.course-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
}

/* Bild-Bereich der Karte */
.course-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5efe5; /* Fallback-Farbe, falls das Bild lädt */
}

.course-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.badge {
    align-self: flex-start;
    background: var(--badge-bg);
    color: var(--badge-text);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.75rem;
}

.course-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
    color: var(--navy-dark);
    font-weight: 700;
}

.course-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.course-meta span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.course-meta svg {
    color: var(--navy-dark);
    opacity: 0.7;
}

.price {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--navy-dark);
    margin-top: 5px;
}

.course-actions {
    margin-top: auto;
    display: flex;
    padding-top: 10px;
}

/* Kurs-Button ("Jetzt anmelden") */
.small-btn {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: var(--burgundy);
    color: #ffffff;
    font-size: 0.95rem;
    transition: background 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Hover-Effekt: Der gewünschte Farbton #a72428 */
.small-btn:hover {
    background: #a72428;
    color: #ffffff;
}

/* --- 3. Formular-Bereich (unten) --- */
.anmelde-section {
    margin-top: 60px;
    padding-top: 40px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    margin-top: 22px;
    line-height: 1.6;
    color: var(--text-muted);
}

.info-box strong {
    color: var(--green-dark);
}

.form-wrap {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-wrap form {
    display: grid;
    gap: 16px;
}

.form-wrap label {
    font-weight: 800;
    color: var(--green-dark);
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-wrap input, 
.form-wrap select, 
.form-wrap textarea {
    width: 100%;
    border: 1px solid #cfc4b6;
    border-radius: 14px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: #242424;
}

.form-wrap textarea {
    min-height: 110px;
    resize: vertical;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .94rem;
    color: #444;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.notice {
    font-size: .9rem;
    color: #555;
    background: #f8f3eb;
    border-left: 4px solid var(--terra);
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

/* Absende-Button des Formulars */
.submit {
    border: 0;
    border-radius: 999px;
    background: #631627;
    color: white;
    font-weight: 900;
    padding: 15px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
}

.submit:hover {
    background: #a72428; /* Auch hier der neue Hover-Farbton */
}

/* --- Mobile Ansicht (Responsive) --- */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */