/* === Kommentarformular Styling === */
#respond {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 3rem auto;
    color: #333;
}

#respond h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #222;
}

#respond small a {
    font-size: 0.9rem;
    color: #888;
    text-decoration: underline;
}

.comment-notes {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.required {
    color: #d00;
    font-weight: bold;
}

textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

textarea:focus,
input:focus {
    border-color: var(--c8-color-nature-green);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form-cookies-consent {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.comment-form-cookies-consent input {
    margin-right: 0.5rem;
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit input[type="submit"] {
    background-color: var(--c8-color-nature-green);
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background-color: var(--c8-color-nature-green);
}

@media (max-width: 600px) {
    .row {
        display: block;
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.comment-form-policy, .comment-notes {
    font-size: 14px;
    line-height: 24px;
}
