/* 1. IMPORTS & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lato:wght@400;700&family=Open+Sans:wght@700;800&display=swap');

:root {
    --font-open-sans: 'Open Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-lato: 'Lato', sans-serif;
}

/* 2. BASE RESET */
body {
    margin: 0;
    background-color: #ffffff;
    color: #171717;
    font-family: var(--font-inter);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. CONTENT AREA & GRID */
.view-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 1.5rem;
}

.inner-wrap {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.grid-two-one {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

@media (min-width: 768px) {
    .grid-two-one { grid-template-columns: minmax(0, 7fr) 2fr; }
}

/* 4. CARDS & TYPOGRAPHY */
.view-card {
    padding: 1.5rem 1.1rem 1.1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.view-card.flush {
    padding-left: 0;
    padding-right: 0;
}

.view-card.flush .view-title,
.view-card.flush .view-content,
.view-card.flush .title-sep {
    margin-left: 1.1rem;
    margin-right: 1.1rem;
}

.view-title {
    font-family: var(--font-open-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #1e293b;
    margin-bottom: 1px;
}

hr.title-sep {
    border: 0;
    border-top: 1px solid #eee;
    margin-top: 0;          
    margin-bottom: 6px;
    display: block;
}

.view-content {
    font-family: var(--font-lato);
    font-size: 14px;
    line-height: 1.625;
    color: #334155;
    text-align: justify;
}

.view-content a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.view-content a:hover { color: #64748b !important; }

.breadcrumb {
    font-size: 10px;
    color: #666;
    margin-bottom: 24px;
    font-family: monospace;
    display: block;
}

/* middle pack vie-container */

.mddl-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

.mddl-text-wrap {
            max-width: 680px;
            width: 100%;
            text-align: justified;
            color: #475569; /* slate-600 */
            font-size: 14px; /* text-sm */
            line-height: 1.625;
            margin-bottom: 2rem;
        }

.mddl-text-wrap p { margin-bottom: 1rem; }
.text-emphasis { font-weight: 700; color: #1e293b; }
