/* content.css — article/post-content styling for page.php and single.php */

/* Posts/Articles ---------- */
.post h2 {
  font-weight: 200;
}
article div.post-meta:last-of-type {
  border: 0;
}
article .post-meta a {
  color: #888888;
  text-decoration: none;
}
.post-meta .post-element {
  padding: 1rem;
  border-left: 1px solid;
}
article .post-meta a:hover {
  color: rgba(136, 136, 136, 0.5);
}
#blogroll article .the-content {
  display: grid;
  column-gap: 2em;
}
article .the-content a:not(.wp-element-button) {
  font-weight: 900;
  text-decoration: underline;
}
article .the-content p {
  color: #191919;
  grid-column-start: 1;
  grid-column-end: span 2;
  text-align: left;
}
article .the-content p:first-of-type {
  grid-column-end: 1;
}
article .the-content .wp-block-image {
  margin: 1rem;
}
.page-id-329 .wp-block-image:nth-of-type(2) {
  float: left;
}
article .meta {
  line-height: 14.8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
article .meta div {
  margin: 1px auto;
}
article .meta .post-categories {
  list-style: none;
  margin: 0 0 10px 0;
}
article .meta .post-categories li {
  display: inline-block;
  margin-right: 10px;
}
article iframe {
  grid-column-start: 1;
  grid-column-end: span 2;
}
#post-thumbnail {
  text-align: center;
}
#post-thumbnail img {
  height: auto;
}

/* CSS aspect-ratio replacement for FitVids (retired in v3.23).
   Makes embedded iframes/objects/embeds responsive natively — no JS wrapper needed.
   aspect-ratio has been baseline-widely-available since 2021. */
.the-content iframe,
.the-content object,
.the-content embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* single.php sidebar meta block ---------- */
.meta div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.meta div a {
  align-self: start;
}
.meta .posted-on-title,
.meta .category,
.meta .tags {
  margin-bottom: 1rem;
}

/* Comments */
#comments {
  padding: 1rem;
}
#comments:target {
  height: unset;
}
h3#comments {
  margin-bottom: 80px;
}
.comment-list {
  height: 46rem;
  overflow: auto;
  list-style: none;
  margin: 0;
}
.comment-list .comment-body {
  border-radius: var(--radius);
  background: white;
  margin: 2rem 0;
  padding: 20px;
  position: relative;
  list-style: none;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.comment-list .comment-author {
  float: left;
  margin-right: 10px;
}
.comment-list .comment-author img {
  left: -50px;
  top: 5px;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.comment-list .comment-author .says {
  display: none;
}
.comment-meta {
  margin-bottom: 10px;
}
.comment-subscription-form,
.comment-subscription-form {
  margin-bottom: 0;
}
#respond {
  margin-bottom: 80px;
}
#respond > h3 {
  margin: 2rem 0;
}
#respond form label {
  color: #888888;
}
.comment-form p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}
span.required {
  display: contents;
}

@media only screen and (max-width: 960px) {
  .comment-list {
    height: unset;
  }
}

/* event-meta.php .info block ---------- */
.event .info {
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 0 2rem;
  flex-wrap: wrap;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
}
.event .info div:last-of-type {
  border: none;
}
