/**Layer 78: Engagement*/
.engage-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.engage-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.engage-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s
}

.engage-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px)
}

.engage-btn.active {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af
}

.engage-btn .icon {
    font-size: 1.25rem
}

.engage-count {
    color: #6b7280;
    font-size: .875rem
}

.comment-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem
}

.comment-form {
    margin-bottom: 1.5rem
}

.comment-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: .875rem;
    resize: vertical;
    min-height: 80px
}

.comment-input:focus {
    outline: 0;
    border-color: #3b82f6
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.comment-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem
}

.comment-author {
    font-weight: 600;
    font-size: .875rem
}

.comment-time {
    font-size: .75rem;
    color: #6b7280
}

.comment-text {
    font-size: .875rem;
    line-height: 1.6
}

.rating-stars {
    display: flex;
    gap: .25rem
}

.rating-star {
    font-size: 1.5rem;
    cursor: pointer;
    color: #d1d5db;
    transition: color .2s
}

.rating-star:hover,
.rating-star.active {
    color: #f59e0b
}

.reactions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.reaction-btn {
    padding: .5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all .3s
}

.reaction-btn:hover {
    transform: scale(1.1)
}

.reaction-btn.active {
    background: #dbeafe;
    border-color: #3b82f6
}

@media (max-width:768px) {
    .engage-actions {
        flex-direction: column
    }

    .engage-btn {
        width: 100%
    }
}