/* style/blog-nohu90-latest-features.css */

/* Custom CSS Variables from palette */
:root {
    --main-color: #113B7A;
    --accent-color: #1D5FD1;
    --button-gradient-top: #2B73F6;
    --button-gradient-bottom: #1144A6;
    --card-bg-color: #10233F;
    --text-main-color: #F3F8FF;
    --text-secondary-color: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy-color: #08162B;

    /* RGB values for transparency adjustments */
    --gold-color-rgb: 242, 193, 78;
    --deep-navy-color-rgb: 8, 22, 43;
}

/* Base styles for the page content */
.page-blog-nohu90-latest-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-blog-nohu90-latest-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-nohu90-latest-features__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--deep-navy-color); /* Ensure hero background matches body if needed */
    color: var(--text-main-color);
}

.page-blog-nohu90-latest-features__hero-image {
    width: 100%;
    max-height: 500px; /* Limit height on desktop */
    overflow: hidden;
}

.page-blog-nohu90-latest-features__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
    object-position: center;
}

.page-blog-nohu90-latest-features__hero-content {
    max-width: 900px;
    margin-top: 30px;
    z-index: 1;
}

.page-blog-nohu90-latest-features__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* Using gold for main title for contrast */
}

.page-blog-nohu90-latest-features__lead-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
}

.page-blog-nohu90-latest-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; /* For mobile adaptability */
    max-width: 500px; /* Limit width on desktop */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-nohu90-latest-features__btn-primary,
.page-blog-nohu90-latest-features__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-nohu90-latest-features__btn-primary {
    background: linear-gradient(180deg, var(--button-gradient-top) 0%, var(--button-gradient-bottom) 100%);
    color: var(--text-main-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-nohu90-latest-features__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-nohu90-latest-features__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-blog-nohu90-latest-features__btn-secondary:hover {
    background-color: rgba(var(--gold-color-rgb), 0.1);
    transform: translateY(-2px);
}

/* Content Area */
.page-blog-nohu90-latest-features__content-area {
    padding: 60px 0;
    background-color: var(--deep-navy-color); /* Dark section background */
    color: var(--text-main-color); /* Light text for dark background */
}

.page-blog-nohu90-latest-features__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold-color);
}

.page-blog-nohu90-latest-features__text-block {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--text-secondary-color);
}

.page-blog-nohu90-latest-features__sub-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--gold-color);
    text-align: left;
}

.page-blog-nohu90-latest-features__article-figure {
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.page-blog-nohu90-latest-features__article-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nohu90-latest-features__figcaption {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin-top: 10px;
}

.page-blog-nohu90-latest-features__article-body p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary-color);
}

.page-blog-nohu90-latest-features__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--card-bg-color); /* Using card background color for this CTA box */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: var(--text-main-color);
}

.page-blog-nohu90-latest-features__cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.page-blog-nohu90-latest-features__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
}

/* FAQ Section */
.page-blog-nohu90-latest-features__faq-section {
    padding: 60px 0;
    background-color: var(--deep-navy-color); /* Consistent dark background */
    color: var(--text-main-color);
}

details.page-blog-nohu90-latest-features__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg-color); /* Card background for FAQ items */
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-nohu90-latest-features__faq-item summary.page-blog-nohu90-latest-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: var(--text-main-color); /* Question text color */
    font-weight: 600;
}