/* =============================================
   CMS Page Template Styles
   ============================================= */

/* Banner */
.cms-page-banner {
    margin-top: 20px;
}

.cms-banner-box {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.cms-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Breadcrumb */
.cms-breadcrumb {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.cms-breadcrumb a {
    color: #292929;
    text-decoration: none;
    font-weight: 600;
}

.cms-breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Section */
.cms-page-section {
    padding: 40px 0 80px;
}

.cms-page-wrapper {
    /* max-width: 900px; */
    margin: 0 auto;
}

/* Page Title */
.cms-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

.cms-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #292929;
    border-radius: 2px;
}

/* Page Content (Rich HTML from admin) */
.cms-page-content {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
}

.cms-page-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-top: 36px;
    margin-bottom: 14px;
}

.cms-page-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-top: 28px;
    margin-bottom: 12px;
}

.cms-page-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 22px;
    margin-bottom: 10px;
}

.cms-page-content p {
    margin-bottom: 16px;
}

.cms-page-content ul,
.cms-page-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.cms-page-content li {
    margin-bottom: 8px;
}

.cms-page-content a {
    color: #292929;
    font-weight: 500;
    text-decoration: underline;
}

.cms-page-content a:hover {
    color: #000;
}

.cms-page-content blockquote {
    border-left: 4px solid #292929;
    padding: 16px 20px;
    margin: 24px 0;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.cms-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.cms-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cms-page-content table th,
.cms-page-content table td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.cms-page-content table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #222;
}

.cms-page-content table tr:nth-child(even) {
    background: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
    .cms-page-title {
        font-size: 28px;
    }

    .cms-banner-img {
        height: 200px;
    }

    .cms-page-content {
        font-size: 15px;
    }
}