  .card-masthead__content {
  width: 100%;
}

.addtocal__wrapper {
  display: flex;
  align-items: center;
}

.addtocal-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

.card-masthead__badges {
  display: flex;
  flex-wrap: wrap;
  gap: calc(11 / 16 * 1rem);
}

/* The read more expanding section is hiding the add to calendar link. I don't want to go overboard
   correcting this so I'll put that here and make it specific to this use case. */
#more-dates__content[aria-hidden=false]  {
  .more-dates__content--inner {
    overflow: hidden;
    animation: overflowfix 0.3s forwards;
  }
}

@keyframes overflowfix {
  0% {
    overflow: hidden;
  }

  99.9% {
    overflow: hidden;
  }

  100% {
    overflow: visible;
  }
}