.autoButton {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
    border-radius: 12px;
    height: 220px;
}
.autoButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.autoBadge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 12px;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 4px 8px;
}
.autoIconWrap {
    width: 48px;
    height: 48px;
    color: #60A5FA;
    margin: 8px 0 4px;
}
.autoTitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #111827;
}
.autoDesc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
