.ai-help-entry-wrap {
    box-sizing: border-box;
    margin-top: 24px;
    width: 100%;
}

.ai-help-entry {
    align-items: center;
    background: linear-gradient(110deg, #f4f8ff 0%, #f7f5ff 100%);
    border: 1px solid #d9e4ff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(44, 82, 160, 0.08);
    box-sizing: border-box;
    display: flex;
    gap: 18px;
    min-height: 118px;
    padding: 24px 28px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    width: 100%;
}

.ai-help-entry:hover {
    border-color: #bdcefa;
    box-shadow: 0 14px 34px rgba(44, 82, 160, 0.13);
}

.ai-help-entry-icon {
    align-items: center;
    background: linear-gradient(145deg, #376cf5, #7657e8);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(74, 87, 214, 0.22);
    display: flex;
    flex: 0 0 56px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.ai-help-entry-icon svg {
    fill: none;
    height: 34px;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 34px;
}

.ai-help-entry-content {
    flex: 1 1 auto;
    min-width: 0;
}

.ai-help-entry-badge {
    background: #e5edff;
    border-radius: 999px;
    color: #365db5;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 10px;
}

.ai-help-entry-title {
    color: #1f2f52;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 7px;
}

.ai-help-entry-description {
    color: #5c6881;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 4px;
}

.ai-help-entry-action {
    align-items: center;
    background: linear-gradient(135deg, #376cf5, #674fdc);
    border: 1px solid transparent;
    border-radius: 8px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    text-decoration: none;
    transition: background 200ms ease, box-shadow 200ms ease;
}

.ai-help-entry-action:hover {
    box-shadow: 0 8px 18px rgba(63, 84, 210, 0.24);
    color: #fff;
}

.ai-help-entry-action:focus-visible {
    box-shadow: 0 0 0 3px rgba(55, 108, 245, 0.26);
    outline: 2px solid #274ea8;
    outline-offset: 2px;
}

.ai-help-entry-action svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 18px;
}

@media screen and (max-width: 767px) {
    .ai-help-entry-wrap {
        margin-top: 16px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .ai-help-entry {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        padding: 18px;
    }

    .ai-help-entry-icon {
        border-radius: 12px;
        flex-basis: 48px;
        height: 48px;
        width: 48px;
    }

    .ai-help-entry-icon svg {
        height: 29px;
        width: 29px;
    }

    .ai-help-entry-content {
        flex-basis: calc(100% - 60px);
    }

    .ai-help-entry-title {
        font-size: 18px;
    }

    .ai-help-entry-description {
        font-size: 14px;
    }

    .ai-help-entry-action {
        margin-top: 4px;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-help-entry,
    .ai-help-entry-action {
        transition: none;
    }
}
