.finch-sample-form-wrap {
    margin: 24px 0;
    max-width: 980px;
}

.finch-sample-form-heading {
    margin: 0 0 18px;
}

.finch-sample-form-notice {
    border-radius: 6px;
    margin: 0 0 18px;
    padding: 12px 14px;
}

.finch-sample-form-success {
    background: #eef8ee;
    border: 1px solid #b7dfb7;
}

.finch-sample-form-error {
    background: #fff0f0;
    border: 1px solid #e3b5b5;
    padding: 12px 14px;
}

.finch-sample-form-grid,
.finch-sample-selects {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finch-sample-selects {
    margin-top: 18px;
}

.finch-sample-form-field,
.finch-sample-choice {
    min-width: 0;
}

.finch-sample-form-field-full {
    margin-top: 18px;
}

.finch-sample-form label {
    display: block;
    font-weight: 600;
    margin: 0 0 6px;
}

.finch-required {
    color: #b00020;
}

.finch-sample-form input,
.finch-sample-form select,
.finch-sample-form textarea {
    box-sizing: border-box;
    width: 100%;
}

.finch-sample-preview {
    align-items: center;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    gap: 12px;
    margin-top: 10px;
    min-height: 86px;
    padding: 10px;
}

.finch-sample-preview img {
    border-radius: 6px;
    display: block;
    max-width: none;
}

/* Default / recommended for Finch 1100 x 550 composite images.
   Shows only the right-hand 350 x 550 sample panel. */
.finch-preview-mode-right_crop .finch-sample-preview {
    align-items: center;
    min-height: 150px;
}

.finch-preview-mode-right_crop .finch-sample-preview img {
    aspect-ratio: 350 / 550;
    height: 128px;
    object-fit: cover;
    object-position: right center;
    width: 81px;
}

/* Shows the whole 1100 x 550 image scaled down, with no cropping. */
.finch-preview-mode-full .finch-sample-preview img {
    aspect-ratio: 2 / 1;
    background: #fff;
    height: 74px;
    object-fit: contain;
    width: 148px;
}

/* Legacy compact crop option. */
.finch-preview-mode-cover .finch-sample-preview img {
    aspect-ratio: 1.45 / 1;
    height: 64px;
    object-fit: cover;
    object-position: center center;
    width: 92px;
}

.finch-sample-preview-caption {
    font-weight: 600;
    line-height: 1.25;
}

.finch-sample-preview-empty,
.finch-sample-preview-no-image {
    color: #666;
    font-size: 14px;
}

.finch-sample-preview-no-image {
    align-items: center;
    background: repeating-linear-gradient(45deg, #eeeeee, #eeeeee 8px, #f7f7f7 8px, #f7f7f7 16px);
    border: 1px dashed #ccc;
    border-radius: 6px;
    display: flex;
    height: 64px;
    justify-content: center;
    padding: 0 8px;
    text-align: center;
    width: 92px;
}

.finch-sample-submit {
    cursor: pointer;
    margin-top: 18px;
}

.finch-sample-honeypot {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

@media (max-width: 720px) {
    .finch-sample-form-grid,
    .finch-sample-selects {
        grid-template-columns: 1fr;
    }
}

.finch-sample-help-text {
    color: #666;
    font-size: 14px;
    grid-column: 1 / -1;
    margin: 0;
}


.finch-sample-form-sending .finch-sample-submit,
.finch-sample-form-sending button[type="submit"],
.finch-sample-form-sending input[type="submit"] {
    cursor: wait;
    opacity: 0.7;
}
