.post-container {
  padding-top: 97px;

  h1 {
    font-size: 30px;
    text-transform: none;
    color: var(--black);
    line-height: 38px;
  }

  h2, h3, h4, h5, h6 {
    text-transform: none;
    color: var(--black);
    margin-bottom: 8px;
  }

  p {
    margin: revert;
  }

  .post-date {
    color: var(--dark-grey);
    font-size: 14px;
  }
}

.post-image {
  overflow: hidden;
  position: relative;
  height: 192px;
  border-radius: 10px;

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition-duration: .3s;
  }
}

.sharing-section {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  width: 100%;
  margin-bottom: 32px;

  a.btn-twitter-outline,
  a.btn-linkedin-outline {
    height: 32px;
    width: 32px;
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  svg {
    font-size: 12px;
  }
}

.btn-bookmark {
  margin-left: auto;
  padding: 4px 16px !important;
  border: none;
}

.btn-bookmark:hover {
  color: var(--sw-dark-green);
}

.about-author {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 48px;
  margin: 64px 0;
  display: flex;
  gap: 24px;

  .username-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 24px;
    flex-shrink: 0;
  }
}

.subscribe-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
}

@media only screen and (max-width: 800px) {
  .post-image {
    margin-bottom: 28px;
  }

  .about-author {
    padding-top: 24px;
    margin: 32px 0;
  }

  .subscribe-card {
    padding: 24px;
  }
}
