/* ============================================================
   ref-sticky-cta.css — Shared Sticky CTA for all Case Studies
   Loaded globally on teil1_referenz single pages.
   ============================================================ */

.ref-sticky-cta {
    position: fixed;
    bottom: clamp(16px, 3vw, 28px);
    right: clamp(16px, 3vw, 28px);
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1d1d1f;
    color: #fff;
    border-radius: 100px;
    font-family: var(--wp--preset--font-family--body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.ref-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #333;
}
.ref-sticky-cta .arrow-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.ref-sticky-cta__text-short {
    display: none;
}

@media (max-width: 800px) {
    .ref-sticky-cta {
        padding: 10px 16px;
        font-size: 12px;
    }
    .ref-sticky-cta__text-full {
        display: none;
    }
    .ref-sticky-cta__text-short {
        display: inline;
    }
}
