/* =========================================
   CMS PAGE – PREMIUM DESIGN
   Scope: .cms-page
========================================= */

/* ---- Base ---- */
.cms-page {
    background: #f6f8fc;
    padding: 70px 0 90px;
}

/* ---- Header ---- */
.cms-header {
    max-width: 920px;
    margin: 0 auto 50px;
    text-align: center;
}

.cms-breadcrumb {
    font-size: 13px;
    color: #8a94a6;
    margin-bottom: 12px;
}

.cms-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.cms-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2937;
    margin-bottom: 10px;
}

.cms-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Content Shell ---- */
.cms-content-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.cms-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 55px 60px;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.06),
        0 8px 20px rgba(0,0,0,0.04);
}

/* ---- Typography ---- */
.cms-content {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #1f2937;
}

.cms-content h2 {
    font-size: 1.6rem;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cms-content h3 {
    font-size: 1.3rem;
    margin-top: 2.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.cms-content p {
    margin-bottom: 1.2rem;
}

/* ---- Lists ---- */
.cms-content ul,
.cms-content ol {
    margin: 1.6rem 0;
    padding-inline-start: 1.6rem;
}

.cms-content li {
    margin-bottom: 0.7rem;
}

/* ---- Highlight Box ---- */
.cms-highlight {
    background: #f1f5ff;
    border-left: 4px solid var(--primary-color);
    padding: 18px 22px;
    border-radius: 12px;
    margin: 2.2rem 0;
    color: #1f2937;
}

/* ---- Quotes ---- */
.cms-content blockquote {
    margin: 2.5rem 0;
    padding: 18px 28px;
    background: #f9fafb;
    border-left: 4px solid #e5e7eb;
    border-radius: 14px;
    font-style: italic;
    color: #374151;
}

/* ---- Tables ---- */
.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.2rem 0;
    font-size: 0.95rem;
}

.cms-content table th,
.cms-content table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.cms-content table th {
    background: #f9fafb;
    font-weight: 600;
    text-align: start;
}

/* ---- Images ---- */
.cms-content img {
    max-width: 100%;
    border-radius: 14px;
    margin: 2.2rem auto;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .cms-page {
        padding: 45px 0 60px;
    }

    .cms-title {
        font-size: 2rem;
    }

    .cms-content {
        padding: 30px 22px;
    }
}
