.bot-about-card {
    display: grid;
    grid-template-columns: clamp(140px, 18vw, 220px) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: center;
}

.bot-about-card::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(10, 12, 20, 0.08), rgba(10, 12, 20, 0.28)),
        url('/images/muckfe-bot-avatar.png') center/cover no-repeat;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

.bot-about-avatar {
    display: none;
}

.bot-about-copy {
    min-width: 0;
}

@media (max-width: 760px) {
    .bot-about-card {
        grid-template-columns: 1fr;
    }

    .bot-about-card::before {
        width: min(14rem, 100%);
        margin: 0 auto;
    }
}

html[data-theme="inferno"] .bot-about-card::before {
    box-shadow:
        0 1.5rem 3rem rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(255, 163, 74, 0.24);
}
