.material-videos {
  background: #fff;
}

.material-videos--page {
  padding-top: calc(var(--navbar-height, 88px) + 3rem) !important;
}

.material-videos__header {
  max-width: 680px;
}

.material-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
}

.material-video-card__media {
  background: #111;
}

.material-video-card__media iframe {
  border: 0;
}

.material-video-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.material-video-card__body a {
  color: var(--rosa1, #d64b7e);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.material-video-card__body a:hover,
.material-video-card__body a:focus {
  color: var(--rosa1, #d64b7e);
  opacity: 0.82;
}

@media (max-width: 575.98px) {
  .material-videos {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .material-video-card__body {
    padding: 1rem;
  }
}

.download-resource-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(214, 75, 126, 0.18);
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-resource-card:hover,
.download-resource-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(214, 75, 126, 0.45);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.download-resource-card:focus-visible {
  outline: 3px solid rgba(214, 75, 126, 0.28);
  outline-offset: 4px;
}

.download-resource-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rosa1, #d64b7e);
  color: #fff;
  font-size: 2rem;
}

.download-resource-card__content {
  flex: 1;
}

.download-resource-card__label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--rosa1, #d64b7e);
  font-size: 0.875rem;
  font-weight: 700;
}

.download-resource-card__action {
  color: var(--rosa1, #d64b7e);
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.download-resource-card:hover .download-resource-card__action,
.download-resource-card:focus-visible .download-resource-card__action {
  transform: translate(3px, -3px);
}

@media (max-width: 575.98px) {
  .download-resource-card {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .download-resource-card__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.6rem;
  }

  .download-resource-card__action {
    display: none;
  }
}