.blog-main {
  padding-top: 120px;
  min-height: calc(100vh - 200px);
}
.blog-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}
.blog-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--text, #2d3748);
  font-family: Georgia, serif;
}
.blog-header p {
  font-size: 1.2rem;
  color: var(--text-muted, #718096);
  max-width: 600px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-card {
  background: var(--surface, #fff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.blog-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-muted, #f7f8f9);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date {
  font-size: 0.9rem;
  color: var(--text-muted, #718096);
  margin-bottom: 12px;
  display: block;
}
.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card h2 a {
  color: var(--text, #2d3748);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card h2 a:hover {
  color: var(--accent, #EF4A40);
}
.blog-excerpt {
  color: var(--text-muted, #718096);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  font-size: 0.95rem;
}
.blog-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted, #718096);
  font-size: 1.1rem;
}
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.blog-featured-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 32px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blog-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.blog-post-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border, #e2e8f0);
}
.blog-post-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-top: 16px;
  color: var(--text, #2d3748);
  font-family: Georgia, serif;
}
.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text, #2d3748);
}
.blog-post-content h2 {
  font-size: 2rem;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--text, #2d3748);
  font-family: Georgia, serif;
}
.blog-post-content h3 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text, #2d3748);
}
.blog-post-content p {
  margin-bottom: 24px;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blog-post-content a {
  color: var(--accent, #EF4A40);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.blog-post-content a:hover {
  color: var(--accent-dark, #d43a30);
}
.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}
.blog-post-content li {
  margin-bottom: 12px;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--accent, #EF4A40);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-muted, #718096);
}
.blog-post-content code {
  background: var(--bg-muted, #f7f8f9);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}
.blog-post-content pre {
  background: var(--bg-muted, #f7f8f9);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}
.blog-post-content pre code {
  background: none;
  padding: 0;
}
.blog-share {
  margin: 48px 0 !important;
  padding: 32px !important;
  background: #f7f8f9 !important;
  border-radius: 12px !important;
  display: block !important;
}
.blog-share h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #2d3748;
  font-weight: 600;
}
.share-buttons {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
  background: #fff !important;
  color: #2d3748 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  min-width: 140px !important;
  font-family: inherit !important;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.share-btn:focus {
  outline: 2px solid #EF4A40;
  outline-offset: 2px;
}
.share-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.share-btn span {
  white-space: nowrap;
}
.share-whatsapp:hover {
  background: #25D366;
  color: #fff;
}
.share-facebook:hover {
  background: #1877F2;
  color: #fff;
}
.share-copy:hover {
  background: #EF4A40;
  color: #fff;
}
.share-copy.copied {
  background: #10b981;
  color: #fff;
}
.blog-navigation {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--border, #e2e8f0);
}
@media (max-width: 768px) {
  .blog-main {
    padding-top: 100px;
  }
  .blog-post {
    padding: 20px 0;
  }
  .blog-post-content {
    font-size: 1rem;
  }
  .blog-post-content h2 {
    font-size: 1.75rem;
  }
  .blog-post-content h3 {
    font-size: 1.3rem;
  }
  .blog-share {
    padding: 24px 20px;
  }
  .share-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .share-btn {
    width: 100%;
    justify-content: center;
    min-width: auto;
    padding: 14px 20px;
  }
}
