.ask-artie {
    border-radius: 3px;
    padding: 0;
}

.ask-artie__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.ask-artie__avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 4px solid var(--dim-color, #3e57a3);
    overflow: hidden;
}

.ask-artie__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ask-artie__title {
    margin: 0;
    color: #000;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.ask-artie__intro {
    margin: 0 0 1rem;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.ask-artie__prompts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artie-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background-color: #3e57a3;
    border: none;
    border-radius: 15px;
    padding: 0.65rem 1rem;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.artie-prompt:hover {
    background-color: #5570bb;
    transform: scale(1.01);
}

.artie-prompt-question {
    color: #fff;
    flex: 1;
}

.artie-prompt::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 1.1em;
    height: 1.1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.artie-prompt:hover::after {
    opacity: 1;
}

.ask-artie__footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.artie-start {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    padding: 0.55rem 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Open Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.artie-start:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
