/* =====================================================================
   Overview "Eigene Tests erstellen" - Wegweiser / Weiterleitung
   Praefix: oct- (overview create tests), um Konflikte zu vermeiden.
   Sachlich/informativ gehalten - bewusst KEINE Marketing-Optik.
   ===================================================================== */

.oct-guide {
    margin: 1.5rem 0 2rem;
}

.oct-guide__lead {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 0 1.5rem;
}

/* Karten untereinander */
.oct-guide__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top:var(--sp-m);
}

.oct-guide__item {
    display: flex;
    gap: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.6rem 1.75rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.oct-guide__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oct-guide__icon svg {
    width: 24px;
    height: 24px;
    fill: #1f4c83;
}

.oct-guide__content {
    flex: 1;
    min-width: 0;
}

.oct-guide__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f4c83;
    margin: 0 0 0.45rem;
}

.oct-guide__desc {
    color: #475569;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.oct-guide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1f4c83;
    font-weight: 600;
    text-decoration: none;
    background-color: #f0f7ff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.oct-guide__link:hover {
    background-color: #1f4c83;
    color: #ffffff;
}

.oct-guide__link svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* =====================================================================
   Mobil
   ===================================================================== */
@media (max-width: 767px) {
    .oct-guide__item {
        flex-direction: column;
        gap: 0.9rem;
    }
}
