.comment-section {
    width: 900px;
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
    background: var(--background-radial-grad);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.comment-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-green);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

/* Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-form textarea {
    resize: none;
    height: 100px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-form button {
    align-self: flex-end;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--lt-nav);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form button:hover {
    background-color: var(--primary-blue);
}

/* Comments List */
.comments {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment {
    background-color: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.comment-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.comment-actions {
    display: inline-block;
    margin-left: 10px;
    position: absolute;
    right: 10px;
    bottom: 20px;
}

@media (max-width: 600px) {
    .comment-section {
        max-width: 95%;
        padding: 15px;
        margin: 20px auto;
    }

    .comment-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .comment-form {
        gap: 8px;
    }

    .comment-form textarea {
        height: 80px;
        padding: 8px;
        font-size: 0.9rem;
    }

    .comment-form button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .comments {
        gap: 10px;
    }

    .comment {
        padding: 12px;
    }

    .comment-author {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .comment-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}
