/* Page Layout Styles (shared by all pages) */
.page-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: none;
    box-shadow: 0 2px 16px rgba(59,130,246,0.04);
    min-height: 220px;
    position: relative;
    text-align: center;
    margin-top: 0;
    border-radius: 0;
}
.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 32px 0;
    border-radius: 0;
    background: linear-gradient(90deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.page-hero-has-bg .hero-container {
    color: #fff;
    background: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 16px rgba(59,130,246,0.08);
}
.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #22223b;
    margin-bottom: 0;
    letter-spacing: -1px;
}
.page-hero-has-bg .page-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}
.page-hero-has-bg .page-subtitle {
    color: #e0e6ed;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}
.breadcrumb {
    margin-top: 18px;
    font-size: 1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-left {
    justify-content: flex-start;
    text-align: left;
}
.page-hero-has-bg .breadcrumb,
.page-hero-has-bg .breadcrumb a,
.page-hero-has-bg .breadcrumb-sep {
    color: #e0e6ed;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}
.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #ff006e;
}
.breadcrumb-sep {
    color: #b0b7c3;
    font-size: 1.1em;
}
.page-content-section .container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(59,130,246,0.07);
    padding: 40px 32px;
    margin-top: -40px;
    min-height: 300px;
}
@media (max-width: 600px) {
    .page-title { font-size: 2rem; }
    .page-content-section .container { padding: 20px 8px; }
    .hero-container { padding: 0 0 16px 0; }
    .page-hero { min-height: 120px; }
}
.edit-page-link { margin-bottom: 24px; }
.edit-page-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
    transition: background 0.2s, color 0.2s;
}
.edit-page-btn:hover {
    background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
    color: #fff;
} 