.iodnations_hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.iodnations_hero-actions .iodnations_hero-action-btn {
    background: var(--e-global-color-094aaec);
    border: 1px solid var(--e-global-color-7354588);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--e-global-color-776422f);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.iodnations_hero-actions .iodnations_hero-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--e-global-color-d44d081);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.iodnations_hero-actions .iodnations_hero-action-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 117, 26, .3);
    background: var(--e-global-color-70eaf45);
    box-shadow: var(--shadow);
}

.iodnations_hero-actions .iodnations_hero-action-btn:hover::before {
    transform: scaleX(1);
}

.iodnations_hero-actions .iodnations_hero-action-btn.iodnations_primary {
    background: linear-gradient(135deg, rgba(232, 117, 26, .18), rgba(232, 117, 26, .06));
    border-color: rgba(232, 117, 26, .4);
}

.iodnations_hero-actions .iodnations_hero-action-btn.iodnations_primary:hover {
    background: linear-gradient(135deg, rgba(232, 117, 26, .25), rgba(232, 117, 26, .1));
    border-color: var(--e-global-color-d44d081);
    box-shadow: 0 16px 50px rgba(232, 117, 26, .25);
}

.iodnations_hero-action-btn .iodnations_hero-action-ico {
    background: rgba(232, 117, 26, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(232, 117, 26, .2);
}

.iodnations_hero-actions .iodnations_hero-action-btn.iodnations_primary .iodnations_hero-action-ico {
    background: var(--e-global-color-d44d081);
    border-color: var(--e-global-color-d44d081);
    box-shadow: 0 8px 24px rgba(232, 117, 26, .35);
}

.iodnations_hero-action-btn .iodnations_hero-action-body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.iodnations_hero-action-btn .iodnations_hero-action-label {
    margin-bottom: 4px;
}

.iodnations_hero-action-btn .iodnations_hero-action-title {
    transition: color .3s;
}

.iodnations_hero-action-btn .iodnations_hero-action-arr {
    font-size: 20px;
    color: var(--e-global-color-d44d081);
    flex-shrink: 0;
    transition: transform .3s;
}

.iodnations_hero-actions .iodnations_hero-action-btn:hover .iodnations_hero-action-arr {
    transform: translateX(6px);
}

@media only screen and (max-width: 767px) {
    .iodnations_hero-actions {
        justify-content: stretch;
    }

    .iodnations_hero-actions .iodnations_hero-action-btn {
        gap: 24px;
        width: 100%;
    }

}