/* COVERAGE */
.coverage {
    background: #F0F3FF;
}

.cov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 3rem
}

.cov-col {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 40px rgba(0, 0, 0, .08); */
    border: 1px solid #EAEAEA;
    background: #ffffff;
}

.cov-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 55px;
    border: 1px solid #EAEAEA;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.cov-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.cov-header:hover::after {
    left: 150%;
}

.cov-yes .cov-header {
    background: linear-gradient(90deg, #C9FFE4 39.43%, #47FFA7 134.76%);
}

.cov-yes .cov-header:hover {
    box-shadow: inset 0 0 20px rgba(71, 255, 167, 0.6);
    padding-left: 60px;
}

.cov-no .cov-header {
    background: linear-gradient(90deg, #FEE0E0 35.31%, #FFA0A0 169.52%);
}

.cov-no .cov-header:hover {
    box-shadow: inset 0 0 20px rgba(255, 160, 160, 0.6);
    padding-left: 60px;
}

.cov-header h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #001D3F;
    display: flex;
    gap: 16px;
    align-items: center;
}

.cov-header h4 img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cov-header:hover h4 img {
    transform: scale(1.2) rotate(10deg);
}

.cov-body {
    background: #fff;
    padding: .5rem 0
}

.cov-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 1.5rem;
    border-bottom: 1px solid #EAEAEA;
    font-size: 14px;
    line-height: 50px;
    font-weight: 400;
    color: #1E1E1E;
    transition: background .2s;
    padding-left: 55px;
}

.cov-item:last-child {
    border-bottom: none
}

.cov-item:hover {
    background: #fafafa
}

.cov-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
}

.dot-g {
    background: #10b981
}

.dot-r {
    background: #ef4444
}

.coverage .btn-primary {
    width: 226px;
}