/* === OBL Calls - style === */
.obl-calls {
    max-width: 920px;
    margin: 28px auto;
    padding: 26px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(12, 31, 75, 0.06);
    font-family: "Poppins", system-ui, Arial, sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.obl-calls .card-head {
    background: #fde9ea;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    text-align: center;
}
.obl-calls .card-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
}

.obl-calls-form {
    display: block;
}
.obl-calls-form .row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    align-items: flex-start;
}
.obl-calls-form .row > div {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.obl-calls-form .row.three-cols {
    display: grid;
    grid-template-columns: 1fr 230px 230px;
    gap: 14px;
    align-items: start;
}

@media (max-width: 980px) {
    .obl-calls-form .row.three-cols {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .obl-calls-form .row.three-cols {
        grid-template-columns: 1fr;
    }
}

.obl-calls-form label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}
.obl-calls-form input,
.obl-calls-form select,
.obl-calls-form textarea {
    height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e2e6ea;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
}
.obl-calls-form textarea {
    min-height: 110px;
    height: auto;
    padding: 12px;
}

.obl-calls-form small {
    display: block;
    color: #7a7a7a;
    font-size: 12px;
    margin-top: 6px;
}
.obl-calls-form button {
    background: #007bdf;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}
.obl-calls-form button:hover {
    background: #0066b3;
}

.obl-calls-out {
    margin-top: 12px;
    font-size: 14px;
}
.obl-calls-form select[name="timezone"] {
    background: #fff;
    border-radius: 8px;
    min-height: 42px;
}