/**
 * Footer Instagram follow button — shared across site footers.
 */
.footer-instagram-wrap {
    margin: 0 auto 1.15rem;
    text-align: center;
}

.footer-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    max-width: 100%;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        #f58529 0%,
        #dd2a7b 48%,
        #8134af 100%
    );
    color: #ffffff !important;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
}

.footer-instagram-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(221, 42, 123, 0.28);
    filter: brightness(1.04);
}

.footer-instagram-btn:focus {
    outline: none;
}

.footer-instagram-btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow:
        0 0 0 3px rgba(129, 52, 175, 0.45),
        0 10px 26px rgba(221, 42, 123, 0.28);
}

.footer-instagram-icon {
    display: block;
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

@media (max-width: 480px) {
    .footer-instagram-btn {
        font-size: 0.86rem;
        padding: 0.68rem 1.1rem;
        white-space: normal;
    }
}
