/*
** .post__contents
*/

.post__contents {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 1em;
}

.post__date {
  font-size: 0.8em;
}

.post__title {
  font-size: 1.25em;
}


/*
** .c-button
*/

.c-button {
  text-align: center;
}


/*
** .post__body
*/

.post__body strong {
  font-weight: bold;
}

.post__body em {
  font-style: italic;
}

.post__body p {
  font-size: 1em;
}

.post__body h1,
.post__body h2,
.post__body h3,
.post__body h4,
.post__body h5,
.post__body h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1em;
}

.post__body h1:not(:first-child),
.post__body h2:not(:first-child),
.post__body h3:not(:first-child),
.post__body h4:not(:first-child),
.post__body h5:not(:first-child),
.post__body h6:not(:first-child) {
  margin-top: 1em;
}

.post__body h1 {
  font-size: 1.75em;
}

.post__body h2 {
  font-size: 1.5em;
}

.post__body h3 {
  font-size: 1.4em;
}

.post__body h4 {
  font-size: 1.3em;
}

.post__body h5 {
  font-size: 1.2em;
}

.post__body h6 {
  font-size: 1.1em;
}

.post__body a:not([class*="button"]) {
  color: var(--main);
  text-decoration: underline;
}

.post__body .wp-block-file:not(.wp-element-button) {
  font-size: 1em;
}

.post__body .wp-block-file__button {
  padding: 0.5em 1em;
}