.post .cover-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.post section img {
  display: block;
  width: 100%;
  height: auto;
}

.post article {
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
}

.post h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.1;
}

.post a,
.post button,
.post .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.post .header-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.youtube-embed-lazy .youtube-embed-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.share-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
}

.post-layout {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 4rem);
  overflow: hidden;
}

.post-scrollable {
  flex: 1;
  overflow-y: auto;
}

.post-layout lexxy-toolbar {
  position: sticky;
  top: 0;
}

@media (max-width: 576px) {
  .post .cover-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .post footer .row {
    row-gap: 1rem;
  }

  .post footer .col {
    flex: 0 0 100%;
  }

  .post footer .justify-content-end {
    justify-content: flex-start !important;
  }

  .post-layout {
    min-height: calc(100dvh - 4rem);
    height: auto;
  }

  .post-scrollable {
    overflow-y: visible;
  }

  .post-layout footer {
    position: sticky;
    bottom: 0;
    background: var(--bs-body-bg);
    z-index: 10;
  }
}
