.ft_reise_portal {
    max-width: 860px;
}

.ft_reise_form {
    margin-top: 14px;
    padding: 20px;
    border: 1px solid #e7d7d3;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #fcf8f7 100%);
    box-shadow: 0 8px 20px rgba(103, 24, 4, 0.08);
}

.ft_reise_form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2b2b2b;
}

.ft_reise_form_input {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 11px 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
}

.ft_reise_form_input:focus {
    outline: none;
    border-color: #671804;
    box-shadow: 0 0 0 3px rgba(103, 24, 4, 0.15);
}

.ft_reise_form_button {
    border: 0;
    border-radius: 10px;
    padding: 11px 16px;
    background: #671804;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.05s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(103, 24, 4, 0.28);
}

.ft_reise_form_button:hover {
    background: #7d2109;
}

.ft_reise_form_button:active {
    transform: translateY(1px);
}

.ft_reise_form_button:focus-visible {
    outline: 2px solid #671804;
    outline-offset: 2px;
}

.ft_reise_list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ft_reise_list li {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
}

.ft_reise_list li strong {
    display: inline-block;
    margin-bottom: 6px;
}

.ft_reise_list a {
    font-weight: 600;
    color: #671804;
    text-decoration-color: rgba(103, 24, 4, 0.45);
}

.ft_reise_list a:hover {
    text-decoration-color: #671804;
}

@media (max-width: 767px) {
    .ft_reise_portal {
        max-width: 100%;
    }

    .ft_reise_portal h2 {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .ft_reise_form {
        margin-top: 10px;
        padding: 14px;
        border-radius: 10px;
    }

    .ft_reise_form_label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .ft_reise_form_input {
        padding: 10px 12px;
        border-radius: 9px;
        font-size: 16px; /* verhindert iOS-Zoom */
    }

    .ft_reise_form_button {
        width: 100%;
        padding: 12px 14px;
        border-radius: 9px;
    }

    .ft_reise_list {
        margin-top: 12px;
        gap: 10px;
    }

    .ft_reise_list li {
        padding: 12px 13px;
        border-radius: 9px;
    }
}
