/* Dizi Solutions — static blog pages */

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

.blog-page,
.blog-page .blog-article,
.blog-page .blog-listing {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: #1a2332;
}

.blog-page .blog-article__hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  margin-bottom: 28px;
}

.blog-page .blog-article__hero-img img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.blog-page .blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.blog-page .blog-article__meta li {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 999px;
}

.blog-page .blog-article__meta li i {
  color: #fb8500;
  margin-right: 6px;
}

.blog-page .blog-article__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-page .blog-content-area {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.blog-page .blog-content-area h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.blog-page .blog-content-area p {
  margin-bottom: 18px;
}

/* Override main.css list-style — hide browser ::marker, use custom ::before only */
.blog-page .blog-content-area ul,
.blog-page .blog-content-area ol,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ul,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.blog-page .blog-content-area ul li,
.blog-page .blog-content-area ol li,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ul li,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol li {
  position: relative;
  display: block;
  list-style: none;
  list-style-type: none;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.blog-page .blog-content-area ul li::marker,
.blog-page .blog-content-area ol li::marker,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ul li::marker,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol li::marker {
  content: none;
  font-size: 0;
}

.blog-page .blog-content-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.blog-page .blog-content-area ol,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol {
  counter-reset: blog-ol;
}

.blog-page .blog-content-area ol li,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol li {
  counter-increment: blog-ol;
  padding-left: 36px;
}

.blog-page .blog-content-area ol li::before,
.blog-page .blog-inner-area .blog-widget-others .blog-content-area ol li::before {
  content: counter(blog-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-page .blog-inner-area .blog-widget-others .blog-content-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.blog-page .blog-content-area blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid #fb8500;
  background: linear-gradient(135deg, #fff8eb 0%, #f8fafc 100%);
  border-radius: 0 16px 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  font-style: normal;
}

.blog-page .blog-cta-box {
  margin-top: 32px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1d3557 100%);
  color: #fff;
}

.blog-page .blog-cta-box strong {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}

.blog-page .blog-cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

/* FAQ Accordion */
.blog-page .blog-faq {
  margin-top: 40px;
  padding-top: 8px;
}

.blog-page .blog-faq__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.blog-page .blog-faq__item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-page .blog-faq__item.is-open {
  border-color: #fb8500;
  box-shadow: 0 8px 24px rgba(251, 133, 0, 0.12);
}

.blog-page .blog-faq__question {
  width: 100%;
  text-align: left;
  border: none;
  background: #f8fafc;
  padding: 18px 52px 18px 20px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}

.blog-page .blog-faq__item.is-open .blog-faq__question {
  background: linear-gradient(135deg, #fff8eb 0%, #f8fafc 100%);
  color: #b45309;
}

.blog-page .blog-faq__question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fb8500;
  line-height: 1;
}

.blog-page .blog-faq__item.is-open .blog-faq__question::after {
  content: '−';
}

.blog-page .blog-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.blog-page .blog-faq__answer-inner {
  padding: 0 20px 18px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

.blog-page .blog-faq__item.is-open .blog-faq__answer {
  max-height: 400px;
}

/* Sidebar */
.blog-page .blog-sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
}

.blog-page .blog-sidebar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.blog-page .blog-sidebar-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.blog-page .blog-sidebar-post img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.blog-page .blog-sidebar-post a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  text-decoration: none;
}

.blog-page .blog-sidebar-post a:hover {
  color: #fb8500;
}

.blog-page .blog-sidebar-post .date {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* Listing cards */
.blog-page .blog-card-v2 {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-page .blog-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.blog-page .blog-card-v2__img {
  height: 220px;
  overflow: hidden;
}

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

.blog-page .blog-card-v2:hover .blog-card-v2__img img {
  transform: scale(1.06);
}

.blog-page .blog-card-v2__body {
  padding: 22px;
}

.blog-page .blog-card-v2__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b45309;
  background: #fff8eb;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-page .blog-card-v2__body .head {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  display: block;
  margin-bottom: 10px;
}

.blog-page .blog-card-v2__body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 14px;
}

.blog-page .blog-card-v2__meta {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.blog-page .blog-card-v2__meta i {
  color: #fb8500;
  margin-right: 4px;
}

@media (max-width: 991px) {
  .blog-page .blog-article__hero-img img {
    max-height: 280px;
  }
}
