body {
  margin-top: 80px;
}
.blog-listing {
  padding: 0 0 60px 0;
  margin-top: 80px;
  background-color: #0a0a0a;
  color: #fff;
  font-family: "Arial", sans-serif;
}

.content {
  margin-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
}

.section-header .subtitle {
  color: #dc3545;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-header .title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.section-header .description {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 0;
}

.blog-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: white;

  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.blog-excerpt {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;

  background-color: #dc3545;
  color: white;

  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: white;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 4px solid #dc3545;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-header .title {
    font-size: 36px;
  }
}
