:root {
  --c-primary: #6366f1;
  --c-primary-hover: #4f46e5;
  --c-primary-light: #eef2ff;
  --c-success: #10b981;
  --c-success-light: #ecfdf5;
  --c-warning: #f59e0b;
  --c-warning-light: #fffbeb;
  --c-danger: #ef4444;
  --c-danger-light: #fef2f2;
  --c-info: #3b82f6;
  --c-info-light: #eff6ff;
  --c-pink: #ec4899;
  --c-pink-light: #fdf2f8;
  --c-text: #111827;
  --c-text-secondary: #6b7280;
  --c-text-tertiary: #9ca3af;
  --c-border: #e5e7eb;
  --c-border-light: #f3f4f6;
  --c-surface: #ffffff;
  --c-surface-hover: #f9fafb;
  --c-sidebar-bg: #1e1b4b;
  --c-sidebar-hover: #312e81;
  --c-sidebar-active: #4338ca;
  --c-sidebar-text: #c7d2fe;
  --c-sidebar-text-active: #ffffff;
  --sidebar-width: 260px;
  --header-height: 60px;
}

.creator-layout {
  display: flex;
  min-height: 100vh;
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--c-text);
}

.creator-layout__sidebar {
  width: var(--sidebar-width);
  background: var(--c-sidebar-bg);
  color: var(--c-sidebar-text);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.creator-layout__sidebar-brand {
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-layout__sidebar-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.creator-layout__sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.creator-layout__sidebar-subtitle {
  font-size: 11px;
  color: var(--c-sidebar-text);
  opacity: 0.7;
}

.creator-layout__sidebar-user {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-layout__sidebar-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
  overflow: hidden;
}

.creator-layout__sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-layout__sidebar-username {
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.creator-layout__sidebar-status {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.creator-layout__sidebar-status--active {
  color: #34d399;
}

.creator-layout__sidebar-status--inactive {
  color: #f87171;
}

.creator-layout__sidebar-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.creator-layout__sidebar-status--active .creator-layout__sidebar-status-dot {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
}

.creator-layout__sidebar-status--inactive .creator-layout__sidebar-status-dot {
  background: #f87171;
}

.creator-layout__sidebar-nav {
  flex: 1;
  padding: 12px 12px;
  overflow-y: auto;
}

.creator-layout__sidebar-section {
  margin-bottom: 8px;
}

.creator-layout__sidebar-section-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(199, 210, 254, 0.5);
  padding: 8px 12px 6px;
}

.creator-layout__sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-sidebar-text);
  text-decoration: none;
  transition: all 0.15s ease;
  margin-bottom: 2px;
}

.creator-layout__sidebar-link:hover {
  background: var(--c-sidebar-hover);
  color: white;
}

.creator-layout__sidebar-link--active {
  background: var(--c-sidebar-active);
  color: var(--c-sidebar-text-active);
  box-shadow: 0 1px 3px rgba(99, 102, 241, 0.3);
}

.creator-layout__sidebar-link-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.creator-layout__sidebar-link-icon svg {
  width: 18px;
  height: 18px;
}

.creator-layout__sidebar-footer {
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-layout__sidebar-back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-sidebar-text);
  text-decoration: none;
  transition: all 0.15s ease;
}

.creator-layout__sidebar-back-link:hover {
  background: var(--c-sidebar-hover);
  color: white;
}

.creator-layout__main {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.creator-layout__header {
  height: var(--header-height);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.creator-layout__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-layout__header-breadcrumb {
  font-size: 14px;
  color: var(--c-text-secondary);
}

.creator-layout__header-breadcrumb-current {
  font-weight: 600;
  color: var(--c-text);
}

.creator-layout__header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-layout__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
}

.creator-layout__mobile-toggle svg {
  width: 20px;
  height: 20px;
}

.creator-layout__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  backdrop-filter: blur(2px);
}

.creator-layout__content {
  flex: 1;
  padding: 24px;
  max-width: 1280px;
  width: 100%;
}

.creator-notice {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-notice--success {
  background: var(--c-success-light);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.creator-notice--alert {
  background: var(--c-danger-light);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.creator-page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.creator-page-subtitle {
  font-size: 14px;
  color: var(--c-text-secondary);
  margin: 0 0 24px;
}

.creator-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.creator-stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.creator-stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.creator-stat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.creator-stat-card__icon--success {
  background: var(--c-success-light);
  color: var(--c-success);
}

.creator-stat-card__icon--info {
  background: var(--c-info-light);
  color: var(--c-info);
}

.creator-stat-card__icon--warning {
  background: var(--c-warning-light);
  color: var(--c-warning);
}

.creator-stat-card__icon--pink {
  background: var(--c-pink-light);
  color: var(--c-pink);
}

.creator-stat-card__icon svg {
  width: 20px;
  height: 20px;
}

.creator-stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.creator-stat-card__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.creator-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
}

.creator-card__header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border-light);
}

.creator-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.creator-card__body {
  padding: 0;
}

.creator-card__body--padded {
  padding: 20px;
}

.creator-table {
  width: 100%;
  border-collapse: collapse;
}

.creator-table thead th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--c-surface-hover);
  border-bottom: 1px solid var(--c-border);
}

.creator-table tbody td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border-light);
}

.creator-table tbody tr:last-child td {
  border-bottom: none;
}

.creator-table tbody tr:hover {
  background: var(--c-surface-hover);
}

.creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.creator-badge--success {
  background: var(--c-success-light);
  color: #065f46;
}

.creator-badge--warning {
  background: var(--c-warning-light);
  color: #92400e;
}

.creator-badge--danger {
  background: var(--c-danger-light);
  color: #991b1b;
}

.creator-badge--info {
  background: var(--c-info-light);
  color: #1e40af;
}

.creator-badge--pending {
  background: #fef3c7;
  color: #92400e;
}

.creator-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.creator-btn svg {
  width: 16px;
  height: 16px;
}

.creator-btn--primary {
  background: var(--c-primary);
  color: white;
}

.creator-btn--primary:hover {
  background: var(--c-primary-hover);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.creator-btn--success {
  background: var(--c-success);
  color: white;
}

.creator-btn--success:hover {
  background: #059669;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.creator-btn--outline {
  background: var(--c-surface);
  color: var(--c-text-secondary);
  border: 1px solid var(--c-border);
}

.creator-btn--outline:hover {
  background: var(--c-surface-hover);
  color: var(--c-text);
}

.creator-btn--sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
}

.creator-btn--ghost {
  background: transparent;
  color: var(--c-text-secondary);
  padding: 6px 12px;
}

.creator-btn--ghost:hover {
  background: var(--c-surface-hover);
  color: var(--c-text);
}

.creator-cta-banner {
  background: linear-gradient(135deg, var(--c-primary), #8b5cf6);
  border-radius: 14px;
  padding: 24px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.creator-cta-banner__info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.creator-cta-banner__info p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

.creator-cta-banner .creator-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.creator-cta-banner .creator-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.creator-form {
  max-width: 600px;
}

.creator-form-group {
  margin-bottom: 20px;
}

.creator-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
}

.creator-form-hint {
  font-size: 12px;
  color: var(--c-text-tertiary);
  margin-top: 4px;
}

.creator-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.creator-form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.creator-form-input::placeholder {
  color: var(--c-text-tertiary);
}

textarea.creator-form-input {
  resize: vertical;
  min-height: 100px;
}

.creator-form-actions {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

.creator-form-section {
  margin-bottom: 32px;
}

.creator-form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 4px;
}

.creator-form-section-desc {
  font-size: 13px;
  color: var(--c-text-secondary);
  margin: 0 0 20px;
}

.creator-templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.creator-template-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.creator-template-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.creator-template-card--inactive {
  opacity: 0.65;
}

.creator-template-card__preview {
  height: 140px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.creator-template-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-template-card__preview-placeholder {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.creator-template-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.creator-template-card__body {
  padding: 14px 16px;
}

.creator-template-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-template-card__meta {
  font-size: 12px;
  color: var(--c-text-secondary);
  margin-bottom: 12px;
}

.creator-template-card__actions {
  display: flex;
  gap: 8px;
}

.creator-empty-state {
  text-align: center;
  padding: 48px 24px;
}

.creator-empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.creator-empty-state__icon svg {
  width: 28px;
  height: 28px;
}

.creator-empty-state__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 4px;
}

.creator-empty-state__desc {
  font-size: 13px;
  color: var(--c-text-secondary);
  margin: 0;
}

.creator-wallet-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.creator-wallet-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 20px;
}

.creator-wallet-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.creator-wallet-card__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.creator-wallet-card__value--success {
  color: var(--c-success);
}

.creator-public-profile {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
}

.creator-public-profile__hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.creator-public-profile__avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.creator-public-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-public-profile__info {
  flex: 1;
}

.creator-public-profile__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 2px;
}

.creator-public-profile__tagline {
  font-size: 14px;
  color: var(--c-text-secondary);
  margin: 0 0 8px;
}

.creator-public-profile__social {
  display: flex;
  gap: 12px;
  font-size: 12px;
}

.creator-public-profile__social a {
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 500;
}

.creator-public-profile__social a:hover {
  text-decoration: underline;
}

.creator-public-profile__stat {
  text-align: right;
}

.creator-public-profile__stat-label {
  font-size: 11px;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.creator-public-profile__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-primary);
}

.creator-public-profile__bio {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.7;
}

.creator-public-profile__templates-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 16px;
}

.creator-public-profile__templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.creator-public-template {
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: block;
}

.creator-public-template:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.creator-public-template__preview {
  height: 120px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  overflow: hidden;
}

.creator-public-template__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-public-template__info {
  padding: 12px 14px;
}

.creator-public-template__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}

.creator-public-template__meta {
  font-size: 11px;
  color: var(--c-text-secondary);
}

.creator-pagination {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.creator-total-earnings {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--c-primary-light);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
}

.creator-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .creator-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creator-wallet-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .creator-public-profile__templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .creator-layout__sidebar {
    transform: translateX(-100%);
  }

  .creator-layout__sidebar--open {
    transform: translateX(0);
  }

  .creator-layout__overlay--visible {
    display: block;
  }

  .creator-layout__mobile-toggle {
    display: flex;
  }

  .creator-layout__main {
    margin-left: 0;
  }

  .creator-layout__content {
    padding: 16px;
  }

  .creator-layout__header {
    padding: 0 16px;
  }

  .creator-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .creator-stat-card {
    padding: 14px;
  }

  .creator-stat-card__value {
    font-size: 20px;
  }

  .creator-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .creator-templates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .creator-template-card__preview {
    height: 100px;
  }

  .creator-table thead {
    display: none;
  }

  .creator-table tbody tr {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
  }

  .creator-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: none;
    font-size: 13px;
  }

  .creator-table tbody td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 16px;
  }

  .creator-wallet-cards {
    grid-template-columns: 1fr;
  }

  .creator-profile-grid {
    grid-template-columns: 1fr;
  }

  .creator-public-profile__hero {
    flex-direction: column;
    text-align: center;
  }

  .creator-public-profile__stat {
    text-align: center;
  }

  .creator-public-profile__social {
    justify-content: center;
  }

  .creator-public-profile__templates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .creator-public-profile {
    padding: 24px 16px;
  }

  .creator-form-actions {
    flex-direction: column;
  }

  .creator-form-actions .creator-btn {
    width: 100%;
    justify-content: center;
  }

  .creator-page-title {
    font-size: 18px;
  }
}

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

  .creator-templates-grid {
    grid-template-columns: 1fr;
  }

  .creator-public-profile__templates-grid {
    grid-template-columns: 1fr;
  }

  .creator-layout__content {
    padding: 12px;
  }
}
