/* style/blog-cwin666-new-link-guide.css */

/* Base styles for the page content, ensuring contrast with shared body background */
.page-blog-cwin666-new-link-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    padding-bottom: 40px; /* Ensure space before footer */
}

/* Container for main content width */
.page-blog-cwin666-new-link-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-cwin666-new-link-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F; /* Background */
}

.page-blog-cwin666-new-link-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
}

.page-blog-cwin666-new-link-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-cwin666-new-link-guide__hero-content {
    max-width: 800px;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.page-blog-cwin666-new-link-guide__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-cwin666-new-link-guide__description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-cwin666-new-link-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}