.row-insight {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1rem;
    gap: 1rem;
}

.row-insight:last-child {
    border-bottom: none;
}

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

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

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

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

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

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