.cuff {
  display: flex;
  align-items: center;
  
  @media (max-width: 1100px) {
    width: 100%;
  }
}

.cuff__headline {
  display: flex;
  align-items: center;
  letter-spacing: .2px;
  font: var(--mini);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;

  @media (max-width: 1100px) {
    margin: 0 auto;
  }
}

.cuff__headline:after {
  content: '▼';
  position: relative;
  display: block;
  top: -5px;
  font-size: 3rem;
  font-weight: 500;
  margin-left: .35rem;
  line-height: 0;
}

.cuff__body {
  display: none;
}