.page-blog-ph333-latest-updates {
    color: #e5e5e5;
    background-color: #0d0d0d; /* Darker background for main content */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-ph333-latest-updates__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    background-color: #1A2E44; /* Main brand color */
    color: #f5f5f5;
    border-radius: 8px;
    margin: 0 20px 40px; /* Adjust margin for overall page layout */
    overflow: hidden; /* To contain border-radius */
}

.page-blog-ph333-latest-updates__hero-image {
    width: 100%;
    max-width: 1200px; /* Matches HTML width for CLS */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-ph333-latest-updates__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-ph333-latest-updates__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFD700; /* Accent color for H1 */
    margin-bottom: 15px;
    /* No fixed font-size, relying on default browser scaling and responsiveness */
}

.page-blog-ph333-latest-updates__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.page-blog-ph333-latest-updates__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-blog-ph333-latest-updates__cta-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

.page-blog-ph333-latest-updates__blog-list-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-ph333-latest-updates__section-title {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 2em;
}

.page-blog-ph333-latest-updates__post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-ph333-latest-updates__post-card {
    background-color: #1A2E44;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-ph333-latest-updates__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ph333-latest-updates__post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-blog-ph333-latest-updates__post-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, matches HTML height */
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-ph333-latest-updates__post-content {
    padding: 20px;
}

.page-blog-ph333-latest-updates__post-title {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-blog-ph333-latest-updates__post-meta {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 15px;
}

.page-blog-ph333-latest-updates__post-excerpt {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.page-blog-ph333-latest-updates__read-more-link {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.page-blog-ph333-latest-updates__read-more-link:hover {
    color: #e0b800;
}

.page-blog-ph333-latest-updates__view-all-container {
    text-align: center;
    margin-top: 40px;
}

.page-blog-ph333-latest-updates__view-all-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-blog-ph333-latest-updates__view-all-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

.page-blog-ph333-latest-updates__cta-section {
    background-color: #1A2E44;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ph333-latest-updates__cta-content {
    max-width: 800px;
}

.page-blog-ph333-latest-updates__cta-title {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-ph333-latest-updates__cta-description {
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog-ph333-latest-updates__highlight {
    color: #FFD700;
    font-weight: 700;
}

.page-blog-ph333-latest-updates__cta-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-ph333-latest-updates__hero-section {
        margin: 0 10px 30px;
        padding: 15px 0 30px;
    }

    .page-blog-ph333-latest-updates__hero-content {
        padding: 0 15px;
    }

    .page-blog-ph333-latest-updates__main-title {
        font-size: 2em;
    }

    .page-blog-ph333-latest-updates__description {
        font-size: 1rem;
    }

    .page-blog-ph333-latest-updates__cta-button {
        padding: 10px 20px;
        min-width: unset;
        width: auto;
    }

    .page-blog-ph333-latest-updates__section-title {
        font-size: 1.8em;
    }

    .page-blog-ph333-latest-updates__post-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-blog-ph333-latest-updates__post-title {
        font-size: 1.2rem;
    }

    .page-blog-ph333-latest-updates__cta-section {
        margin: 30px 10px;
        padding: 40px 15px;
    }

    .page-blog-ph333-latest-updates__cta-title {
        font-size: 2em;
    }

    .page-blog-ph333-latest-updates__cta-description {
        font-size: 1.1rem;
    }

    /* Ensure all images within main content are responsive and don't overflow */
    .page-blog-ph333-latest-updates img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all images within .page-blog-ph333-latest-updates are at least 200px wide/high if they are not responsive */
/* This specific rule targets all img elements in the main content area */
.page-blog-ph333-latest-updates img:not(.shared-logo):not(.shared-icon) {
    min-width: 200px;
    min-height: 200px;
}