/* ВАРИАНТ 1 — правая колонка (2-я из 2-х) */
.wp-block-columns > .wp-block-column:nth-child(2) {
    justify-content: flex-start !important;
}

/* ВАРИАНТ 2 — ЛЮБАЯ колонка с выравниванием вправо → влево */
[class*="column"] {
    justify-content: flex-start !important;
    text-align: left !important;
}

/* ВАРИАНТ 3 — Kadence специфично */
.kb-row-column:nth-last-child(2) {
    justify-content: flex-start !important;
}

/* ===== МАЛЕНЬКИЙ ЗАЗОР МЕЖДУ КОЛОНКАМИ ===== */
.wp-block-columns {
    gap: 10px !important;  /* 15px между столбцами */
}

.kadence-row-container,
[class*="columns"] {
    gap: 10px !important;  /* универсально для Kadence */
}




/* 🔥 Форма калькулятора - ПОЛНЫЙ КОНТРОЛЬ */
.calc-form {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 15px !important;           /* Было 20px */
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    line-height: 1.35 !important;
}

.calc-form h3 {
    margin-bottom: 12px !important;     /* Было 20px */
    line-height: 1.25 !important;
}

.calc-form p {
    margin-bottom: 10px !important;
}

.calc-form label {
    margin-bottom: 4px !important;
    display: block !important;
}

.calc-form input[type="file"],
.calc-form select {
    width: 100% !important;
    padding: 8px !important;
    line-height: 1.25 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
}

#swapLangs {
    padding: 6px 12px !important;
    margin: 8px 0 !important;

}

#wpcf7-f587-p21-o1 > form > div:nth-child(2) label {
    margin-left: 10px !important;
}

