/* ==========================================================================
   WONDO BLOG - MODERN CLEAN & MINIMALIST DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --wondo-primary: #0284c7;
  --wondo-primary-hover: #0369a1;
  --wondo-primary-light: #e0f2fe;
  --wondo-secondary: #0f172a;
  --wondo-accent: #f59e0b;
  --wondo-success: #10b981;
  
  --wondo-dark: #0f172a;
  --wondo-text: #334155;
  --wondo-muted: #64748b;
  --wondo-light-muted: #94a3b8;
  
  --wondo-bg: #f8fafc;
  --wondo-card-bg: #ffffff;
  --wondo-border: #e2e8f0;
  --wondo-border-light: #f1f5f9;
  
  --wondo-radius-sm: 8px;
  --wondo-radius: 14px;
  --wondo-radius-lg: 18px;
  --wondo-radius-full: 9999px;
  
  --wondo-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --wondo-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  --wondo-shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --wondo-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--wondo-text);
  background-color: var(--wondo-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .title {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif !important;
  color: var(--wondo-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--wondo-transition);
}
a:hover {
  color: var(--wondo-primary);
  text-decoration: none;
}

/* ==========================================================================
   MODERN HEADER
   ========================================================================== */
.header-style-three {
  background: #ffffff;
  border-bottom: 1px solid var(--wondo-border);
}

.header-top-wrap-two {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid var(--wondo-border-light);
}

.header-top-social .list-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-top-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wondo-bg);
  color: var(--wondo-muted);
  border: 1px solid var(--wondo-border);
  transition: var(--wondo-transition);
}
.header-top-social a:hover {
  background: var(--wondo-primary);
  color: #ffffff;
  border-color: var(--wondo-primary);
  transform: translateY(-2px);
}

.header-search-wrap-two form {
  display: flex;
  align-items: center;
  background: var(--wondo-bg);
  border: 1px solid var(--wondo-border);
  border-radius: var(--wondo-radius-full);
  padding: 4px 6px 4px 18px;
  transition: var(--wondo-transition);
  max-width: 380px;
  margin-left: auto;
}
.header-search-wrap-two form:focus-within {
  border-color: var(--wondo-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}
.header-search-wrap-two input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.88rem;
  color: var(--wondo-dark);
}
.header-search-wrap-two input::placeholder {
  color: var(--wondo-light-muted);
}
.header-search-wrap-two button {
  background: var(--wondo-primary);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--wondo-transition);
}
.header-search-wrap-two button:hover {
  background: var(--wondo-primary-hover);
  transform: scale(1.05);
}

/* Nav Menu & Categories */
.menu-area {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 8px 0;
}
.menu-area.sticky-menu {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.menu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 38px;
  width: auto;
}

.nav-cat-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-cat-pills::-webkit-scrollbar {
  display: none;
}

.nav-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--wondo-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wondo-muted) !important;
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: var(--wondo-transition);
}
.nav-cat-pill:hover, .nav-cat-pill.active {
  color: var(--wondo-primary) !important;
  background: var(--wondo-primary-light);
  border-color: rgba(2, 132, 199, 0.2);
}
.nav-cat-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Mobile Cat Strip */
.mobile-cat-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--wondo-border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mobile-cat-strip::-webkit-scrollbar {
  display: none;
}
.mobile-cat-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--wondo-radius-full);
  background: var(--wondo-bg);
  border: 1px solid var(--wondo-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wondo-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile-cat-strip a:hover {
  background: var(--wondo-primary-light);
  color: var(--wondo-primary);
  border-color: rgba(2, 132, 199, 0.25);
}
.mob-cat-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* ==========================================================================
   HOMEPAGE: HERO FEATURED GRID
   ========================================================================== */
.featured-post-area {
  padding-top: 30px;
  padding-bottom: 30px;
}

.featured-bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}
@media (max-width: 991px) {
  .featured-bento-grid {
    grid-template-columns: 1fr;
  }
}

.hero-main-card {
  position: relative;
  border-radius: var(--wondo-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--wondo-shadow);
  background: var(--wondo-dark);
}
.hero-main-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-main-card:hover img {
  transform: scale(1.05);
}
.hero-main-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.95) 100%);
  pointer-events: none;
}
.hero-main-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #ffffff;
}
.hero-main-card-content .post-tag {
  display: inline-block;
  background: var(--wondo-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--wondo-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.hero-main-card-content .post-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 14px;
}
.hero-main-card-content .post-title a {
  color: #ffffff;
}
.hero-main-card-content .post-title a:hover {
  color: var(--wondo-primary-light);
}

.hero-side-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-side-card {
  display: flex;
  gap: 16px;
  background: var(--wondo-card-bg);
  border: 1px solid var(--wondo-border);
  border-radius: var(--wondo-radius);
  padding: 14px;
  box-shadow: var(--wondo-shadow-sm);
  transition: var(--wondo-transition);
}
.hero-side-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wondo-shadow-hover);
  border-color: rgba(2, 132, 199, 0.3);
}
.hero-side-thumb {
  width: 140px;
  height: 105px;
  border-radius: var(--wondo-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.hero-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-side-card:hover .hero-side-thumb img {
  transform: scale(1.08);
}
.hero-side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.hero-side-content .post-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wondo-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-side-content .post-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-side-content .post-title a {
  color: var(--wondo-dark);
}
.hero-side-content .post-title a:hover {
  color: var(--wondo-primary);
}

.blog-meta-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--wondo-muted);
}
.blog-meta-minimal svg {
  vertical-align: -1px;
}

/* ==========================================================================
   PROMO BANNER AREA
   ========================================================================== */
.promo-banner-area {
  padding: 10px 0 35px;
}
.promo-banner-wrap {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: var(--wondo-radius-lg);
  padding: 24px 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.2);
}
@media (max-width: 768px) {
  .promo-banner-wrap {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
}
.promo-banner-text h4 {
  color: #ffffff !important;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.promo-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.88rem;
}
.promo-banner-btn {
  background: #ffffff;
  color: var(--wondo-primary) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--wondo-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--wondo-transition);
}
.promo-banner-btn:hover {
  background: var(--wondo-secondary);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION TITLES & HEADERS
   ========================================================================== */
.modern-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wondo-border);
  position: relative;
}
.modern-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--wondo-primary);
  border-radius: 2px;
}
.modern-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--wondo-dark);
  margin-bottom: 0;
}
.modern-section-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--wondo-radius-sm);
  background: var(--wondo-primary-light);
}
.modern-section-title-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.modern-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wondo-primary);
  transition: var(--wondo-transition);
}
.modern-view-all:hover {
  color: var(--wondo-primary-hover);
  transform: translateX(3px);
}

/* ==========================================================================
   MODERN CARD DESIGNS
   ========================================================================== */
.modern-card {
  background: var(--wondo-card-bg);
  border: 1px solid var(--wondo-border);
  border-radius: var(--wondo-radius);
  overflow: hidden;
  box-shadow: var(--wondo-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--wondo-transition);
}
.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wondo-shadow-hover);
  border-color: rgba(2, 132, 199, 0.25);
}

.modern-card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}
.modern-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modern-card:hover .modern-card-thumb img {
  transform: scale(1.06);
}

.modern-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.modern-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--wondo-primary);
  background: var(--wondo-primary-light);
  padding: 3px 10px;
  border-radius: var(--wondo-radius-full);
  margin-bottom: 10px;
}
.modern-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modern-card-title a {
  color: var(--wondo-dark);
}
.modern-card-title a:hover {
  color: var(--wondo-primary);
}
.modern-card-excerpt {
  font-size: 0.85rem;
  color: var(--wondo-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modern-card-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--wondo-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--wondo-light-muted);
}

/* Horizontal card layout */
.modern-card-horizontal {
  display: flex;
  flex-direction: row;
  height: 100%;
}
@media (max-width: 576px) {
  .modern-card-horizontal {
    flex-direction: column;
  }
  .modern-card-horizontal .modern-card-thumb {
    width: 100%;
    height: 170px;
  }
}
.modern-card-horizontal .modern-card-thumb {
  width: 150px;
  height: auto;
  min-height: 110px;
  flex-shrink: 0;
}
.modern-card-horizontal .modern-card-body {
  padding: 14px 16px;
}
.modern-card-horizontal .modern-card-title {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   CATEGORY SHOWCASE CARDS (Jelajahi Kategori)
   ========================================================================== */
.cat-pill-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wondo-card-bg);
  border: 1px solid var(--wondo-border);
  border-radius: var(--wondo-radius);
  padding: 12px 16px;
  box-shadow: var(--wondo-shadow-sm);
  transition: var(--wondo-transition);
}
.cat-pill-card:hover {
  transform: translateY(-3px);
  border-color: var(--wondo-primary);
  background: #ffffff;
  box-shadow: var(--wondo-shadow-hover);
}
.cat-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wondo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-pill-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.cat-pill-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wondo-dark);
  margin-bottom: 0;
}

/* ==========================================================================
   SIDEBAR: POPULAR POSTS
   ========================================================================== */
.popular-ranked-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wondo-border-light);
  transition: var(--wondo-transition);
}
.popular-ranked-item:last-child {
  border-bottom: none;
}
.popular-rank-badge-modern {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wondo-bg);
  border: 1px solid var(--wondo-border);
  color: var(--wondo-muted);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popular-rank-badge-modern.rank-1 {
  background: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}
.popular-rank-badge-modern.rank-2 {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #bae6fd;
}
.popular-rank-badge-modern.rank-3 {
  background: #ffedd5;
  color: #c2410c;
  border-color: #fed7aa;
}
.popular-ranked-thumb {
  width: 70px;
  height: 55px;
  border-radius: var(--wondo-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.popular-ranked-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-ranked-info {
  flex-grow: 1;
  overflow: hidden;
}
.popular-ranked-info .post-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-ranked-info .post-title a {
  color: var(--wondo-dark);
}
.popular-ranked-info .post-title a:hover {
  color: var(--wondo-primary);
}
.popular-ranked-info .post-date {
  font-size: 0.72rem;
  color: var(--wondo-light-muted);
}

/* ==========================================================================
   CATEGORY / ARCHIVE PAGE ENHANCEMENTS
   ========================================================================== */
.breadcrumb-area {
  background: #ffffff;
  border-bottom: 1px solid var(--wondo-border);
  padding: 30px 0;
  margin-bottom: 30px;
}
.breadcrumb-page-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wondo-dark);
  margin-bottom: 8px;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.breadcrumb-item a {
  color: var(--wondo-muted);
}
.breadcrumb-item.active {
  color: var(--wondo-primary);
  font-weight: 600;
}

.weekly-post-item {
  background: #ffffff;
  border: 1px solid var(--wondo-border);
  border-radius: var(--wondo-radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--wondo-shadow-sm);
  transition: var(--wondo-transition);
}
.weekly-post-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--wondo-shadow-hover);
  border-color: rgba(2, 132, 199, 0.25);
}
.weekly-post-thumb {
  border-radius: var(--wondo-radius-sm);
  overflow: hidden;
}

/* ==========================================================================
   MODERN FOOTER
   ========================================================================== */
.wondo-modern-footer {
  background: #ffffff;
  border-top: 1px solid var(--wondo-border);
  padding: 50px 0 20px;
  margin-top: 60px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}
.footer-desc {
  color: var(--wondo-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wondo-dark);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--wondo-muted);
  font-size: 0.86rem;
  transition: var(--wondo-transition);
}
.footer-links a:hover {
  color: var(--wondo-primary);
  padding-left: 4px;
}
.footer-bottom-bar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--wondo-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--wondo-light-muted);
}
@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================================================
   ARTICLE DETAIL TYPOGRAPHY & IMAGE CAPTION STYLES
   ========================================================================== */
.font-10, 
.blog-details-thumb .font-10,
.blog-details-thumb .font-10 i {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.85rem !important;
  color: #64748b !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-top: 8px !important;
  margin-bottom: 16px !important;
  display: block;
}

.blog-details-post-content,
.blog-details-content {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16.5px !important;
  line-height: 1.85 !important;
  color: #334155 !important;
  font-weight: 400 !important;
}

.blog-details-post-content p,
.blog-details-post-content span,
.blog-details-post-content div:not(.wondo-related-packages-widget):not(.wondo-related-packages-widget *),
.blog-details-content p,
.blog-details-content span,
.blog-details-content div:not(.wondo-related-packages-widget):not(.wondo-related-packages-widget *) {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}

.blog-details-post-content p,
.blog-details-content p {
  margin-bottom: 20px !important;
}

.blog-details-post-content strong,
.blog-details-post-content b,
.blog-details-content strong,
.blog-details-content b {
  font-weight: 700 !important;
  color: #0f172a !important;
  font-size: inherit !important;
}

.blog-details-post-content h2,
.blog-details-post-content h3,
.blog-details-post-content h4,
.blog-details-post-content h5,
.blog-details-post-content h6,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4,
.blog-details-content h5,
.blog-details-content h6 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-top: 32px !important;
  margin-bottom: 14px !important;
  line-height: 1.35 !important;
}

.blog-details-post-content h2, .blog-details-content h2 { font-size: 1.5rem !important; }
.blog-details-post-content h3, .blog-details-content h3 { font-size: 1.3rem !important; }
.blog-details-post-content h4, .blog-details-content h4 { font-size: 1.15rem !important; }

.blog-details-post-content img,
.blog-details-content img:not(.wondo-pkg-img) {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  display: block;
}


