.article-page {
  font-family: 'Outfit', sans-serif;
}
.title-wrap {
  position: relative;
  border-width: 0;
  padding: 2.5rem 1rem;
  margin: 0;
  border-radius: 4px 32px 32px 4px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.03) 0%, #ffffff 100%);
  box-shadow: 15px 30px 60px -20px rgba(0, 0, 0, 0.05);
}
.blog-desc img {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.1);
}
.pre-btn,
.next-btn {
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #fff;
  border-radius: 4px;
  background-color: #1a56db;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
  transition: all 0.2s ease;
}
.next-btn {
  margin-left: 32px;
}
.pre-btn:hover,
.next-btn:hover {
  background-color: #1e293b;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 12px;
}

.section-header h2 {
  position: relative;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  color: #1e293b;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #1a56db;
}
.post-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #1a56db;
}

.post-card img {
  transition: transform 0.6s ease;
}

.post-card:hover img {
  transform: scale(1.08);
}
.btn-read-now {
  display: inline-block;
  margin-top: auto;
  padding: 12px 24px;
  background-color: #1a56db;
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-read-now:hover {
  background-color: #1e293b;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}
@media (min-width: 640px) {
  .title-wrap {
    padding: 3.5rem 4rem;
  }
}
@media (min-width: 1024px) {
  .title-wrap {
    margin: 0 0 0 -2rem;
    border-left: 8px solid #1d4ed8;
  }
}
/* blog-desc */
.blog-desc h2,
.blog-desc h3,
.blog-desc h4,
.blog-desc h5,
.blog-desc h6,
.blog-desc p,
.blog-desc ol,
.blog-desc ul,
.blog-desc li,
.blog-desc strong {
  all: revert;
}
.blog-desc h2,
.blog-desc h3,
.blog-desc h4,
.blog-desc h5,
.blog-desc h6 {
  margin: 24px 0 6px;
}

.blog-desc {
  font-size: 16px;
  color: #404040;
  line-height: 1.5;
}
.blog-desc h2 {
  color: #1e2939;
  font-size: 26px;
}
.blog-desc h3 {
  color: #1e2939;
  font-weight: 500;
  font-size: 22px;
}
.blog-desc h4 {
  color: #1e2939;
  font-weight: 500;
  font-size: 20px;
}
.blog-desc p {
  margin: 10px 0;
  font-size: 16px;
}
.blog-desc h2 + p,
.blog-desc h3 + p,
.blog-desc h4 + p,
.blog-desc h5 + p,
.blog-desc h6 + p {
  margin-top: 0;
}
.blog-desc li {
  font-size: 15px;
}
.blog-desc ul,
.blog-desc ol {
  margin-top: 0;
}
.blog-desc ul li,
.blog-desc ol li {
  margin-top: 12px;
}
.blog-desc ul li:first-child,
.blog-desc ol li:first-child {
  margin-top: 0;
}
@media (max-width: 850px) {
  .blog-desc {
    font-size: 16px;
    color: #404040;
    line-height: 1.5;
  }
  .blog-desc h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .blog-desc h3 {
    font-size: 20px;
    line-height: 1.3;
  }
  .blog-desc h4 {
    font-size: 20px;
    line-height: 1.3;
  }
  .blog-desc p {
    font-size: 17px;
  }
  .blog-desc li {
    font-size: 15px;
  }
  .blog-desc ol,
  .blog-desc ul {
    padding-left: 20px;
  }
}
