/* Animated Section Dividers */
.section-divider {
    position: relative;
    height: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(90deg, 
        var(--gracie-red) 0%,
        var(--gracie-red) 33%,
        var(--gracie-blue) 66%,
        var(--gracie-red) 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0% 0;
    }
}

/* Add a subtle glow effect */
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(4px);
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-divider {
        height: 3px;
    }
}