/**
 * Post Engagement Bar Styles
 * Layout and container styles only - icons styled inline in PHP
 */

 .post-engagement-bar {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(122, 62, 163, 0.2);
    border-bottom: 2px solid rgba(122, 62, 163, 0.2);
}

.engagement-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sections */
.engagement-section {
    text-align: center;
}

.engagement-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #7A3EA3;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.engagement-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

/* Divider */
.engagement-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(122, 62, 163, 0.3) 20%,
        rgba(122, 62, 163, 0.3) 80%,
        transparent
    );
}

/* CTA Button */
.engagement-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7A3EA3 0%, #5A5FA3 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(122, 62, 163, 0.1);
}

.engagement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 62, 163, 0.3);
}

.engagement-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(122, 62, 163, 0.1);
}

.engagement-cta:focus-visible {
    outline: 2px solid #7A3EA3;
    outline-offset: 2px;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .post-engagement-bar {
        padding: 2rem 0;
    }
    
    .engagement-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .engagement-divider {
        display: none;
    }
    
    .engagement-section:first-child {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(122, 62, 163, 0.15);
    }
    
    .engagement-cta {
        width: 100%;
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .post-engagement-bar {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .engagement-container {
        padding: 0 1rem;
    }
    
    .engagement-title {
        font-size: 1rem;
    }
    
    .engagement-description {
        font-size: 0.875rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .engagement-cta {
        transition: none;
    }
    
    .engagement-cta:hover {
        transform: none;
    }
}