/* ===================================================================
   AERONA SPACE – NIE ERSCHIENEN (Produkt-Friedhof)
   Eigenständiges Modul, wird direkt in discontinued.html eingebunden.
   Leitidee: Die Karten sind entsättigt ("erloschen") und bekommen
   beim Hover kurz ihre Farbe zurück.
   =================================================================== */

.dc-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 1.5rem 6rem;
}

/* ---------- Kopfbereich ---------- */

.dc-hero {
    text-align: center;
    margin-bottom: 4.5rem;
}

.dc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.6rem;
}

.dc-hero h1 {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: white;
    margin-bottom: 1.4rem;
}

.dc-hero h1 .dc-faded {
    background: linear-gradient(180deg, #64748b 0%, rgba(100, 116, 139, 0.35) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dc-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1.12rem;
    line-height: 1.85;
}

/* ---------- Hinweis-Kasten ---------- */

.dc-note {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    max-width: 760px;
    margin: 0 auto 4rem;
    padding: 1.4rem 1.6rem;
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.7;
}

.dc-note i {
    color: #60a5fa;
    font-size: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ---------- Karten-Raster ---------- */

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

.dc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.9rem 1.7rem 1.6rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.45s ease, opacity 0.45s ease, transform 0.35s ease,
        border-color 0.35s ease, box-shadow 0.35s ease;
}

.dc-card:hover,
.dc-card:focus-within {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Durchgestrichener Effekt oben auf der Karte */
.dc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: repeating-linear-gradient(135deg,
            transparent 0 14px,
            rgba(148, 163, 184, 0.035) 14px 15px);
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.dc-card:hover::before {
    opacity: 0;
}

.dc-card__icon {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 1.1rem;
}

.dc-card__name {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.dc-card__tagline {
    color: #64748b;
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.dc-card__desc {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

/* ---------- Status-Abzeichen ---------- */

.dc-status {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    padding: 4px 9px;
    border-radius: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dc-status--stopped {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.13);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dc-status--merged {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.13);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.dc-status--idea {
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

/* ---------- Fußzeile der Karte (Zeitraum) ---------- */

.dc-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #64748b;
    font-size: 0.83rem;
    font-weight: 500;
}

.dc-card__meta i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.dc-card__meta .dc-arrow {
    opacity: 0.45;
}

/* ---------- Platzhalter für kommende Einträge ---------- */

.dc-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
    padding: 2rem;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background: transparent;
    color: #475569;
    transition: border-color 0.35s ease, color 0.35s ease;
}

.dc-placeholder:hover {
    border-color: rgba(148, 163, 184, 0.38);
    color: #64748b;
}

.dc-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
    opacity: 0.55;
}

.dc-placeholder span {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 210px;
}

/* ---------- Abschluss ---------- */

.dc-outro {
    max-width: 640px;
    margin: 5rem auto 0;
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.85;
}

.dc-outro strong {
    color: #94a3b8;
    font-weight: 600;
}

/* ---------- Mobil ---------- */

@media (max-width: 768px) {
    .dc-main {
        padding: 5.5rem 1.1rem 4rem;
    }

    .dc-grid {
        grid-template-columns: 1fr;
    }

    /* Auf Touch-Geräten gibt es kein Hover – Karten direkt lesbar zeigen */
    .dc-card {
        filter: grayscale(0.55);
        opacity: 0.9;
    }

    .dc-note {
        margin-bottom: 3rem;
    }
}
