/* Blog Page Styling */
.blog-detail {
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.blog-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #01354d; /* Matches site branding */
  margin-bottom: 10px;
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.blog-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.back-btn {
  display: inline-block;
  background: #01354d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #ffc107;
  color: #01354d;
}