/* ============================================
   CONTENT STYLES (Blog Posts, Pages)
   ============================================ */

.content {
  max-width: 100%;
  line-height: 1.8;
  color: #333;
}

/* Article Images - Increased border radius */
.post-slider.rounded,
.post-slider {
  border-radius: 24px !important;
  overflow: hidden;
}

.post-slider img {
  border-radius: 24px !important;
}

@media (min-width: 992px) {
  .content {
    font-size: 20px;
    line-height: 1.7;
  }
}

.content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--buzz-red);
}

.content h3 {
  margin-top: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content a {
  border-bottom: 2px solid rgba(244, 67, 54, 0.3);
  transition: var(--transition-base);
  text-decoration: none;
  font-weight: 500;
}

.content a:hover {
  border-bottom-color: var(--buzz-red);
  color: var(--buzz-red);
}

/* Blockquotes */
.content blockquote {
  position: relative;
  padding: 24px 32px;
  margin: 32px 0;
  background: linear-gradient(90deg, rgba(244, 67, 54, 0.05) 0%, rgba(244, 67, 54, 0.02) 100%);
  border-left: 4px solid var(--buzz-red);
  border-radius: var(--radius-sm);
  font-style: italic;
  box-shadow: var(--shadow-md);
}

.content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: rgba(244, 67, 54, 0.2);
  font-family: Georgia, serif;
}

/* Code Blocks */
.content pre {
  border-radius: var(--radius-sm);
  padding: 20px;
  background: #1e1e1e;
  color: #d4d4d4;
  overflow-x: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #2d2d2d;
}

.content code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
}

/* Lists */
.content ul li::before {
  background: var(--buzz-red);
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.1);
}

/* Tables */
.content table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content thead {
  background: linear-gradient(135deg, var(--buzz-red) 0%, var(--buzz-red-dark) 100%);
  color: var(--white);
}

.content thead th {
  color: var(--white);
  font-weight: 600;
  padding: 16px;
}

.content tbody tr {
  transition: background-color var(--transition-base);
}

.content tbody tr:hover {
  background-color: rgba(244, 67, 54, 0.05);
}

/* Single Post Meta */
.single-post-meta {
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 40px 0;
}

.post-meta-tags a,
.post-meta-tags a:hover,
.post-meta-tags a:focus,
.post-meta-tags a:active,
.post-meta-tags li a,
.post-meta-tags li a:hover,
.single-post-meta a,
.single-post-meta a:hover {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

/* Author Section */
.single-post-author {
  padding: 32px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: var(--radius-xl);
  margin: 48px 0;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.single-post-author:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.single-post-author img {
  transition: transform var(--transition-slow);
  object-fit: cover;
  border-radius: 50%;
}

.single-post-author:hover img {
  transform: scale(1.05);
}

/* Related Posts */
.single-post-similer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.single-post-similer h3 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.single-post-similer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--buzz-red), #FF6B6B);
  border-radius: 2px;
}

/* Section Spacing */
.section-sm {
  padding: 100px 0;
}

/* Pagination - Match tags style */
.pagination {
  margin-top: 60px;
}

.pagination .page-link {
  border-radius: 6px !important;
  transition: all var(--transition-base) !important;
  font-weight: 600;
  background: transparent !important;
  color: inherit !important;
  padding: 10px 15px !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
}

.pagination .page-link:hover {
  background: rgba(244, 67, 54, 0.1) !important;
  transform: translateX(4px) !important;
  color: var(--buzz-red) !important;
  box-shadow: none !important;
}

.pagination .page-item.active .page-link {
  background: rgba(244, 67, 54, 0.1) !important;
  color: var(--buzz-red) !important;
  box-shadow: none !important;
}

