/* =====================
   BLOG HERO
===================== */
.blog-hero {
  position: relative;
  height: clamp(200px, 30vw, 280px);
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #1a365d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(72, 187, 120, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 4vw, 30px);
}

.blog-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 clamp(8px, 1.5vw, 14px);
  letter-spacing: -0.5px;
}

.blog-hero p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =====================
   BLOG MAIN
===================== */
.blog-main {
  min-height: 60vh;
  background: #f8fafc;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 50px) clamp(16px, 3vw, 24px) clamp(50px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(24px, 4vw, 40px);
}

.blog-content {
  min-width: 0;
}

/* =====================
   BLOG GRID
===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

/* =====================
   BLOG CARDS
===================== */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 54, 93, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}

.blog-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-no-image {
  background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
}

.blog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #1a365d;
  opacity: 0.3;
}

.blog-card-body {
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.blog-date svg {
  color: #48bb78;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  color: #48bb78;
  background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-card-title {
  margin: 0 0 12px;
}

.blog-card-title a {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 700;
  color: #1a365d;
  line-height: 1.4;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a:hover {
  color: #48bb78;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 auto;
  padding-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #48bb78;
  transition: all 0.2s;
}

.blog-read-more:hover {
  color: #38a169;
  gap: 10px;
}

.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* Featured Card (first post) */
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.blog-card-featured .blog-card-image {
  height: 100%;
  min-height: 300px;
}

.blog-card-featured .blog-card-body {
  padding: clamp(24px, 3vw, 36px);
  justify-content: center;
}

.blog-card-featured .blog-card-title a {
  font-size: clamp(20px, 2.5vw, 26px);
}

.blog-card-featured .blog-card-excerpt {
  -webkit-line-clamp: 4;
  font-size: 15px;
}

/* =====================
   PAGINATION
===================== */
.blog-pagination {
  margin-top: 50px;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: all 0.25s;
}

.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  color: #fff;
  border-color: #1a365d;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
}

.blog-pagination .page-numbers:hover:not(.current) {
  border-color: #48bb78;
  color: #48bb78;
  transform: translateY(-2px);
}

/* =====================
   EMPTY STATE
===================== */
.blog-empty {
  padding: 80px 20px;
  text-align: center;
}

.blog-empty svg {
  margin-bottom: 20px;
  opacity: 0.4;
}

.blog-empty h2 {
  font-size: 24px;
  color: #1a365d;
  margin-bottom: 10px;
}

.blog-empty p {
  color: #888;
  font-size: 15px;
}

/* =====================
   SINGLE POST HERO
===================== */
.single-hero {
  position: relative;
  padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 30px) clamp(30px, 4vw, 50px);
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #1a365d 100%);
  text-align: center;
}

.single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(72, 187, 120, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(72, 187, 120, 0.08) 0%, transparent 50%);
}

.single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.single-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 16px);
  margin-bottom: clamp(14px, 2.5vw, 20px);
  flex-wrap: wrap;
}

.single-hero-category {
  font-size: 11px;
  font-weight: 700;
  color: #48bb78;
  background: rgba(72, 187, 120, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s;
}

.single-hero-category:hover {
  background: rgba(72, 187, 120, 0.25);
}

.single-hero-date,
.single-hero-readtime {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.single-hero-date svg,
.single-hero-readtime svg {
  opacity: 0.7;
}

.single-hero-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 clamp(14px, 2.5vw, 20px);
  letter-spacing: -0.3px;
}

.single-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

.single-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.single-hero-breadcrumb a:hover {
  color: #48bb78;
}

.single-hero-breadcrumb svg {
  opacity: 0.4;
}

/* =====================
   SINGLE POST CONTENT
===================== */
.single-post-container {
  background: #fff;
}

.single-post {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.single-post-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(24px, 4vw, 36px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.single-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-content {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.85;
  color: #333;
}

.single-post-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  color: #1a365d;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f2f5;
}

.single-post-content h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #1a365d;
  margin-top: 28px;
  margin-bottom: 12px;
}

.single-post-content h4 {
  color: #1a365d;
  margin-top: 24px;
  margin-bottom: 10px;
}

.single-post-content p {
  margin-bottom: 20px;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.single-post-content a {
  color: #48bb78;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.single-post-content a:hover {
  color: #38a169;
  border-bottom-color: #38a169;
}

.single-post-content blockquote {
  border-left: 4px solid #48bb78;
  padding: 20px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0fff4 100%);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #555;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.single-post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Tags */
.single-post-tags {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
  margin-right: 4px;
}

.single-post-tags .tag {
  font-size: 13px;
  padding: 5px 16px;
  background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
  color: #48bb78;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}

.single-post-tags .tag:hover {
  background: #48bb78;
  color: #fff;
}

/* Share Box */
.single-post-share {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.25s;
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }
.share-email { background: #1a365d; }

/* Author Box */
.author-box {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  margin-top: 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(26, 54, 93, 0.05);
}

.author-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #48bb78;
}

.author-info {
  flex: 1;
}

.author-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #48bb78;
  font-weight: 600;
}

.author-name {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: #1a365d;
  margin: 4px 0 6px;
}

.author-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =====================
   POST NAVIGATION
===================== */
.post-nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(16px, 2.5vw, 22px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(26, 54, 93, 0.05);
  transition: all 0.25s;
  text-decoration: none;
}

.post-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #48bb78;
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #48bb78;
  font-weight: 600;
}

.post-nav-title {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: #1a365d;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================
   COMMENTS
===================== */
.post-comments {
  margin-top: 30px;
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(26, 54, 93, 0.05);
}

.post-comments .comments-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #48bb78;
}

.post-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-comments .comment {
  padding: 20px 0;
  border-bottom: 1px solid #f0f2f5;
}

.post-comments .comment:last-child {
  border-bottom: none;
}

.post-comments .comment-body {
  display: flex;
  gap: 16px;
}

.post-comments .comment-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
}

.post-comments .comment-meta {
  flex: 1;
}

.post-comments .comment-author .fn {
  font-weight: 700;
  color: #1a365d;
  font-size: 15px;
  font-style: normal;
}

.post-comments .comment-metadata {
  margin-top: 4px;
}

.post-comments .comment-metadata a {
  font-size: 12px;
  color: #999;
  text-decoration: none;
}

.post-comments .comment-content {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.post-comments .comment-content p {
  margin: 0 0 10px;
}

.post-comments .reply a {
  font-size: 12px;
  font-weight: 600;
  color: #48bb78;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.post-comments .reply a:hover {
  color: #38a169;
}

.post-comments .children {
  list-style: none;
  padding-left: clamp(20px, 3vw, 40px);
  margin: 0;
  border-left: 2px solid #f0f2f5;
}

/* Comment Form */
.post-comments .comment-respond {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #f0f2f5;
}

.post-comments .comment-reply-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 6px;
}

.post-comments .comment-notes {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.post-comments .comment-form-comment label,
.post-comments .comment-form-author label,
.post-comments .comment-form-email label,
.post-comments .comment-form-url label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 6px;
}

.post-comments .comment-form-comment textarea,
.post-comments .comment-form-author input,
.post-comments .comment-form-email input,
.post-comments .comment-form-url input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafbfc;
  box-sizing: border-box;
}

.post-comments .comment-form-comment textarea:focus,
.post-comments .comment-form-author input:focus,
.post-comments .comment-form-email input:focus,
.post-comments .comment-form-url input:focus {
  border-color: #48bb78;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
  background: #fff;
}

.post-comments .comment-form-comment textarea {
  min-height: 140px;
  resize: vertical;
}

.post-comments .comment-form-comment,
.post-comments .comment-form-author,
.post-comments .comment-form-email,
.post-comments .comment-form-url {
  margin-bottom: 16px;
}

.post-comments .form-submit .submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
}

.post-comments .form-submit .submit:hover {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  box-shadow: 0 4px 16px rgba(72, 187, 120, 0.35);
  transform: translateY(-2px);
}

.post-comments .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #666;
}

.post-comments .comment-form-cookies-consent input[type="checkbox"] {
  accent-color: #48bb78;
  width: 16px;
  height: 16px;
}

/* =====================
   ARCHIVE HEADER
===================== */
.archive-header {
  margin-bottom: 30px;
}

.archive-header h1 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #1a365d;
}

.archive-description {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
}

/* =====================
   SIDEBAR
===================== */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: #fff;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 54, 93, 0.06);
}

.widget-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #48bb78;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget li {
  margin-bottom: 0;
  border-bottom: 1px solid #f5f5f5;
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget li a {
  display: block;
  padding: 10px 0;
  color: #555;
  font-size: 14px;
  transition: all 0.2s;
}

.sidebar-widget li a:hover {
  color: #48bb78;
  padding-left: 6px;
}

/* Search Widget */
.sidebar-widget .search-form {
  display: flex;
  gap: 0;
}

.sidebar-widget .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.sidebar-widget .search-field:focus {
  border-color: #48bb78;
}

.sidebar-widget .search-submit {
  padding: 12px 18px;
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.sidebar-widget .search-submit:hover {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

/* CTA Widget in Sidebar */
.sidebar-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: none;
}

.sidebar-cta h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 10px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.sidebar-cta a {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.35);
}

.sidebar-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(72, 187, 120, 0.45);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .blog-card-image {
    min-height: 220px;
  }

  .post-nav-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .single-hero-meta {
    gap: 8px;
  }

  .single-post-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .post-comments .comment-body {
    flex-direction: column;
    gap: 10px;
  }
}
