/* Стили для анимации */
.vocations-list .row .col {
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

/* Стили для индикатора загрузки */
.scroll-loader {
    text-align: center;
    padding: 20px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}