.insight-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.insight-row > .left-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.insight-row > .left-container > .title {
    font-weight: bold;
    color: black;
}

.insight-row > .left-container > .description {
    white-space: nowrap;
}

.insight-row > .right-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.insight-row > .right-container > .link {
    white-space: nowrap;
}

@container (min-width: 60rem) {
    .insight-row {
        flex-direction: row;
    }
}
