2

If the name of the creator of a podcast is too long and extends over several lines, the height of the box is transferred to the other two boxes (duration and date).

without custom css:

with custom css:

The boxes should be individually controllable via CSS, or at least that their height is not dependent on the other elements.

    8 days later

    I don't have access to your custom CSS, but have you tried setting align-items: start on .episode_meta? I think I was able to accomplish the effect you're going for by setting this custom CSS:

    .episode_meta {
      align-items: start;
    }
    .episode_meta > * {
      background: var(--primary-200);
      border-radius: 4px;
      padding: 4px;
    }
      No one is typing