.comment-section {
    padding: 2rem;
    background-color: #f9f9f9;
    border-top: 3px solid #333;
    font-family: Arial, sans-serif;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #222;
    border-left: 5px solid #444;
    padding-left: 10px;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.comment-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.comment-card:hover {
    transform: scale(1.01);
}

.comment-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.comment-image {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.comment-source {
    font-size: 0.85rem;
    font-weight: bold;
    color: #555;
}

.comment-tags {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #888;
}