/* Editor Styles to match frontend */

/* Base content styles */
.editor-styles-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Match news content container */
.editor-styles-wrapper .wp-block {
    max-width: 100%;
}

/* Match text styles from single-news.php */
.editor-styles-wrapper {
    color: #4b5563; /* text-gray-600 */
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
}

/* Headings */
.editor-styles-wrapper h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 1rem;
}

.editor-styles-wrapper h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.editor-styles-wrapper h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.editor-styles-wrapper p {
    margin-bottom: 1rem;
}

/* Lists */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.editor-styles-wrapper li {
    margin-bottom: 0.5rem;
}

/* Links */
.editor-styles-wrapper a {
    color: #7c3aed; /* text-purple-600 */
    text-decoration: underline;
}

/* Images */
.editor-styles-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Block quotes */
.editor-styles-wrapper blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    font-style: italic;
    margin-left: 0;
    margin-right: 0;
}

/* Tables */
.editor-styles-wrapper table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
}

.editor-styles-wrapper th,
.editor-styles-wrapper td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
}

.editor-styles-wrapper th {
    background-color: #f9fafb;
    font-weight: 700;
}