.category-section[data-category-id="7"] .websites-grid,
.category-section[data-category-id="8"] .websites-grid {
  display: grid;
  gap: 10px; 
  padding: 10px 0;
  box-sizing: border-box; 
}
.category-section[data-category-id="7"] .website-card,
.category-section[data-category-id="8"] .website-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 5px;
  box-sizing: border-box;
}
.category-section[data-category-id="7"] .website-desc,
.category-section[data-category-id="7"] .status-indicator,
.category-section[data-category-id="7"] .status-text,
.category-section[data-category-id="7"] .website-logo, 
.category-section[data-category-id="7"] .default-logo, 
.category-section[data-category-id="8"] .website-logo, 
.category-section[data-category-id="8"] .default-logo,
.category-section[data-category-id="8"] .website-desc,
.category-section[data-category-id="8"] .status-indicator,
.category-section[data-category-id="8"] .status-text {
  display: none !important; 
}
.category-section[data-category-id="8"] .website-logo img,
.category-section[data-category-id="8"] .default-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain; 
}
.category-section[data-category-id="7"] .website-name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  width: 100%; 
  margin: 0; 
}
.category-section[data-category-id="8"] .website-name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  width: 100%; 
}
@media (max-width: 767px) {
  .category-section[data-category-id="7"] .websites-grid,
  .category-section[data-category-id="8"] .websites-grid {
    grid-template-columns: repeat(4, 1fr); 
    gap: 8px; 
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .category-section[data-category-id="7"] .websites-grid,
  .category-section[data-category-id="8"] .websites-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
}
@media (min-width: 1200px) {
  .category-section[data-category-id="7"] .websites-grid,
  .category-section[data-category-id="8"] .websites-grid {
    grid-template-columns: repeat(10, 1fr); 
    gap: 10px; 
  }
  .category-section[data-category-id="8"] .website-logo img,
  .category-section[data-category-id="8"] .default-logo {
    width: 45px;
    height: 45px;
  }
  .category-section[data-category-id="7"] .website-name,
  .category-section[data-category-id="8"] .website-name {
    font-size: 15px;
  }
}
