main {
  background-color: var(--color-off-white);
}

.post__article {
  padding-top: 50px;
}

.post__header {
  text-align: center;
  margin-bottom: 50px;
}

.post__header h1 {
  font-size: 3rem;
  color: var(--text-primary-blue);
  line-height: 1.2;
  margin: 15px 0;
}

.post__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.post__meta {
  color: var(--text-secondary-dark);
  font-size: 0.9rem;
}

.post__image img {
  width: 100%;
  border-radius: 30px;
  height: 450px;
  object-fit: cover;
  margin-bottom: 60px;
}

.post__container p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary-dark);
  margin-bottom: 25px;
}

.post__container h2 {
  font-size: 1.8rem;
  color: var(--text-primary-blue);
  margin: 40px 0 20px;
}

.post__lead {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: var(--color-primary) !important;
}

blockquote {
  border-left: 5px solid var(--text-primary-blue);
  padding-left: 30px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-primary-dark);
}

.post__footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.post__tags {
  color: var(--text-primary-dark);
}

.post__back {
  margin-bottom: 30px;
  color: var(--text-primary-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 15px;
  padding: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.post__back:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 1300px) {
  .post__container {
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .post__header h1 {
    font-size: 2.6rem;
  }

  .post__image img {
    height: 380px;
    border-radius: 24px;
    margin-bottom: 50px;
  }

  .post__container p {
    font-size: 1.1rem;
  }

  blockquote {
    font-size: 1.35rem;
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .post__header {
    margin-bottom: 35px;
  }

  .post__header h1 {
    font-size: 2.2rem;
  }

  .post__meta {
    font-size: 0.85rem;
  }

  .post__image img {
    height: 300px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .post__container p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .post__container h2 {
    font-size: 1.6rem;
    margin: 35px 0 15px;
  }

  .post__lead {
    font-size: 1.25rem;
  }

  blockquote {
    font-size: 1.25rem;
    margin: 35px 0;
  }
}

@media (max-width: 480px) {
  .post__article {
    padding-top: 30px;
  }

  .post__header h1 {
    font-size: 1.85rem;
  }

  .post__image img {
    height: 220px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .post__container p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .post__container h2 {
    font-size: 1.4rem;
  }

  .post__lead {
    font-size: 1.15rem !important;
  }

  blockquote {
    font-size: 1.15rem;
    padding-left: 18px;
    border-left-width: 4px;
  }

  .post__back {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}
