.futsal-news-block {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.futsal-news-header-wrapper {
  margin-bottom: 1rem;
}

.futsal-news-header {
  background: linear-gradient(135deg, rgba(112, 44, 249, 1), rgba(112, 44, 249, 0.8));
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
}

.futsal-news-title {
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.futsal-news-grid {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.futsal-news-grid::-webkit-scrollbar {
  display: none;
}

.futsal-news-card {
  flex: 0 0 calc((100% - 2rem) / 4.5);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(112, 44, 249, 0.1);
}

.futsal-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(112, 44, 249, 0.2);
  text-decoration: none;
  color: inherit;
  border-color: rgba(112, 44, 249, 0.3);
}

.futsal-news-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.futsal-news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.futsal-news-content {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.futsal-news-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(112, 44, 249, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  background: rgba(112, 44, 249, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.futsal-news-title-card {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.futsal-news-card:hover .futsal-news-title-card {
  color: rgba(112, 44, 249, 0.9);
}

@media (max-width: 1199px) {
  .futsal-news-card {
    flex: 0 0 calc((100% - 1.5rem) / 3.5);
  }
}

@media (max-width: 991px) {
  .futsal-news-card {
    flex: 0 0 calc((100% - 1.5rem) / 3.5);
  }
}

@media (max-width: 768px) {
  .futsal-news-card {
    flex: 0 0 calc((100% - 1rem) / 2.1);
  }
  
  .futsal-news-title-card {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .futsal-news-card {
    flex: 0 0 calc((100% - 0.75rem) / 2.05);
  }
  
  .futsal-news-grid {
    gap: 0.75rem;
  }
  
  .futsal-news-content {
    padding: 0.65rem;
  }
}

.futsal-news-empty {
  padding: 2rem 0;
  text-align: center;
}

