/* ================================================================
   BLOCK: Hinweis / Ausschreibung
   ================================================================ */

.svs-notice {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border-left: 5px solid;
    margin: 1.5rem 0;
}

/* Typen */
.svs-notice--ausschreibung {
    background: #fffbeb;
    border-color: #f59e0b;
}
.svs-notice--info {
    background: #eff6ff;
    border-color: #3b82f6;
}
.svs-notice--warnung {
    background: #fff7ed;
    border-color: #f97316;
}
.svs-notice--placeholder {
    opacity: 0.6;
}

/* Icon */
.svs-notice__icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 3px;
}
.svs-notice--ausschreibung .svs-notice__icon { color: #f59e0b; }
.svs-notice--info          .svs-notice__icon { color: #3b82f6; }
.svs-notice--warnung       .svs-notice__icon { color: #f97316; }

/* Body */
.svs-notice__body {
    flex: 1;
    min-width: 0;
}

.svs-notice__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--text-dark, #1a1a1a);
}

.svs-notice__text {
    color: var(--secondary-color, #555);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Kontakt */
.svs-notice__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
}

.svs-notice__contact-name {
    font-weight: 600;
    color: var(--text-dark, #1a1a1a);
}

.svs-notice__contact-link {
    color: var(--highlight-color, #0066cc);
    text-decoration: none;
    font-weight: 500;
}
.svs-notice__contact-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 575px) {
    .svs-notice {
        gap: 1rem;
        padding: 1rem 1.1rem;
    }
    .svs-notice__icon {
        font-size: 1.3rem;
    }
    .svs-notice__contact {
        gap: 0.4rem 1rem;
    }
}
