.external-link-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.68);
}

.external-link-modal.is-hidden {
    display: none;
}

.external-link-modal-card {
    width: min(520px, 100%);
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.external-link-modal-card h2 {
    margin: 0 0 14px;
    color: #111827;
}

.external-link-modal-card p {
    margin: 0 0 14px;
    line-height: 1.5;
}

.external-link-small {
    font-size: 0.95rem;
    color: #4b5563;
}

.external-link-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
    font-weight: 700;
}

.external-link-checkbox input {
    width: 20px;
    height: 20px;
}

.external-link-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
}

.external-link-button-secondary,
.external-link-button-primary {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
}

.external-link-button-secondary {
    background: #e5e7eb;
    color: #111827;
}

.external-link-button-primary {
    background: var(--sf-heading-accent, #f2b705);
    color: #111827;
}

a[data-external]::after {
    content: " ↗";
    font-weight: 800;
}
