/* ==========================================
   BLENTREE TEXT BLOCK
   Prefix: bln-tb-
   ========================================== */
.elementor-widget-blentree-text-block,
.elementor-widget-blentree-text-block > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    flex: 1 1 100% !important;
}

.bln-tb-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
}
.bln-tb-section * { box-sizing: border-box; }

.bln-tb-section.bln-tb-fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.bln-tb-inner {
    width: 100%;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

/* The styled box / card */
.bln-tb-box {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.bln-tb-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E63946;
    margin: 0 0 10px;
}

.bln-tb-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.bln-tb-body {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    width: 100%;
}
.bln-tb-body p { margin: 0 0 14px; }
.bln-tb-body p:last-child { margin-bottom: 0; }
.bln-tb-body strong { font-weight: 700; color: inherit; }

.bln-tb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 34px;
    background-color: #E63946;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bln-tb-button:hover {
    background-color: #C42E3A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .bln-tb-inner { padding: 50px 24px; }
}
@media (max-width: 480px) {
    .bln-tb-inner { padding: 40px 16px; }
    .bln-tb-button { padding: 12px 26px; font-size: 13px; }
}
