* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1d2327;
  background: #f0f0f1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.site {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 0 1px #dcdcde;
}

.site-header,
.site-footer {
  padding: 20px 28px;
  background: #1d2327;
  color: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-title,
.site-description,
.site-footer p {
  margin: 0;
}

.site-title {
  font-size: 24px;
  font-weight: 600;
}

.site-description {
  color: #c3c4c7;
}

.main-navigation {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-navigation a {
  color: #fff;
  text-decoration: none;
}

.main-navigation a:hover {
  text-decoration: underline;
}

.site-main {
  padding: 32px 28px 44px;
}

.entry-title {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 500;
}

.wp-block-video {
  margin: 0;
}

.wp-video-shortcode {
  display: block;
  width: 100%;
  max-height: 75vh;
  background: #000;
}

figcaption {
  margin-top: 10px;
  color: #646970;
  font-size: 14px;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-title {
    font-size: 28px;
  }
}
