.header-qr {
    max-width: min(160px, 26%);
}

/* ==========================================================================
   Fluent Forms — Modern Minimal Global Styles 2024-2026
   ========================================================================== */

/* Reset & Base */
.fluentform .ff-el-group {
    margin-bottom: 1.6rem;
}

.fluentform .ff-el-input--label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;           /* dark gray - neutral */
}

.fluentform .ff-el-is-required .ff-el-input--label::after {
    content: "*";
    color: #ef4444;
    margin-left: 0.25rem;
    font-weight: bold;
}

/* Inputs & Textarea */
.fluentform .ff-el-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    background-color: #ffffff;
    border: 1px solid #d1d5db;     /* light gray border */
    border-radius: 0.5rem;         /* modern rounded */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.fluentform .ff-el-form-control:focus {
    outline: none;
    border-color: #3b82f6;         /* blue focus - can change to your brand color */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Textarea specific */
.fluentform textarea.ff-el-form-control {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */


/* Optional: Make form container nicer */
.fluentform {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.ff-message-success {
    border: none;
    box-shadow: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    justify-items: center;
	align-items: center;
}
.category-partners .wp-block-post-featured-image {
	max-width: 100px;
}
/* Mobile adjustments */
@media (max-width: 640px) {
    .fluentform {
        padding: 1.5rem;
    }
    
    .fluentform .ff-el-form-control {
        padding: 0.85rem 1rem;
        font-size: 1.05rem; /* bigger touch targets */
    }
}