.recruitment-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    width: min(100%, 20rem);
    opacity: 0;
    transform: translateY(1.25rem) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.recruitment-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.recruitment-toast-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(19, 97, 66, 0.12);
    border-radius: 1.25rem;
    background: #f3f1e8;
    padding: 0.85rem 1rem 0.85rem 0.85rem;
    box-shadow: 0 18px 40px rgba(19, 97, 66, 0.18);
    color: #136142;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recruitment-toast-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(19, 97, 66, 0.22);
}

.recruitment-toast-mascot {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    object-fit: contain;
}

.recruitment-toast-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.recruitment-toast-eyebrow {
    font-family: 'Sunborn', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f1592a;
}

.recruitment-toast-title {
    font-family: 'Agrandir', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    color: #136142;
}

.recruitment-toast-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #136142;
    color: #fff;
    flex-shrink: 0;
}

.recruitment-toast-close {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(19, 97, 66, 0.12);
    background: #fff;
    color: #136142;
    box-shadow: 0 8px 20px rgba(19, 97, 66, 0.12);
    cursor: pointer;
}

.recruitment-toast-close:hover {
    background: #f3f1e8;
}

@media (min-width: 768px) {
    .recruitment-toast {
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .recruitment-toast,
    .recruitment-toast-link {
        transition: none;
    }
}
