/* Media Kit Request block — scoped, dark/light friendly */

.media-kit-request {
    --mkr-border: rgba(127, 127, 127, 0.5);
    --mkr-radius: 6px;
    max-width: 480px;
    scroll-margin-top: 90px;
}

.mkr-field {
    margin-bottom: 0.75rem;
}

.media-kit-request label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.media-kit-request input[type="text"],
.media-kit-request input[type="email"] {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--mkr-border);
    border-radius: var(--mkr-radius);
    font: inherit;
}

.media-kit-request button[type="submit"] {
    margin-top: 0.25rem;
}

/* Honeypot: visually removed, still in the DOM for bots */
.mkr-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mkr-status {
    padding: 0.75rem 1rem;
    border-radius: var(--mkr-radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

.mkr-status--error {
    background: #fdecea;
    color: #8a1f11;
    border: 1px solid #f5c6c0;
}

.mkr-status--success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}
