.workshops {
  & .item {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding: 1rem 2rem;
    background-color: #fff;
    border-radius: 2px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    &:has(.link:hover) {
      border: 1px solid #999;
    }
  }
  & .headline {
    font-size: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
  }
  & p {
    text-wrap: balance;
  }
  & .link {
    position: absolute;
    inset: 0;
    font-size: 1rem;
    text-indent: -9999px;
  }

  & .count {
    white-space: nowrap;
    font-size: 1rem;
    color: #666;
  }
}
