/* Base styles for the page-blog-ss88-introduction scope */
.page-blog-ss88-introduction {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main color, suitable for dark backgrounds */
    background-color: #0A0A0A; /* Background color */
    padding-bottom: 50px;
}

/* Container for content to center and limit width */
.page-blog-ss88-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-ss88-introduction__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 50px;
    overflow: hidden;
    background-color: #0A0A0A;
}

.page-blog-ss88-introduction__hero-image {
    width: 100%;
    max-height: 700px; /* Max height for hero image container */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-ss88-introduction__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover the container, may crop sides */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-blog-ss88-introduction__hero-content {
    max-width: 900px;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-ss88-introduction__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-blog-ss88-introduction__description {
    font-size: 1.15rem;
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.page-blog-ss88-introduction__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width for wrapping */
    max-width: 600px; /* Limit overall width */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}