/* ── CE ESTE PAGES - SHARED STYLES ── */

/* Hero banner */
.ce-page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 1rem 2rem;
    text-align: center;
}
.ce-page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.ce-page-hero p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb inside hero */
.ce-breadcrumb {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 0.82rem;
    color: #94a3b8;
}
.ce-breadcrumb a {
    color: #f59e0b;
    text-decoration: none;
}
.ce-breadcrumb a:hover {
    text-decoration: underline;
}
.ce-breadcrumb .sep {
    margin: 0 0.4rem;
    opacity: 0.5;
}

/* Main content area */
.ce-content {
    max-width: 800px;
    margin: -1rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Section cards */
.ce-section {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ce-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}
.ce-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.ce-section h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}
.ce-section p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.ce-section ul {
    list-style: none;
    padding: 0;
}
.ce-section li {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    padding: 0.2rem 0;
}

/* Info boxes */
.ce-info-box {
    padding: 1.25rem;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
}
.ce-info-box h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

/* Highlight tip box */
.ce-tip {
    padding: 1rem 1.25rem;
    border-radius: 0.6rem;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: #92400e;
}

/* Table styling */
.ce-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.ce-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
}
.ce-table td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    color: #475569;
}
.ce-table tr:nth-child(even) td {
    background: #f8fafc;
}

/* Navigation links at bottom */
.ce-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.ce-nav-link {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.ce-nav-link:hover {
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.ce-nav-link h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}
.ce-nav-link p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* 2 column grid */
.ce-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* 3 column grid */
.ce-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Stat cards */
.ce-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}
.ce-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.ce-stat .label {
    font-size: 0.82rem;
    color: #64748b;
}

@media (max-width: 640px) {
    .ce-page-hero { padding: 2rem 1rem 1.5rem; }
    .ce-page-hero h1 { font-size: 1.6rem; }
    .ce-section { padding: 1.25rem; }
    .ce-grid-2, .ce-grid-3 { grid-template-columns: 1fr; }
    .ce-nav-links { grid-template-columns: 1fr; }
}
