.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-b7d07df *//* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
 
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.header h1 {
  font-size: 30px;
  margin: 0;
  background: linear-gradient(90deg, #f97316, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .tag {
  font-size: 13px;
  color: #fb923c;
  padding: 4px 10px;
  border: 1px solid #fdba74;
  border-radius: 999px;
  background: #fff7ed;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

/* Card */
.card {
  background: white;
  border-radius: 14px;
  border: 1px solid #fed7aa;
  box-shadow: 0 6px 16px rgba(251, 146, 60, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  border: 1px solid #fb923c;
  box-shadow: 0 10px 24px rgba(251, 146, 60, 0.4);
}
.card-inner {
  padding: 20px;
}

/* Folder Head */
.folder-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.folder-icon {
  font-size: 30px;
  color: #f97316;
}
.folder-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #ea580c;
}
.meta {
  margin: 2px 0 0;
  font-size: 13px;
  color: #fb923c;
}

/* List */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.item {
  padding: 10px 14px;
  background: #fff7ed;
  border-radius: 8px;
  border: 1px solid #fed7aa;
  font-size: 15px;
  transition: all 0.2s ease;
}
.item:hover {
  background: #ffedd5;
  border-color: #fb923c;
  color: #c2410c;
}/* End custom CSS */