  .rich-text-wrapper trix-editor {
    min-height: 300px;
    outline: none;
    border: none;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .rich-text-wrapper trix-toolbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0.5rem;
    z-index: 20;
    padding: 0.5rem;
  }
  
  .rich-text-wrapper trix-toolbar .trix-button-group {
    border-color: #cbd5e1;
    border-radius: 0.5rem;
  }
  
  .rich-text-wrapper trix-toolbar .trix-button {
    border-color: transparent;
    transition: all 0.2s;
  }
  
  .rich-text-wrapper trix-toolbar .trix-button:hover,
  .rich-text-wrapper trix-toolbar .trix-button.trix-active {
    background: #059669;
    color: white;
  }
  
  .rich-text-wrapper trix-toolbar .trix-button-row {
    gap: 0.5rem;
  }
  
  .post-form input[type="file"] {
    cursor: pointer;
  }
  
  .post-form .post-submit-button {
    background: #059669 !important;
    color: #ffffff !important;
    border: 1px solid #047857 !important;
  }
  
  .post-form .post-submit-button:hover {
    background: #047857 !important;
  }
  
  @media (max-width: 640px) {
    .form-section input,
    .form-section textarea {
      font-size: 16px; /* Запобігає зуму на iOS */
    }
  
    .rich-text-wrapper trix-toolbar {
      overflow-x: auto;
    }
  }
  
  /* =========================================
     2. СТИЛІ КОНТЕНТУ (Списки, цитати, посилання)
     ========================================= */
  
  /* Марковані списки (з крапочками) */
  .rich-text-wrapper trix-editor ul,
  .trix-content ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1rem;
  }
  
  /* Нумеровані списки (з цифрами) */
  .rich-text-wrapper trix-editor ol,
  .trix-content ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1rem;
  }
  
  /* Відступи між елементами списку */
  .rich-text-wrapper trix-editor li,
  .trix-content li {
    margin-bottom: 0.25rem;
    display: list-item; /* Tailwind іноді ламає display для li */
  }
  
  /* Цитати (блок-квоти) */
  .rich-text-wrapper trix-editor blockquote,
  .trix-content blockquote {
    border-left: 4px solid #059669; /* Використовуємо ваш зелений колір */
    padding-left: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #475569;
  }
  
  /* Посилання в тексті */
  .rich-text-wrapper trix-editor a,
  .trix-content a {
    color: #059669;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
