/* style/blog-pog79-latest-link.css */
/* Base styles for the page content, inheriting from body if applicable */
.page-blog-pog79-latest-link {
    font-family: 'Arial', sans-serif;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--background, #08160F); /* Page specific background if different from body */
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-blog-pog79-latest-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-pog79-latest-link__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    background-color: var(--background, #08160F);
}

.page-blog-pog79-latest-link__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width of the image itself */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and text content */
}

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

.page-blog-pog79-latest-link__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-pog79-latest-link__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

.page-blog-pog79-latest-link__intro-text .keyword {
    color: var(--glow, #57E38D); /* Highlight keywords */
}