.agent-type {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.agent-type > .tag {
    width: 100%;
    box-sizing: border-box;
}

@container (min-width: 40rem) {
    .agent-type {
        flex-direction: revert;
    }
    
    .agent-type > .tag {
        width: revert;
    }
}
