.panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 15px 0 70px;
}

.panel .panel-i .cat {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #29d0fd;
    background: #29d0fd24;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 12px;
    display: inline-block;
}

.panel .panel-i h3 {
    font-size: 29px;
    font-weight: 800;
    color: #02016f;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.panel .panel-i p {
    color: #4f5c76;
    margin-bottom: 0;
}

.panel-i,
.panel-d {
    position: relative;
}

.panel .strippad-wrapper {
    position: relative;
}

.panel .strippad {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
}

.panel .strippad .box {
    display: flex;
    align-items: center;
    width: max-content;
}

.panel .strippad .box .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #0504aa14;
    color: #0504aa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel .strippad .box .icon.mujer {
    background: #c84fa81a;
    color: #c84fa8;
}

.panel .strippad .box .icon svg {
    width: 24px;
    height: 24px;
}

.panel .strippad .box .text {
    margin: 0 20px 0 10px;
}

.panel .strippad .box .text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #02016f;
    margin-bottom: 0;
}

.panel .strippad .box .text span {
    font-size: .9rem;
    color: #4f5c76;
}

/* lg */
@media (max-width: 991.98px) {

    .panel {
        flex-direction: column;
        gap: 0;
    }

    .panel .strippad-wrapper {
        margin-top: 30px;
    }

    .panel .strippad {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .panel .strippad::-webkit-scrollbar {
        display: none;
    }

    .panel-d {
        width: 100%;
    }
}