/* ================= BLOG SECTION ================= */

.ias-blog-section {
  padding: 20px 40px;
  background: #f9f9f9;
}

.ias-blog-container {
  max-width: 1200px;
  margin: auto;
}

.ias-blog-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.span {
            color: #CC5500;
        }

.ias-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ias-blog-card {
  background: #fff;
  border: 1px solid #ddd;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.ias-blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ias-blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ias-blog-date {
  font-size: 13px;
  color: #888;
}

.ias-blog-content h3 {
  font-size: 18px;
  flex: 1;
}

.ias-blog-content p {
  color: #555;
  font-size: 14px;
}

.ias-blog-btn {
  background: #17347e;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.ias-blog-btn:hover {
  background: #095f80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ias-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BLOG DETAIL ================= */

.ias-blog-detail-section {
  padding: 20px 40px;
  background: #ffffff;
}

.ias-blog-detail-container {
  max-width: 1200px;
  margin: auto;
}

.ias-blog-detail-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ias-blog-detail-left {
  flex: 1;
}

.ias-blog-detail-right {
  flex: 1;
}

.ias-blog-detail-right img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.ias-blog-detail-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.ias-blog-detail-date {
  color: #888;
  margin-bottom: 20px;
}

.ias-blog-detail-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-blog-detail-row {
    flex-direction: column;
  }

  .ias-blog-detail-right {
    order: -1;
  }
}

/* ================= RELATED BLOGS ================= */

.ias-related-blog-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-related-container {
  max-width: 1200px;
  margin: auto;
}

.ias-related-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.ias-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ias-related-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.ias-related-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ias-related-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ias-related-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ias-related-date {
  font-size: 13px;
  color: #888;
}

.ias-related-content h3 {
  font-size: 18px;
  flex: 1;
  text-align: center;
}

.ias-related-btn {
  background: #17347e;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.ias-related-btn:hover {
  background: #095f80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ias-related-grid {
    grid-template-columns: 1fr;
  }
}
