/* ==========================================================================
   PAGE STYLES - Only loaded on static pages
   ========================================================================== */

/* Page Layout */
.page .content-area {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
}

.page.has-sidebar .content-area {
    grid-template-columns: 2fr 1fr;
    max-width: 1200px;
}

/* Page Article */
.page article {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Legacy Page Entry Header - REMOVED
 * Page titles now displayed in global banner system
 * See: template-parts/page-banner.php
 */

.page .entry-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.page .page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

/* Featured Image */
.page .post-thumbnail {
    margin: 0;
    border-radius: 0;
}

.page .post-thumbnail .site-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Page Content */
.page .entry-content {
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.page .entry-content > *:first-child {
    margin-top: 0;
}

.page .entry-content > *:last-child {
    margin-bottom: 0;
}

.page .entry-content p {
    margin-bottom: 1.5rem;
}

.page .entry-content h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-bottom: 3px solid #0073aa;
    padding-bottom: 0.5rem;
}

.page .entry-content h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page .entry-content h4 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page .entry-content .site-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page .entry-content .site-blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #0073aa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.page .entry-content .site-blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #0073aa;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.7;
}

.page .entry-content .site-list {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.page .entry-content .site-list-item {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Call-to-Action Sections */
.cta-section {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #fff;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #0073aa;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #0073aa;
}

/* Feature Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.8rem;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .site-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-position {
    color: #0073aa;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-info {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-item a {
    color: #0073aa;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Sidebar for Pages */
.page.has-sidebar .widget-area {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Page Navigation */
.page-links {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.page-links a,
.page-links > span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.page-links > span {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page.has-sidebar .content-area {
        grid-template-columns: 1fr;
        max-width: 1000px;
    }
    
    .page.has-sidebar .widget-area {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Legacy page entry-header styles removed */
    
    .page .entry-title {
        font-size: 2.2rem;
    }
    
    .page .entry-content {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .page .entry-content h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    
    .page .entry-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Legacy page entry-header styles removed */
    
    .page .entry-title {
        font-size: 1.8rem;
    }
    
    .page .entry-content {
        padding: 1.5rem;
    }
    
    .page .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}








