.educationMaterialsBlock {
  max-width: 1070px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  padding: 30px 32px;
}

/* Заголовок H1 */
.education-title {
  color: #0060b7;
  padding: 20px 0;
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Меню категорий */
.education-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.category-item {
  flex: 1;
  height: 80px;
  background: #ebf5ff;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-item:hover {
  background: #d4e9ff;
}

.category-item.active {
  background: #1874d3;
}

.category-content {
  text-align: center;
  color: #0060b7;
}

.category-item.active .category-content {
  color: white;
}

.category-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-age {
  font-size: 14px;
  opacity: 0.8;
}

/* Контентная область */
.education-content {
  margin-top: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Ссылка-обертка для блока контента */
.content-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

/* Блок контента */
.content-card {
  background: #ebf5ff;
  color: #0060b7;
  padding: 12px;
  padding-bottom: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card-link:hover .content-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 96, 183, 0.15);
}

/* Блок для картинки */
.content-image {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #d4e9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-label {
  margin-right: auto;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 37px;
  margin-bottom: 8px;
  opacity: 0.8;
  color: white;
  display: inline-block;
}

/* Цвета фона для разных типов label */
.content-label.label-multfilms {
  background-color: #ff8d28;
}

.content-label.label-video {
  background-color: #cb30e0;
}

.content-label.label-library {
  background-color: #6155f5;
}

.content-label.label-interactive {
  background-color: #ff383c;
}

.content-label.label-games {
  background-color: #00c3d0;
}

.content-label.label-testing {
  background-color: #0088ff;
}

.content-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-categories {
    flex-wrap: wrap;
  }

  .category-item {
    flex: 0 0 calc(50% - 4px);
  }
}

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

  .category-item {
    flex: 0 0 100%;
  }
}
