.hero-icons-grid {
    max-width: 100%;
}

.hero-icons-grid .hero-icons-track {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-icons-grid .hero-icon-item {
    display: flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: #fff;
    border-bottom: none;
    transition: background-color 0.3s ease;
}

.hero-icons-grid .hero-icon-item:last-child {
    border-bottom: none;
}

.hero-icons-grid .hero-icon-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-icons-grid .hero-icon-item:focus-visible {
    border-radius: 8px;
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.hero-icons-grid .hero-icon-circle {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-icons-grid .hero-icon-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-icons-grid .hero-icon-title {
    font-family: var(--et_global_heading_font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.54px;
    margin-bottom: 2px;
}

.hero-icons-grid .hero-icon-subtitle {
    font-family: var(--et_global_body_font);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.hero-icons-grid .external-link-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.8;
}

.hero-icons-grid .hero-icon-chevron {
    width: 6px;
    height: 12px;
    margin-left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='12' viewBox='0 0 6 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.52393 1.09553C1.41597 0.993049 1.27279 0.935913 1.12393 0.935913C0.975074 0.935913 0.831894 0.993049 0.723932 1.09553C0.670593 1.1476 0.628207 1.20982 0.599268 1.27851C0.570328 1.3472 0.55542 1.42099 0.55542 1.49553C0.55542 1.57007 0.570328 1.64386 0.599268 1.71256C0.628207 1.78125 0.670593 1.84346 0.628207 1.89553L4.66493 5.99553L0.726932 10.0955C0.673593 10.1476 0.631207 10.2098 0.602268 10.2785C0.573328 10.3472 0.55842 10.421 0.55842 10.4955C0.55842 10.5701 0.573328 10.6439 0.602268 10.7126C0.631207 10.7812 0.673593 10.8435 0.726932 10.8955C0.779002 10.9489 0.841215 10.9913 0.909909 11.0202C0.978603 11.0491 1.05239 11.064 1.12693 11.064C1.20147 11.064 1.27526 11.0491 1.34395 11.0202C1.41265 10.9913 1.47486 10.9489 1.52693 10.8955L5.83593 6.39553C5.88892 6.34343 5.93077 6.28111 5.95896 6.21236C5.98715 6.1436 6.00109 6.06984 5.99993 5.99553C6.00109 5.92123 5.98715 5.84747 5.95896 5.77871C5.93077 5.70995 5.88892 5.64764 5.83593 5.59553L1.52393 1.09553Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.hero-icons-grid .hero-icons-dots {
    display: none;
}

@media (max-width: 980px) {
    .hero-icons-grid {
        overflow: hidden;
        touch-action: pan-y;
    }

    .hero-icons-grid .hero-icons-track {
        flex-direction: row;
        gap: 0;
        width: 100%;
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .hero-icons-grid .hero-icon-item {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
    }

    .hero-icons-grid .hero-icon-chevron {
        display: none;
    }

    .hero-icons-grid .hero-icons-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
    }

    .hero-icons-grid .hero-icons-dot {
        width: 16px;
        height: 16px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        padding: 0;
    }

.hero-icons-grid .hero-icons-dot.is-active {
    background: #ffffff;
}

.hero-icons-grid .hero-icons-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
}

@media (max-width: 767px) {
    .hero-icons-grid .hero-icon-item {
        justify-content: center;
        padding: 0 12px;
    }

    .hero-icons-grid .hero-icon-text {
        flex: 0 1 auto;
        max-width: 199px;
    }

    .hero-icons-grid .hero-icons-dot {
        width: 10px;
        height: 10px;
    }
}
