.intro {
    display: flex;
    gap: 30px;
    max-width: 700px;
    flex-wrap: wrap-reverse;
}

.left {
    flex: 0 0 auto;
    white-space: nowrap;
}

.right {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.profile {
    width: 100%;
    max-width: 264px;
    margin: 0 0 10px 0;
    border-radius: var(--radius);
}

.askAI {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid var(--border-main);
    background: var(--bg-panel);
    border-radius: var(--radius);

    display: inline-block;
}

.askButton {
    display: block;
    margin-bottom: 10px;
    padding: 20px 64px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;

    color: var(--text-highlight);
    border: 1px solid var(--text-highlight);
    border-radius: var(--radius);
}

.askButton:hover {
    background: var(--text-highlight);
    color: #000;
}

.askAI p {
    margin: 5px 0 10px 0;
}