/**
 * Simple Page Template Styles
 * Clean, professional styling for content pages
 * 
 * @package Codlion Theme
 * @version 2.0.0
 * @author Codlion Development Team
 */

/* ==========================================================================
   SIMPLE PAGE LAYOUT
   ========================================================================== */

/**
 * Page wrapper
 * Ensures proper content flow without scrollbar conflicts
 */
.simple-page-template {
    overflow: visible;
}

/**
 * Content wrapper
 * Clean container for page content
 */
.simple-page-content-wrapper {
    overflow: visible;
    padding: 20px 0;
}

/**
 * Main content area
 */
.simple-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* ==========================================================================
   CONTENT STYLING
   ========================================================================== */

/**
 * Page header
 */
.simple-page-content .entry-header {
    margin-bottom: 30px;
    text-align: left;
}

.simple-page-content .entry-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color, #333);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/**
 * Page content
 */
.simple-page-content .entry-content {
    overflow: visible;
    line-height: 1.6;
}

.simple-page-content .entry-content p {
    margin-bottom: 20px;
    color: var(--text-color, #333);
    font-size: 16px;
}

.simple-page-content .entry-content h2,
.simple-page-content .entry-content h3,
.simple-page-content .entry-content h4 {
    margin: 30px 0 15px 0;
    color: var(--text-color, #333);
}

.simple-page-content .entry-content ul,
.simple-page-content .entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.simple-page-content .entry-content li {
    margin-bottom: 8px;
    color: var(--text-color, #333);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/**
 * Mobile/Tablet optimization - Following Development Recommendations
 * Tablets >991px treated as desktop
 */
@media (max-width: 991px) {
    .simple-page-content {
        padding: 0 15px;
    }
    
    .simple-page-content .entry-title {
        font-size: 2rem;
    }
    
    .simple-page-content .entry-content p {
        font-size: 15px;
    }
}

/**
 * Tablet optimization
 */
@media (min-width: 768px) and (max-width: 991px) {
    .simple-page-content {
        max-width: 700px;
    }
}

/**
 * Desktop optimization
 */
@media (min-width: 992px) {
    .simple-page-content-wrapper {
        padding: 40px 0;
    }
    
    .simple-page-content .entry-content p {
        font-size: 16px;
    }
}
