.page-blog-how-to-access-go89-safely {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-top: 10px; /* Small top padding, body handles main offset */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-blog-how-to-access-go89-safely__hero-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    text-align: center;
    background-color: #FFFFFF; /* Card BG for this section */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-blog-how-to-access-go89-safely__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-how-to-access-go89-safely__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0; /* Match parent border-radius */
    object-fit: cover;
    min-width: 200px; /* Enforce minimum display size as per requirement */
    min-height: 200px; /* Enforce minimum display size as per requirement */
}

.page-blog-how-to-access-go89-safely__hero-content {
    padding: 0 30px 40px 30px;
    width: 100%;
    max-width: 900px; /* Constrain content width */
}

.page-blog-how-to-access-go89-safely__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem); /* Responsive H1 font size */
    color: #1F2D3D;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-how-to-access-go89-safely__intro-text {
    font-size: 1.1rem;
    color: #1F2D3D;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-access-go89-safely__meta-info {
    font-size: 0.9rem;
    color: #1F2D3D; 
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.page-blog-how-to-access-go89-safely__publish-date {
    color: #1F2D3D;
}

.page-blog-how-to-access-go89-safely__category-link {
    color: #2F6BFF; /* Primary blue for links */
    text-decoration: none;
    font-weight: bold;
}

.page-blog-how-to-access-go89-safely__category-link:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Lighter blue on hover */
}

.page-blog-how-to-access-go89-safely__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    min-width: 200px; /* Ensure button is not too small */
}

.page-blog-how-to-access-go89-safely__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-blog-how-to-access-go89-safely__content-section {
    max-width: 1390px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.page-blog-how-to-access-go89-safely__container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-how-to-access-go89-safely__section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #1F2D3D;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-how-to-access-go89-safely__paragraph {
    font-size: 1rem;
    color: #1F2D3D;
    margin-bottom: 20px;
}

.page-blog-how-to-access-go89-safely__ordered-list,
.page-blog-how-to-access-go89-safely__unordered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 0; /* Remove default padding for inside list-style */
}

.page-blog-how-to-access-go89-safely__list-item {
    font-size: 1rem;
    color: #1F2D3D;
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-blog-how-to-access-go89-safely__list-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #1F2D3D;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-access-go89-safely__content-image {
    margin: 25px auto;
    min-width: 200px; /* Enforce minimum display size as per requirement */
    min-height: 200px; /* Enforce minimum display size as per requirement */
}

.page-blog-how-to-access-go89-safely__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-blog-how-to-access-go89-safely__cta-button--bottom {
    font-size: 1.1rem;
    padding: 16px 35px;
}

/* General image styling within the main content area */
.page-blog-how-to-access-go89-safely img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-how-to-access-go89-safely__hero-section {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-blog-how-to-access-go89-safely__hero-content {
        padding: 0 20px 30px 20px;
    }

    .page-blog-how-to-access-go89-safely__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-how-to-access-go89-safely__intro-text {
        font-size: 1rem;
    }

    .page-blog-how-to-access-go89-safely__meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-how-to-access-go89-safely__content-section {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .page-blog-how-to-access-go89-safely__container {
        padding: 25px;
    }

    .page-blog-how-to-access-go89-safely__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-access-go89-safely__list-title {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    }
}