/* Schule Blocks – Download-Karte + Mail-Link
   Bewusst self-contained (keine Theme-Variablen), damit es ueberall passt. */

.tm-dl {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    margin: 1.2rem 0;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s ease, border-color .15s ease;
}
.tm-dl:hover {
    border-color: #c8c8c8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.tm-dl__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #6b7280;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.tm-dl__icon[data-ext="PDF"]  { background: #c0392b; }
.tm-dl__icon[data-ext="DOC"],
.tm-dl__icon[data-ext="DOCX"] { background: #2b579a; }
.tm-dl__icon[data-ext="XLS"],
.tm-dl__icon[data-ext="XLSX"] { background: #217346; }
.tm-dl__icon[data-ext="PPT"],
.tm-dl__icon[data-ext="PPTX"] { background: #c43e1c; }
.tm-dl__icon[data-ext="ZIP"]  { background: #b7791f; }
.tm-dl__icon[data-ext="JPG"],
.tm-dl__icon[data-ext="JPEG"],
.tm-dl__icon[data-ext="PNG"]  { background: #6d28d9; }

.tm-dl__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}
.tm-dl__title { font-weight: 600; line-height: 1.25; }
.tm-dl__meta  { font-size: .8rem; opacity: .7; margin-top: .15rem; }

.tm-dl__action {
    flex: 0 0 auto;
    font-size: .85rem;
    font-weight: 600;
    opacity: .8;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .tm-dl__action { display: none; }
}

/* Mail-Link bleibt optisch ein normaler Link; nur Wortumbruch verhindern. */
.tm-mail { white-space: nowrap; }
