/* Post Divider Styles */
.post-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
    opacity: 0.8;
}

.post-divider .divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, currentColor, transparent);
    opacity: 0.3;
}

.post-divider .divider-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.post-divider .divider-icon:hover {
    opacity: 1;
    transform: rotate(180deg) scale(1.1);
}

.post-divider .divider-icon svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .post-divider {
        margin: 30px 0;
        gap: 15px;
    }
    
    .post-divider .divider-icon {
        width: 35px;
        height: 35px;
    }
    
    .post-divider .divider-icon svg {
        width: 18px;
        height: 18px;
    }
}
