
.post-section {
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

.post-section:hover {
    background-color: rgba(90, 75, 159, 0.02);
}

.text-matices {
    color: #5A4B9F;
}

.btn-matices {
    background-color: #5A4B9F;
    color: white;
    border: none;
}

.btn-matices:hover {
    background-color: #4a3e85;
    color: white;
}

/* Separador elegante */
.post-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, #5A4B9F, transparent);
    margin: 20px auto;
    width: 60%;
    opacity: 0.3;
}

.post-divider::after {
    content: "◈";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f8f9fa; /* Color de fondo de la sección */
    padding: 0 15px;
    color: #5A4B9F;
    font-size: 1.2rem;
}

.post-content {
    line-height: 1.8;
    color: #444;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}
