/* ==========================================
   BLENTREE FEATURE GRID
   Prefix: bln-fg-
   ========================================== */
.elementor-widget-blentree-feature-grid,
.elementor-widget-blentree-feature-grid > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    flex: 1 1 100% !important;
}

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

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

.bln-fg-inner {
    width: 100%;
    padding: 60px 10%;
}

.bln-fg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section heading ===== */
.bln-fg-head {
    text-align: center;
    margin-bottom: 40px;
}
.bln-fg-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 8px;
}
.bln-fg-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

/* ===== Grid ===== */
.bln-fg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    align-items: stretch;
}

/* ===== Item ===== */
.bln-fg-item {
    display: flex;
    gap: 16px;
    position: relative;
    align-items: flex-start;
}

/* Icon positions.
   align-items (cross axis) is driven by the Item Align control for the
   COLUMN layouts (top / none) so the icon follows text alignment.
   For the ROW layout (icon-left) we force vertical centering with a more
   specific rule so the icon centers against the title+subtitle. */
.bln-fg-iconpos-left .bln-fg-item {
    flex-direction: row;
}
.bln-fg-grid.bln-fg-iconpos-left .bln-fg-item {
    align-items: center;
}
.bln-fg-iconpos-top .bln-fg-item {
    flex-direction: column;
}
.bln-fg-iconpos-none .bln-fg-item {
    flex-direction: column;
}

/* ===== Icon box ===== */
.bln-fg-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E63946;
    color: #FFFFFF;
    line-height: 1;
}
.bln-fg-icon i { font-size: 22px; color: #FFFFFF; line-height: 1; }
.bln-fg-icon svg { width: auto; height: auto; max-width: 24px; max-height: 24px; }
/* Fill icons → fill; outline icons (fill="none") → stroke */
.bln-fg-icon svg:not([fill="none"]),
.bln-fg-icon svg:not([fill="none"]) path { fill: #FFFFFF; }
.bln-fg-icon svg[fill="none"] { fill: none; }
.bln-fg-icon svg[fill="none"] path { stroke: #FFFFFF; }

/* Shapes */
.bln-fg-shape-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
}
.bln-fg-shape-circle { border-radius: 50%; }
.bln-fg-shape-rounded { border-radius: 12px; }
.bln-fg-shape-none {
    background-color: transparent !important;
    width: auto !important;
    height: auto !important;
}
.bln-fg-shape-none i { color: #E63946; }
.bln-fg-shape-none svg:not([fill="none"]),
.bln-fg-shape-none svg:not([fill="none"]) path { fill: #E63946; }
.bln-fg-shape-none svg[fill="none"] path { stroke: #E63946; }

/* ===== Item text ===== */
.bln-fg-item-text { min-width: 0; }
.bln-fg-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
    margin: 0 0 6px;
}
.bln-fg-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ===== Separators between columns ===== */
.bln-fg-grid.bln-fg-has-sep .bln-fg-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: calc(-1 * var(--bln-fg-sep-offset, 15px));
    width: 1px;
    height: 80%;
    background-color: #E5E5E5;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 991px) {
    .bln-fg-grid { grid-template-columns: repeat(2, 1fr); }
    .bln-fg-grid.bln-fg-has-sep .bln-fg-item::after { display: none; }
}
@media (max-width: 600px) {
    .bln-fg-inner { padding: 50px 24px; }
    .bln-fg-grid { grid-template-columns: 1fr; }
    .bln-fg-iconpos-left .bln-fg-item { align-items: flex-start; }
}
