/**
 * HostGate Blog Styles
 * Custom styles for blog posts and archive pages
 */

/* Main Content Area */
.site-main {
  background-color: #fff;
  min-height: 60vh;
}

.py-90 {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Remove body overflow issues */
body {
  overflow-x: hidden;
  overflow-y: auto !important;
}

html {
  overflow-y: auto !important;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.page-header .page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

/* Blog Layout - Main + Sidebar */
.blog-layout {
  display: grid !important;
  grid-template-columns: 1fr 320px !important;
  gap: 2.5rem !important;
  align-items: start !important;
  max-width: 100% !important;
}

.blog-main {
  min-width: 0 !important; /* Prevents grid blowout */
  width: 100% !important;
  max-width: 100% !important;
}

/* Override Bootstrap container-fluid padding for blog pages */
.site-main .container-fluid {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* Blog Posts - Masonry Grid */
.blog-posts {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

.blog-post {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  break-inside: avoid;
  width: 100% !important;
  max-width: 100% !important;
}

.blog-post:hover {
  box-shadow: 0 3px 12px rgba(0, 96, 254, 0.12);
  transform: translateY(-2px);
  border-color: #0060fe;
}

/* Post Thumbnail */
.post-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  max-height: 200px;
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-post:hover .post-thumbnail img {
  transform: scale(1.05);
}

/* Entry Header */
.entry-header {
  padding: 1.25rem 1.25rem 0;
}

.entry-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.entry-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #0060fe;
}

/* Entry Meta */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.entry-meta i {
  color: #0060fe;
  font-size: 0.75rem;
}

.entry-meta a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-meta a:hover {
  color: #0060fe;
}

/* Entry Content - Archive/List View */
.entry-content {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.entry-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.entry-content h2 { 
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.entry-content h3 { 
  font-size: 1.25rem;
}

.entry-content h4 { 
  font-size: 1.1rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.entry-content strong {
  font-weight: 700;
  color: #1a1a1a;
}

.entry-content code {
  background: #f5f8ff;
  color: #0060fe;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.875em;
  font-family: 'Monaco', 'Menlo', monospace;
}

.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid #0060fe;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #444;
}

.entry-content a {
  color: #0060fe;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.entry-content a:hover {
  color: #0048c8;
  border-bottom-color: #0048c8;
}

/* Read More Button - Minimal */
.entry-content .theme-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.entry-content .theme-btn.--fill-primary {
  background: #0060fe;
  color: #fff;
  border: none;
}

.entry-content .theme-btn.--fill-primary:hover {
  background: #0048c8;
  transform: translateX(3px);
}

/* Entry Footer */
.entry-footer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 1rem;
  padding-top: 1rem;
}

.tags-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tags-links i {
  color: #0060fe;
  font-size: 0.8rem;
}

.tags-links a {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #f5f8ff;
  color: #0060fe;
  border-radius: 15px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tags-links a:hover {
  background: #0060fe;
  color: #fff;
}

/* Single Post - Remove double wrapper padding */
.single-post {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border: none;
}

.single-post .post-thumbnail {
  border-radius: 8px;
  margin-bottom: 1.5rem;
  max-height: 400px;
}

.single-post .post-thumbnail img {
  height: 400px;
  object-fit: cover;
}

.single-post .entry-header {
  padding: 0;
  margin-bottom: 1.5rem;
}

.single-post .entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.single-post .entry-content {
  padding: 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
  max-width: 100%;
}

/* Typography for Single Post Content */
.single-post .entry-content > * {
  margin-bottom: 1.5rem;
}

.single-post .entry-content > *:last-child {
  margin-bottom: 0;
}

/* Headings - Beautiful hierarchy */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.single-post .entry-content h1:first-child,
.single-post .entry-content h2:first-child,
.single-post .entry-content h3:first-child,
.single-post .entry-content h4:first-child,
.single-post .entry-content h5:first-child,
.single-post .entry-content h6:first-child {
  margin-top: 0;
}

.single-post .entry-content h1 {
  font-size: 2.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #0060fe;
}

.single-post .entry-content h2 {
  font-size: 1.875rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e0e0e0;
}

.single-post .entry-content h3 {
  font-size: 1.5rem;
  color: #2a2a2a;
}

.single-post .entry-content h4 {
  font-size: 1.25rem;
  color: #3a3a3a;
}

.single-post .entry-content h5 {
  font-size: 1.125rem;
  color: #4a4a4a;
}

.single-post .entry-content h6 {
  font-size: 1rem;
  color: #5a5a5a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Paragraphs */
.single-post .entry-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Strong and Emphasis */
.single-post .entry-content strong,
.single-post .entry-content b {
  font-weight: 700;
  color: #1a1a1a;
}

.single-post .entry-content em,
.single-post .entry-content i {
  font-style: italic;
}

/* Links */
.single-post .entry-content a {
  color: #0060fe;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.single-post .entry-content a:hover {
  color: #0048c8;
  text-decoration-thickness: 2px;
}

/* Lists - Beautiful styling */
.single-post .entry-content ul,
.single-post .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.single-post .entry-content ul li,
.single-post .entry-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}

.single-post .entry-content ul li {
  list-style-type: none;
  position: relative;
}

.single-post .entry-content ul li::before {
  content: "•";
  color: #0060fe;
  font-size: 1.5em;
  line-height: 0;
  position: absolute;
  left: -1.5rem;
  top: 0.6em;
}

.single-post .entry-content ol {
  counter-reset: item;
}

.single-post .entry-content ol li {
  counter-increment: item;
  list-style-type: none;
  position: relative;
}

.single-post .entry-content ol li::before {
  content: counter(item) ".";
  color: #0060fe;
  font-weight: 700;
  position: absolute;
  left: -2rem;
}

/* Nested Lists */
.single-post .entry-content ul ul,
.single-post .entry-content ol ol,
.single-post .entry-content ul ol,
.single-post .entry-content ol ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Blockquotes - Modern style */
.single-post .entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: linear-gradient(135deg, #f5f8ff 0%, #fff 100%);
  border-left: 4px solid #0060fe;
  border-radius: 0 8px 8px 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2a2a2a;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0, 96, 254, 0.08);
}

.single-post .entry-content blockquote p {
  margin-bottom: 0.75rem;
}

.single-post .entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-post .entry-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
  font-weight: 600;
}

.single-post .entry-content blockquote cite::before {
  content: "— ";
}

/* Code - Inline */
.single-post .entry-content code {
  background: #f5f8ff;
  color: #0060fe;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
  border: 1px solid #e0ebff;
}

/* Code - Block */
.single-post .entry-content pre {
  background: #1a1a1a;
  color: #f8f8f2;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  line-height: 1.6;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.single-post .entry-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border: none;
  font-size: 0.9rem;
  border-radius: 0;
}

/* Images */
.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: block;
}

.single-post .entry-content figure {
  margin: 2rem 0;
}

.single-post .entry-content figure img {
  margin: 0;
}

.single-post .entry-content figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* Tables */
.single-post .entry-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.single-post .entry-content table thead {
  background: #0060fe;
  color: #fff;
}

.single-post .entry-content table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.single-post .entry-content table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.single-post .entry-content table tbody tr:hover {
  background: #f8f9fa;
}

.single-post .entry-content table tbody tr:last-child td {
  border-bottom: none;
}

/* Horizontal Rule */
.single-post .entry-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 3rem 0;
}

/* Iframe and Video */
.single-post .entry-content iframe {
  max-width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Definition Lists */
.single-post .entry-content dl {
  margin: 1.5rem 0;
}

.single-post .entry-content dt {
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.single-post .entry-content dd {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Mark/Highlight */
.single-post .entry-content mark {
  background: #fff8dc;
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

.single-post .entry-footer {
  padding: 0;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* Post Navigation */
.post-navigation {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation a {
  display: block;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
}

.post-navigation a:hover {
  border-color: #0060fe;
  box-shadow: 0 2px 8px rgba(0, 96, 254, 0.1);
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.35rem;
}

.post-navigation .nav-title {
  display: block;
  font-weight: 600;
  color: #0060fe;
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  margin: 2rem 0;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.65rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #0060fe;
  border-color: #0060fe;
  color: #fff;
}

/* Sidebar */
.widget-area {
  position: sticky;
  top: 80px;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
}

.widget {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  width: 100% !important;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #0060fe;
}

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

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

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

.widget a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget a:hover {
  color: #0060fe;
  padding-left: 0.5rem;
}

/* Search Widget */
.widget_search .search-form,
.search-form {
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.widget_search .search-form label,
.search-form label {
  flex: 1;
  margin: 0;
}

.widget_search input[type="search"],
.widget_search .search-field,
.search-form .search-field {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}

.widget_search button,
.widget_search .search-submit,
.search-form .search-submit {
  padding: 0.6rem 1.2rem;
  background: #0060fe;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.widget_search button:hover,
.widget_search .search-submit:hover,
.search-form .search-submit:hover {
  background: #0048c8;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* Recent Posts Widget */
.recent-posts-widget li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.recent-posts-widget .post-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-posts-widget .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-posts-widget .post-content {
  flex: 1;
}

.recent-posts-widget .post-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.recent-posts-widget .post-date {
  font-size: 0.8rem;
  color: #999;
}

/* Comments */
.comments-area {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 2.5rem;
  box-shadow: none;
  border: none;
  border-top: 1px solid #e0e0e0;
  padding-top: 2.5rem;
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

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

.comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.comment-body {
  display: flex;
  gap: 1rem;
}

.comment-author img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.comment-content {
  flex: 1;
}

.comment-metadata {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.comment-metadata a {
  color: #999;
  text-decoration: none;
}

.comment-text {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #555;
}

.reply a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #f5f8ff;
  color: #0060fe;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.reply a:hover {
  background: #0060fe;
  color: #fff;
}

/* Comment Form */
.comment-respond {
  margin-top: 2rem;
}

.comment-reply-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comment-form-comment textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 0.5rem;
}

.submit {
  padding: 0.65rem 1.5rem;
  background: #0060fe;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit:hover {
  background: #0048c8;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.no-results .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.no-results .page-content {
  color: #666;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 991px) {
  .py-90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .blog-posts {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 1.25rem !important;
  }

  .single-post .entry-title {
    font-size: 1.75rem;
  }

  .widget-area {
    position: static !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .page-header .page-title {
    font-size: 1.5rem;
  }

  .blog-posts {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .entry-title {
    font-size: 1.1rem;
  }

  .single-post .entry-title {
    font-size: 1.75rem;
  }

  /* Single post content - mobile responsive */
  .single-post .entry-content {
    font-size: 1rem;
  }

  .single-post .entry-content h1 {
    font-size: 1.75rem;
  }

  .single-post .entry-content h2 {
    font-size: 1.5rem;
  }

  .single-post .entry-content h3 {
    font-size: 1.25rem;
  }

  .single-post .entry-content h4 {
    font-size: 1.125rem;
  }

  .single-post .entry-content h5 {
    font-size: 1rem;
  }

  .single-post .entry-content h6 {
    font-size: 0.95rem;
  }

  .single-post .entry-content blockquote {
    margin: 1.5rem -0.5rem;
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 1rem;
  }

  .single-post .entry-content pre {
    margin: 1.5rem -0.5rem;
    padding: 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .single-post .entry-content table {
    font-size: 0.85rem;
  }

  .single-post .entry-content table th,
  .single-post .entry-content table td {
    padding: 0.75rem 0.5rem;
  }

  .single-post .entry-content ul,
  .single-post .entry-content ol {
    padding-left: 1.5rem;
  }

  .entry-meta {
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }

  .comment-body {
    flex-direction: column;
    gap: 0.75rem;
  }

  .comment-author img {
    width: 40px;
    height: 40px;
  }

  .post-thumbnail {
    max-height: 180px;
  }

  .post-thumbnail img {
    height: 180px;
  }

  .single-post .post-thumbnail {
    max-height: 300px;
  }

  .single-post .post-thumbnail img {
    height: 300px;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .single-post .entry-content {
    font-size: 1.0625rem;
  }

  .single-post .entry-content h1 {
    font-size: 2rem;
  }

  .single-post .entry-content h2 {
    font-size: 1.75rem;
  }

  .single-post .entry-title {
    font-size: 1.875rem;
  }
}

