/* ===== 1.0.8 - EIA product sections (eps-): smart panel + feature banners.
   Rendered via [eps_smart_panel] / [eps_feature_banners] shortcodes inside
   Elementor layout 1055. Matches the approved mockup design. ===== */

/* ---- Smart panel (dark) ---- */
.eps-smart {
    background: #0f1b2d;
    border-radius: 14px;
    padding: 18px;
    margin: 18px 0;
    color: #e6f1fb;
}
.eps-smart-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.eps-smart-head .ti-wifi {
    font-size: 20px;
    color: #5dcaa5;
}
.eps-smart-title {
    font-size: 15px;
    font-weight: 500;
    color: #e6f1fb;
}
.eps-smart-badge {
    margin-left: auto;
    font-size: 11px;
    color: #85b7eb;
    border: 1px solid #1d3454;
    border-radius: 20px;
    padding: 3px 10px;
}
.eps-smart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.eps-smart-tile {
    background: #1a2942;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}
.eps-smart-tile > .ti {
    font-size: 20px;
    color: #5dcaa5;
}
.eps-smart-tile-t {
    font-size: 13px;
    font-weight: 500;
    color: #e6f1fb;
    margin-top: 5px;
}
.eps-smart-tile-s {
    font-size: 11px;
    color: #85b7eb;
    margin-top: 2px;
}
.eps-smart-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: #9fb8d4;
}
.eps-smart-foot .ti {
    font-size: 15px;
    color: #5dcaa5;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .eps-smart-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Feature banners (stacked) ---- */
.eps-banners {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}
.eps-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    background: #dce6f0;
}
.eps-banner img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}
.eps-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    background: linear-gradient(90deg, rgba(15,27,45,0.72), rgba(15,27,45,0.15) 60%, transparent);
}
.eps-banner-t {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}
.eps-banner-s {
    font-size: 14px;
    color: #cfe0f0;
    margin-top: 6px;
    max-width: 60%;
}
@media (max-width: 600px) {
    .eps-banner, .eps-banner img { min-height: 170px; }
    .eps-banner-t { font-size: 18px; }
    .eps-banner-s { font-size: 12px; max-width: 80%; }
}
