/**
 * Internal Pages Styles - Modern Sidebar Design
 */

/* Blue Header Bar - Pale blue, smaller padding */
.internal-page-header-bar {
    background: #d5e7f4;
    padding: 25px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
}

.internal-page-header-bar h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c5973;
    margin: 0 0 8px 0;
}

.internal-page-header-bar .header-subtext {
    font-size: 15px;
    color: #5a7285;
    margin: 0;
}

/* Page Layout - MUST BE 1200px to match blue bar */
.internal-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px 0;
    box-sizing: border-box;
}

.internal-page-content {
    min-width: 0;
    width: 100%;
}

/* Image at top of content - 150px max height */
.page-top-image {
    margin: 0 0 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

.page-top-image img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    display: block;
}

/* Page Content */
.page-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.page-text h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #004d73;
}

.page-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-text p {
    margin-bottom: 18px;
}

.page-text a {
    color: #004d73;
    text-decoration: none;
}

.page-text a:hover {
    text-decoration: underline;
}

/* SIDEBAR - 300px to match the modern style */
.ukptg-sidebar {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1240px) {
    .internal-page-wrapper {
        max-width: 100%;
        padding: 0 20px 40px 20px;
    }
}

@media (max-width: 1024px) {
    .internal-page-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ukptg-sidebar {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        order: -1;
        margin-bottom: 24px;
    }
}
