/* Editor styling for Culture Block */
.editor-styles-wrapper .tv3-culture {
  background: #1d1d1d;
  color: #fff;
  padding: 24px;
}

.editor-styles-wrapper .tv3-culture__item {
  background: #2a2a2a;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.editor-styles-wrapper .tv3-culture__item-header {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.editor-styles-wrapper .tv3-culture__item-icon,
.editor-styles-wrapper .tv3-culture__item-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-styles-wrapper .tv3-culture__icon-preview {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #1f1f1f;
  border-radius: 4px;
  padding: 4px;
}

.editor-styles-wrapper .tv3-culture__title-preview {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: #1f1f1f;
  border-radius: 4px;
  padding: 4px;
}

.editor-styles-wrapper .tv3-culture__media-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.editor-styles-wrapper .tv3-culture__item-actions {
  display: flex;
  gap: 8px;
}

.editor-styles-wrapper .tv3-culture__item-body,
.editor-styles-wrapper .tv3-culture__item-body[hidden] {
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding: 16px 0 0 !important;
  transition: none !important;
}

.editor-styles-wrapper .tv3-culture__item-body::before {
  content: none !important;
}

.editor-styles-wrapper .tv3-culture__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .editor-styles-wrapper .tv3-culture__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .editor-styles-wrapper .tv3-culture__info {
    grid-template-columns: 1fr;
  }
}
