.Footer__termsNotice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 8px;
    background: rgba(234, 124, 35, 0.08);
    border-left: 3px solid #EA7C23;
    border-radius: 2px;
    animation: termsPulse 2.4s ease-in-out infinite;
}

.Footer__termsBadge {
    display: inline-block;
    padding: 2px 7px;
    background: #EA7C23;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 2px;
    text-transform: uppercase;
}

.Footer__termsLink {
    color: #EA7C23;
    font-weight: 600;
    text-decoration: underline;
    font-size: 13px;
}

.Footer__termsLink:hover {
    color: #c8651a;
}

.Footer__copyrightLine {
    display: flex;
    gap: 8px;
    align-items: center;
}

@keyframes termsPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 124, 35, 0.0); }
    50%      { box-shadow: 0 0 0 4px rgba(234, 124, 35, 0.12); }
}
