/* NBS Guide Page Styles */

.nbs-guide-page {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

/* Page Header */
.guide-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.guide-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.guide-prompt {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Guide Content Sections */
.guide-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.guide-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(20, 90, 93, 0.08);
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Risks Rosetta Section */
.risks-rosetta-section {
    display: flex;
    flex-direction: column;
}

.rosetta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 1rem;
}

.rosetta-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Useful Resources Section */
.resources-section {
    display: flex;
    flex-direction: column;
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.resources-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resource-link {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

.resource-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Responsive Design */

@media (max-width: 768px) {
    .guide-title {
        font-size: 2rem;
    }

    .guide-intro {
        font-size: 1rem;
    }

    .rosetta-container {
        min-height: 300px;
    }
}

