/* ===== Elternzeitvertretung, Prefix: ezv- =====
   Am 2026-09-05 aus style.css herausgeloest, mit postcss. Der Block lag
   dort und wurde auf allen Seiten mitgeladen, obwohl ihn genau eine
   braucht. Reine Verlagerung: die berechneten Stile der Seite sind vorher
   und nachher identisch.
   ================================================================== */


.ezv-timeline {
    position: relative;
    padding-left: 2.5rem;
}
.ezv-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.ezv-timeline-item {
    position: relative;
    padding: 0 0 2rem 1.5rem;
}
.ezv-timeline-item:last-child { padding-bottom: 0; }
.ezv-timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-light);
}
.ezv-timeline-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.ezv-timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.ezv-timeline-desc {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.6;
    margin: 0;
}
.ezv-timeline-tag {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-teal);
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
}
.ezv-tasks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem 2.5rem;
}
.ezv-task-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.ezv-task-item:nth-last-child(-n+2) { border-bottom: none; }
.ezv-task-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-teal);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ezv-task-check svg { width: 12px; height: 12px; }
.ezv-task-item span { font-size: 0.93rem; color: var(--body); line-height: 1.6; }
.ezv-worry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ezv-worry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}
.ezv-worry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}
.ezv-worry-icon { font-size: 1.75rem; margin-bottom: 0.75rem; line-height: 1; }
.ezv-worry-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.ezv-worry-card p { font-size: 0.87rem; color: var(--body); line-height: 1.6; margin: 0; }
.ezv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.ezv-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ezv-calendar-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    padding: 1.5rem;
}
.ezv-calendar-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.ezv-calendar-subtitle {
    font-size: 0.76rem;
    /* Sitzt auf der dunklen Kalender-Figur, nicht auf hellem Grund:
       --muted kaeme hier auf 2,35:1. */
    color: var(--white);
    margin-bottom: 0.75rem;
}
.ezv-calendar-row {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}
.ezv-cal-day {
    flex: 1;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--white);
}
.ezv-cal-day.ezv-cal-highlight { background: rgba(11, 110, 100,0.35); color: var(--primary-glow); font-weight: 600; }
.ezv-cal-day.ezv-cal-muted { opacity: 0.4; }
.ezv-calendar-confirm {
    font-size: 0.75rem;
    color: var(--primary-glow);
    margin: 0.6rem 0 0;
    font-weight: 600;
}
.ezv-transfer-badge {
    background: rgba(11, 110, 100,0.2);
    border: 1px solid rgba(11, 110, 100,0.4);
    border-radius: 3px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ezv-transfer-badge--muted {
    background: rgba(255,255,255,0.05);
}
.ezv-transfer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 110, 100,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ezv-transfer-icon svg { width: 20px; height: 20px; color: var(--primary-glow); }
.ezv-transfer-icon--muted { background: rgba(255,255,255,0.12); }
.ezv-transfer-icon--muted svg { color: var(--on-dark); }
.ezv-transfer-text { font-size: 0.87rem; color: var(--border); line-height: 1.55; }
.ezv-transfer-text strong { color: var(--primary-glow); }
.ezv-transfer-text--muted { color: var(--white); }
.ezv-transfer-laufzeit { color: var(--border); }
.ezv-when-box {
    background: var(--bg-teal);
    border-radius: 3px;
    padding: 2rem;
    position: sticky;
    top: 120px;
}
.ezv-when-box-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}
.ezv-when-box-body {
    font-size: 0.93rem;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.ezv-when-box-p { margin: 0 0 0.75rem; }
.ezv-when-box-p:last-child { margin-bottom: 0; }
@media (max-width: 1024px) {
    .ezv-worry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ezv-split { grid-template-columns: 1fr; }
    .ezv-tasks-grid { grid-template-columns: 1fr; }
    .ezv-worry-grid { grid-template-columns: 1fr; }
    .ezv-hero-visual { display: none; }
}
