/* Direct ecosystem links added without changing the existing hero design. */
.enterprise-button-campaign {
    order: -2;
}

.enterprise-hero-shortcuts {
    order: -1;
    display: grid;
    width: 100%;
    flex: 0 0 100%;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    direction: rtl;
}

.enterprise-hero-shortcut {
    display: flex;
    min-width: 0;
    min-height: 76px;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    color: #fff;
    background: rgba(7, 47, 67, .72);
    box-shadow: 0 12px 28px rgba(0, 18, 31, .2);
    text-align: right;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.enterprise-hero-shortcut:hover,
.enterprise-hero-shortcut:focus-visible {
    color: #fff;
    border-color: rgba(105, 214, 207, .9);
    background: rgba(10, 91, 105, .88);
    box-shadow: 0 14px 30px rgba(0, 18, 31, .27);
    transform: translateY(-2px);
    outline: none;
}

.enterprise-hero-shortcut img {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 11px;
    object-fit: cover;
}

.enterprise-hero-shortcut > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.enterprise-hero-shortcut strong,
.enterprise-hero-shortcut small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enterprise-hero-shortcut strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.enterprise-hero-shortcut small {
    display: -webkit-box;
    min-height: 2.9em;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.45;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.enterprise-chip-item {
    color: #fff;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.enterprise-chip-item:hover,
.enterprise-chip-item:focus-visible {
    color: #fff;
    border-color: rgba(255, 209, 126, .72);
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px);
    outline: none;
}

@media (max-width: 575px) {
    .enterprise-hero-shortcuts {
        gap: 6px;
    }

    .enterprise-hero-shortcut {
        min-height: 102px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 8px 5px;
        text-align: center;
    }

    .enterprise-hero-shortcut img {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .enterprise-hero-shortcut > span {
        width: 100%;
    }

    .enterprise-hero-shortcut strong {
        font-size: 14px;
    }

    .enterprise-hero-shortcut small {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-hero-shortcut,
    .enterprise-chip-item {
        transition: none;
    }
}
