/* استایل‌های سفارشی اضافی */

.section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--alavi-golden);
    border-radius: 2px;
}

.post-card {
    transition: all 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* انیمیشن برای اسکرول */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
