/* Multimedia - dedykowane style */

.lead {
  font-size: var(--font-size-md);
  color: var(--gray-700);
  max-width: 60ch;
  margin-bottom: var(--space-5);
}

.info-block {
  margin-bottom: var(--space-6);
}

.card h3 {
  font-size: var(--font-size-md);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.card video {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

figure img {
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
figure figcaption {
  font-size: var(--font-size-xs);
  color: var(--gray-600);
  margin-top: var(--space-1);
  text-align: center;
}

@media (max-width: 700px) {
  .lead { font-size: var(--font-size-base); }
  .card video {
    min-width: 0;
    max-width: 100vw;
    height: auto;
  }
  figure img {
    width: 100%;
    max-width: 100vw;
    height: auto;
  }
}

nav.mt-4 {
  margin-top: var(--space-6);
  display: flex;
  justify-content: flex-end;
}
nav.mt-4 .button {
  font-size: var(--font-size-md);
  padding: 0.75em 2em;
}
