/* Blog index and container */
.container {
  padding: 40px 16px;
  max-width: 1200px;
}

/* Category heading */
.category-block {
  /*margin-bottom: 48px;*/
  padding: 20px 25px 20px 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(19, 24, 31, 0.04);
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.category-head h2 {
  margin: 0;
  font-size: 22px;
  color: #F37600;
}

.category-head .cat-meta {
  color: #000000;
  font-size: 14px;
}

/* Big (featured) blog card */
.featured-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcfdff);
  /*padding: 16px;*/
  height: 100%;
}

.featured-card .thumb {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}

.featured-card .meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000000;
  font-size: 13px;
}

.featured-card h3 {
  margin: 0;
  font-size: 20px;
  color: #000000;
  text-decoration: none !important;
}

.featured-card p.lead {
  color: #000000;
  margin: 6px 0 12px;
}

/* Small cards list (right column) */
.small-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f1f5f9;
  transition: transform .12s ease, box-shadow .12s ease;
}

.small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.small-card img {
  width: 88px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.small-card .s-info {
  flex: 1;
}

.small-card .s-info h4 {
  margin: 0;
  font-size: 15px;
  color: #000000;
}

.small-card .s-info .date {
  font-size: 13px;
  color: #000000;
  margin-top: 6px;
}

/* Read more button */
.btn-read {
  /*margin-top: 2vh !important;*/
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(45deg, #00f260, #0575e6) !important;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.btn-read:hover {
   background: linear-gradient(45deg, #0575e6, #00f260);
  transform: scale(1.05);
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 18px;
}


.btn-read i {
  font-size: 12px;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.small-grid .card {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f1f5f9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .featured-card .thumb {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 24px 12px;
  }

  .featured-card .thumb {
    height: 200px;
  }

  .small-card img {
    width: 72px;
    height: 52px;
  }

  /*.category-block {*/
  /*  padding: 18px;*/
  /*}*/

  .category-head h2 {
    font-size: 18px;
  }

  .small-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Links */
a {
  text-decoration: none !important;
  color: #F37600;
}

a:hover {
  text-decoration: none !important;
  color: #000000;
}
