.shed-container .sub-head { display: flex; align-items: center; gap: 10px; }
.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #ff4d6d 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }