.post-interactions {
    margin: 30px 0;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.like-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.like-button {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.like-button:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.like-button.liked {
    color: #e74c3c;
}

.like-count {
    font-size: 1rem;
    color: var(--light-text);
}

.comments-section {
    margin-top: 40px;
}

.comments-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 10px;
    resize: vertical;
    min-height: 100px;
}

.comment-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 10px;
}

.comment-form button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form button:hover {
    background-color: var(--secondary-color);
}

.comments-list {
    margin-top: 30px;
}

.comment {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: var(--light-bg);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.comment-content {
    color: var(--text-color);
    line-height: 1.5;
}

.no-comments {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    margin: 20px 0;
}
