body {
  background: #f8f9fa;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
.post-main-container {
  max-width: 820px;
  margin: 36px auto 0 auto;
  padding: 0 12px 32px 12px;
}
.post-card {
  will-change: transform;
  transform: translateZ(0);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 36px 28px 28px 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  width: 100%;
  display: block;
}
.post-title {
  font-family: 'Natasha', Arial, sans-serif;
  font-size: 2em;
  color: var(--black);
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 1.08em;
  margin-bottom: 18px;
}
.post-dot {
  font-size: 1.2em;
  color: var(--black);
}
.post-author {
  font-size: 1em;
  font-family: 'Gotham Pro Bold', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  margin: 30px 0;
  color: rgb(205,19,45);
  text-align: center;
}
.post-date {
  font-style: italic;
}
.post-image {
  width: 100%;
  max-width: 676px;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(201,50,39,0.08);
  object-fit: cover;
}
.post-content {
  font-size: 1.18em;
  line-height: 1.4;
  margin-bottom: 22px;
  color: #222;
  width: 100%;
  display: block;
  text-wrap: balance;
}
.post-content a {
  color: #272fc9;
  font-size: 1em;
  text-decoration: underline;
  transition: background 0.2s, color 0.2s;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.post-tags a {
  background: #ffe6e3;
  color: #c93227;
  border-radius: 7px;
  padding: 6px 16px;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.post-tags a:hover {
  background: #c93227;
  color: #fff;
}
.post-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 8px;
}
.share-btn {
  background: #fff;
  border: 1.5px solid #c93227;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.share-btn:hover {
  background: #ffe6e3;
  border: 1.5px solid #a51e1e;
}
.back-button {
  display: inline-block;
  margin: 0 auto 32px auto;
  background: #c93227;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(201,50,39,0.08);
  transition: background 0.2s;
  text-align: center;
}
.back-button:hover {
  background: #a51e1e;
}
.related-materials-container {
  margin-top: 18px;
}
.related-materials-container h2 {
  font-family: 'Natasha', Arial, sans-serif;
  font-size: 1.5em;
  color: #c93227;
  margin-bottom: 10px;
  margin-left: 0;
  display: block;
  text-align: left;
}
.related-flex {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.related-card {
  background: #fff6f5;
  border: 1.5px solid #c93227;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(201,50,39,0.08);
  padding: 12px 10px 10px 10px;
  min-width: 160px;
  max-width: 180px;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  cursor: pointer;
}
.related-card:hover {
  box-shadow: 0 6px 24px rgba(201,50,39,0.13);
  border: 1.5px solid #a51e1e;
}
.related-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
  object-fit: cover;
}
.related-title {
  font-family: 'Natasha', Arial, sans-serif;
  font-size: 1.5em;
  color: #c93227;
  margin-bottom: 10px;
  margin-left: 0;
  display: block;
  text-align: left;
}

.related-post-title {
  font-family: 'Natasha', Arial, sans-serif;
  font-size: 1.5em;
  color: var(--black);
  margin-bottom: 10px;
  margin-left: 0;
  display: block;
  text-align: left;
}
.related-author {
  font-size: 1em;
  font-family: 'Gotham Pro Bold', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  margin: 30px 0;
  color: rgb(205,19,45);
  text-align: center;
  padding-right: 7px;
  border-right: 2px solid var(--black);
}
.related-date {
  font-size: 1em;
  color: var(--black);
  margin-left: 8px;
}
.related-description {
  font-size: 1em;
  color: #222;
  margin: 18px 0 10px 0;
  text-align: justify;
  line-height: 1.4;
}

blockquote {
    border-left: 4px solid #c93227;
    background: #fff6f5;
    margin: 18px 0;
    padding: 12px 18px;
    color: #444;
    font-style: italic;
    border-radius: 8px;
    font-size: 1.08em;
    line-height: 1.3;
}
@media (max-width: 650px) {
  .post-main-container {
    padding: 0 2vw 32px 2vw;
  }
  .post-card {
    width: 100%;
    max-width: 100%;
    padding: 18px 6px 18px 6px;
  }
  .post-content {
    font-size: 1em;
  }
  .related-flex {
    flex-direction: column;
    align-items: center;
  }
  .related-card {
    min-width: 90%;
    max-width: 90%;
    padding: 12px;
  }
  .related-post-title {
    font-family: 'Natasha', Arial, sans-serif;
    font-size: 2em;
    color: var(--black);
    margin-bottom: 10px;
    margin-left: 0;
    display: block;
    text-align: left;
  }
  .related-author {
    font-size: 1em;
    font-family: 'Gotham Pro Bold', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 30px 0;
    color: rgb(205,19,45);
    text-align: center;
    padding-right: 7px;
    border-right: 2px solid var(--black);
  }
  .related-date {
    font-size: 1em;
    color: var(--black);
    margin-left: 8px;
  }
  .related-description {
    font-size: 1.15em;
    color: #222;
    margin: 18px 0 10px 0;
    text-align: justify;
    line-height: 1.4;
  }
}
.img-maxw-100 {
  max-width: 100%;
}
.color-red {
  color: #c93227;
} 

.post-classic-author {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(201, 50, 39, 0.05);
  border-left: 3px solid #c93227;
  font-style: italic;
  color: #444;
}

.classic-author-text {
  margin: 0;
  font-size: 16px;
}
