/**
 * Page Template Styles
 * Standard page layout with featured image and title
 */

/* Featured Image - Full Width */
.page-featured-image {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.page-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Page Title - 5.0rem */
.page-title,
.entry-title.page-title {
    font-size: 5.0rem;
    max-width: 100%;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Entry Header */
.entry-header {
    margin-bottom: 2rem;
}

/* Entry Content */
.entry-content {
    font-size: 1.5rem;
    line-height: 1.6;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content ul,
.entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Page Links (for paginated content) */
.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.page-links a {
    margin-right: 0.5rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}

.page-links a:hover {
    background-color: #f5f5f5;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .page-title,
    .entry-title.page-title {
        font-size: 3.5rem; /* Smaller on mobile but still large */
        line-height: 1.3;
    }
    
    .entry-content {
        font-size: 1.25rem; /* Slightly smaller body on mobile */
    }
    
    .page-featured-image {
        margin-bottom: 1.5rem;
    }
    
    .entry-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title,
    .entry-title.page-title {
        font-size: 2.5rem;
    }
    
    .entry-content {
        font-size: 1.125rem;
    }
}
