/* style/blog-what-is-t88-code.css */

/* Base Styles for the page content wrapper */
.page-blog-what-is-t88-code {
    background-color: #08160F; /* Custom background color */
    color: #F2FFF6; /* Main text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Container for content */
.page-blog-what-is-t88-code__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Titles */
.page-blog-what-is-t88-code__section-title {
    color: #F2FFF6; /* Main text color */
    font-size: clamp(28px, 4vw, 42px); /* Responsive font size */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* General Text Blocks */
.page-blog-what-is-t88-code__text-block {
    margin-bottom: 20px;
    color: #A7D9B8; /* Secondary text color */
    font-size: 17px;
}

/* Keyword highlighting */
.page-blog-what-is-t88-code__text-block .keyword-highlight {
    color: #F2C14E; /* Gold for keywords */
    font-weight: bold;
}

/* Links */
.page-blog-what-is-t88-code__link {
    color: #57E38D; /* Glow color for links */
    text-decoration: underline;
}

.page-blog-what-is-t88-code__link:hover {
    color: #2AD16F; /* Lighter green on hover */
    text-decoration: none;
}

/* Hero Section */
.page-blog-what-is-t88-code__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

.page-blog-what-is-t88-code__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-what-is-t88-code__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}
}