.tfmg-logbook {
  width: 100%;
}

.tfmg-logbook-posts {
  display: grid;
  gap: 2rem;
}

.tfmg-logbook-post {
  display: grid;
  grid-template-columns: minmax(15rem, 22.5rem) minmax(0, 1fr);
  gap: 1.875rem;
  align-items: start;
}

.tfmg-logbook-post-image {
  display: block;
  overflow: hidden;
  background: #d0d0d0;
}

.tfmg-logbook-post-image img {
  display: block;
  width: 100%;
  aspect-ratio: 360 / 255;
  object-fit: cover;
  transition: transform .2s ease;
}

.tfmg-logbook-post-image:hover img,
.tfmg-logbook-post-image:focus img {
  transform: scale(1.03);
}

.tfmg-logbook-post-body h2 {
  margin: .35rem 0 .75rem;
  color: #444;
  font-size: 1.55rem;
  line-height: 1.28;
}

.tfmg-logbook-post-body h2 a {
  color: inherit;
  text-decoration: none;
}

.tfmg-logbook-post-body h2 a:hover,
.tfmg-logbook-post-body h2 a:focus {
  color: #e87513;
}

.tfmg-logbook-intro {
  color: #666;
  font-size: 1rem;
  line-height: 1.55;
}

.tfmg-logbook-intro p {
  margin: 0 0 .8rem;
}

.tfmg-logbook-readmore {
  margin: .9rem 0 0;
}

.tfmg-logbook-readmore a {
  color: #e87513;
  text-decoration: none;
}

.tfmg-logbook-readmore a:hover,
.tfmg-logbook-readmore a:focus {
  color: #c95f10;
  text-decoration: underline;
}

.tfmg-logbook-pagination {
  margin-top: 2rem;
}

@media (max-width: 680px) {
  .tfmg-logbook-post {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tfmg-logbook-post-body h2 {
    font-size: 1.35rem;
  }
}
