.coverage{

    padding:80px 0;

    background:#fff;
}

.coverage .container{

    max-width:1400px;
}

.coverage-content{

    display:grid;

    grid-template-columns:40% 60%;

    align-items:center;

    gap:5px;
}


/* ==================================
   INFO
================================== */

.coverage-info{

    max-width:600px;
}


/* ==================================
   BADGE
================================== */

.coverage-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    margin-bottom:24px;

    border-radius:12px;

    background:#EAF6F1;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    text-transform:uppercase;
}

.coverage-badge img{

    width:25px;

    height:25px;
}


/* ==================================
   TITLE
================================== */

.coverage-info h2{

    margin-bottom:24px;

    font-size:3.6rem;

    line-height:1.1;

    font-weight:800;

    color:var(--text);
}

.coverage-info h2 span{

    display:block;

    color:var(--primary);
}


/* ==================================
   LINE
================================== */

.coverage-line{

    width:80px;

    height:5px;

    margin-bottom:30px;

    border-radius:999px;

    background:var(--primary);
}


/* ==================================
   DESCRIPTION
================================== */

.coverage-description{

    max-width:500px;

    margin-bottom:25px;

    font-size:1.2rem;

    line-height:1.8;

    color:#374151;
}


/* ==================================
   FEATURES
================================== */

.coverage-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    margin-bottom:30px;
}

.coverage-feature{

    position:relative;

    text-align:center;

    padding:0 12px;
}

.coverage-feature:not(:last-child)::after{

    content:"";

    position:absolute;

    top:10px;

    right:0;

    width:1px;

    height:100px;

    background:#e5e7eb;
}

.coverage-feature-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:64px;

    height:64px;

    margin:0 auto 16px;

    border-radius:50%;

    background:#EAF6F1;
}

.coverage-feature-icon img{

    width:50px;

    height:50px;
}

.coverage-feature p{

    font-size:1rem;

    line-height:1.5;

    color:var(--text);
}

.coverage-feature strong{

    display:block;

    color:var(--primary);

    font-size:2rem;

    line-height:1;
}


/* ==================================
   CTA
================================== */

.coverage-action{

    margin-top:10px;
}

.coverage-action-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 28px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-size:1rem;

    font-weight:600;

    transition:.3s ease;
}

.coverage-action-btn:hover{

    transform:translateY(-2px);
}

.coverage-action-btn img{

    width:20px;

    height:20px;
}


/* ==================================
   MAP
================================== */

.coverage-map{

    display:flex;

    justify-content:center;

    align-items:center;
}

.coverage-map img{

    width:100%;

    max-width:650px;

    height:auto;

    display:block;
}