/**
 * Healthcare24 CMS Pages Styling
 * Provides proper layout and typography for static content pages
 */

/* Main CMS page container - aligned with site header/menu */
.cms-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 20px 4rem;
}

/* Override container-fluid to allow max-width */
section.aimeos.cms-page.container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 20px 4rem;
}

/* Page title */
.cms-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #5BB5C5;
}

/* Section headings */
.cms-page h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cms-page h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.cms-page p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

/* Lists */
.cms-page ul,
.cms-page ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.cms-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

.cms-page ul li {
    list-style-type: disc;
}

.cms-page ol li {
    list-style-type: decimal;
}

/* Links */
.cms-page a {
    color: #5BB5C5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cms-page a:hover {
    color: #4a9ca9;
    text-decoration: underline;
}

/* Tables */
.cms-page table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

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

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

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

/* Horizontal rules */
.cms-page hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

/* Strong/Bold text */
.cms-page strong {
    font-weight: 600;
    color: #333;
}

/* Emphasis/Italic */
.cms-page em {
    font-style: italic;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cms-page,
    section.aimeos.cms-page.container-fluid {
        padding: 1.5rem 1rem 3rem;
    }

    .cms-page h1 {
        font-size: 1.6rem;
    }

    .cms-page h2 {
        font-size: 1.2rem;
    }

    .cms-page h3 {
        font-size: 1.1rem;
    }
}
