body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #334155;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.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);
}

.category-badge {
  background-color: #1a56db;
  color: white;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
}

.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;
}

.must-read-item {
  counter-increment: must-read-counter;
  display: flex;
  align-items: flex-start;
}
.must-read-item::before {
  content: counter(must-read-counter);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: #1a56db;
  margin-right: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.must-read-item:hover::before {
  transform: scale(1.1);
  color: #1e293b;
}

.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);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #main-feature {
    .desc {
      display: -webkit-box;
    }
  }
}
