/* Kommentar-spezifische Styles */
.comments-area {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.comments-title {
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
    background: linear-gradient(135deg, #4facfe, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
    padding: 25px 0;
    margin-bottom: 20px;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author {
    flex-shrink: 0;
}

.comment-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.comment-author .fn {
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
}

.comment-metadata a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-metadata a:hover {
    color: #4facfe;
}

.comment-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    transform: translateY(-1px);
}

/* Kommentar-Formular */
.comment-respond {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.comment-reply-title {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 20px;
}

.comment-form {
    display: grid;
    gap: 15px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3748;
}

.required {
    color: #e53e3e;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(79, 172, 254, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.15);
    outline: none;
    background: white;
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 1 / -1;
}

.comment-form-cookies-consent input {
    width: auto;
    margin: 0;
}

.comment-notes {
    color: #718096;
    font-size: 14px;
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

.form-submit {
    grid-column: 1 / -1;
    margin: 0;
}

.no-comments {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin: 30px 0;
    padding: 20px;
    background: rgba(79, 172, 254, 0.05);
    border-radius: 8px;
}

/* Kommentar-Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.comment-navigation a {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comment-body {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-author {
        align-self: flex-start;
    }
    
    .comment-author img {
        width: 50px;
        height: 50px;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .comments-area {
        padding: 20px;
    }
    
    .comment-respond {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .comment-form {
        grid-template-columns: 1fr;
    }
    
    .comment-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .comment-navigation a {
        text-align: center;
    }
}

