﻿/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* Base Styles */
body, html {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* Headings */
.editor-heading-large {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 1rem 0;
}

.editor-heading-medium {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0.75rem 0;
}

/* Intro Text */
.editor-intro {
    font-size: 1.125rem;
    font-weight: 300;
    color: #444;
    margin: 0.5rem 0 1rem;
}

/* Callout Box */
.editor-callout {
    background-color: #f2f9ff;
    border-left: 4px solid #007acc;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    color: #004a73;
}

/* Blockquote Style */
.editor-quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    margin: 1rem 0;
}

/* Button Style */
.editor-button {
    background-color: #007acc;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

    .editor-button:hover {
        background-color: #005fa3;
    }

/* Highlight */
.editor-highlight {
    background-color: #ffff99;
    padding: 0.2rem 0.4rem;
}

/* Lists and Links */
ul, ol {
    padding-left: 1.5rem;
}

a {
    color: #007acc;
    text-decoration: underline;
}

/* Media */
img {
    max-width: 100%;
    height: auto;
}


/* Brand Color Palette */
:root {
    --brand-blue: #0057B8;
    --brand-dark: #1A1A1A;
    --brand-light: #F5F5F5;
    --brand-accent: #FFC107;
}

/* Headings with Brand Colors */
.editor-heading-primary {
    color: var(--brand-blue);
    font-weight: 700;
}

.editor-heading-accent {
    color: var(--brand-accent);
    font-weight: 700;
}

/* Text Colors */
.editor-text-dark {
    color: var(--brand-dark);
}

.editor-text-light {
    color: var(--brand-light);
    background-color: #1A1A1A;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

/* Background Callouts */
.editor-bg-blue {
    background-color: var(--brand-blue);
    color: #fff;
    padding: 1rem;
    border-radius: 4px;
}

.editor-bg-accent {
    background-color: var(--brand-accent);
    color: #000;
    padding: 1rem;
    border-radius: 4px;
}