.container {
  max-width: 1100px;
  margin: 0 auto;
}
.main-blog {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.main-blog-image {
  width: 100%;
  min-height: 400px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-blog-content {
  padding: 20px 24px 24px 24px;
  background: #1D1D1D0D;

}
.main-blog-date {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.main-blog-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1d1d1d;
}
.main-blog-link {
  text-decoration: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.blog-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.blog-card-cont {
  padding: 16px 20px 20px 20px;
  background: #1D1D1D0D;
}
.blog-card-image {
  width: 100%;
  min-height: 320px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-date {
  color: #888;
  font-size: 0.93rem;
  margin-bottom: 7px;
}
.blog-card-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1d1d1d;
}
.see-more-btn {
  display: block;
  margin: 0 auto 48px auto;
  padding: 10px 28px;
  border: 1px solid #222;
  border-radius: 6px;
  background: #fff;
  color: #1D1D1D;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.see-more-btn:hover {
  background: #1D1D1D0D;
}
.cta-section {
  border-radius: 18px;
  padding: 64px 0;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  background: linear-gradient(#002c3c99, #002c3c99),
    url("assets/images/court.jpg") center/cover no-repeat;
}
.cta-title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #f3f3f3;
}
.cta-btn {
  padding: 14px 36px;
  background: linear-gradient(0deg, #612b39, #612b39),
    radial-gradient(
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0) 69.79%,
        rgba(255, 255, 255, 0) 100%
      );
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cta-btn:hover {
  background: #a12a2a;
}
@media (max-width: 900px) {
  .container {
    padding: 24px 8px 0 8px;
  }
  .navbar {
    padding: 24px 12px 0 12px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
