/* ==========================================================================
   1. Design Tokens & Swiss Editorial Variables
   ========================================================================== */
:root {
    /* Color Tokens */
    --bg-canvas: #faf9f6;          /* Linen paper canvas background */
    --bg-panel: #ffffff;           /* Clean white panels and card shapes */
    --bg-terminal: #f3f2ee;        /* Warm light grey for terminal shell */
    --border-thin: 1px solid rgba(26, 29, 32, 0.08);
    --border-hover: 1px solid rgba(178, 106, 74, 0.4);
    
    /* Brand Accent: Terracotta Copper */
    --accent-terracotta: #b26a4a;
    --accent-terracotta-rgb: 178, 106, 74;
    
    --accent-emerald: #0d9488;     /* Soft teal-emerald for badges */
    
    /* High Contrast Typography */
    --text-dark: #1a1d20;          /* Charcoal black for primary copy */
    --text-muted: #5e646a;         /* Neutral slate-grey for descriptions */
    --text-light: #8e959c;         /* Light grey for dates and indices */
    
    /* Modern Swiss Typography Pairings */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    
    /* Timing Controls */
    --transition-clean: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   2. Global Resets & Layout Defaults
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-canvas);
}

body {
    background-color: var(--bg-canvas);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Selection Colors */
::selection {
    background-color: var(--accent-terracotta);
    color: var(--bg-panel);
}

/* Minimal Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-canvas);
}
::-webkit-scrollbar-thumb {
    background: rgba(26, 29, 32, 0.1);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-terracotta);
}

/* Top Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent-terracotta);
    width: 0%;
    z-index: 1000;
}

/* ==========================================================================
   3. Grid Layout Architecture
   ========================================================================== */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sidebar Column Layout */
.app-sidebar {
    width: 100%;
    background-color: var(--bg-panel);
    border-bottom: var(--border-thin);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    z-index: 50;
}

/* Main Content Area */
.app-main {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Responsive Overrides (Laptops/Desktops) */
@media (min-width: 1024px) {
    .app-container {
        flex-direction: row;
    }
    
    .app-sidebar {
        width: 420px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        border-bottom: none;
        border-right: var(--border-thin);
        overflow-y: auto;
        padding: 4rem 2.5rem;
    }
    
    .app-sidebar::-webkit-scrollbar {
        display: none; /* Hide sidebar scroll */
    }
    
    .app-main {
        margin-left: 420px;
        padding: 0 5rem 5rem 5rem;
        gap: 5rem;
    }
}

@media (min-width: 1280px) {
    .app-sidebar {
        width: 450px;
    }
    
    .app-main {
        margin-left: 450px;
        padding: 0 7rem 6rem 7rem;
    }
}

/* ==========================================================================
   4. Sidebar Content Styles
   ========================================================================== */

/* Logo area and header tags */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-terracotta);
    border-radius: 50%;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.12);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.pulse-ring {
    width: 5px;
    height: 5px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    position: relative;
}
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent-emerald);
    animation: pulse-ring 2s infinite ease-out;
}
@keyframes pulse-ring {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}
.badge-text {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent-emerald);
    letter-spacing: 0.05em;
}

/* Profile Details & Photo Frame */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.portrait-container {
    width: 180px;
    height: 240px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(26, 29, 32, 0.12);
    margin-bottom: 2rem;
    background-color: var(--bg-canvas);
    transition: var(--transition-clean);
}
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.02) saturate(0.98);
}
.portrait-container:hover {
    transform: translateY(-2px);
    border-color: var(--accent-terracotta);
    box-shadow: 0 15px 30px rgba(26, 29, 32, 0.05);
}

@media (min-width: 1024px) {
    .profile-card {
        align-items: flex-start;
    }
    .portrait-container {
        width: 200px;
        height: 260px;
    }
}

.profile-meta {
    text-align: center;
    width: 100%;
}
.profile-name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.profile-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.meta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    width: 100%;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.meta-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--text-light);
}

@media (min-width: 1024px) {
    .profile-meta {
        text-align: left;
    }
    .meta-list {
        align-items: flex-start;
    }
}

/* ==========================================================================
   5. Interactive AI Console Widget Styles
   ========================================================================== */
.terminal-widget {
    background-color: var(--bg-terminal);
    border: var(--border-thin);
    border-radius: 0.75rem;
    padding: 1.25rem;
    width: 100%;
    font-family: var(--font-mono);
}
.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(26, 29, 32, 0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 0.875rem;
}
.terminal-dots {
    display: flex;
    gap: 0.375rem;
}
.t-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(26, 29, 32, 0.2);
}

.terminal-title {
    font-size: 9px;
    font-weight: bold;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terminal-content {
    min-height: 80px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-dark);
    white-space: pre-wrap;
    margin-bottom: 1rem;
}
.terminal-content::after {
    content: '█';
    color: var(--accent-terracotta);
    animation: cursor-blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes cursor-blink {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

.terminal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.terminal-btn {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-clean);
}
.terminal-btn:hover {
    color: var(--text-dark);
    border-color: var(--accent-terracotta);
    background-color: rgba(178, 106, 74, 0.05);
}
.btn-arrow {
    color: var(--accent-terracotta);
    transition: var(--transition-clean);
}
.terminal-btn:hover .btn-arrow {
    transform: translateX(2px);
}

/* Contact Links in Sidebar */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}
.social-row {
    display: flex;
}
.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: var(--border-thin);
    background-color: var(--bg-panel);
    color: var(--text-dark);
    transition: var(--transition-clean);
}
.action-btn:hover {
    border-color: var(--accent-terracotta);
    background-color: rgba(178, 106, 74, 0.04);
}
.btn-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent-terracotta);
}

/* ==========================================================================
   6. Main Content Area & Sticky Desktop Navigation Headers
   ========================================================================== */

/* Sticky Header Container wrapping Vacancy Switcher + Nav */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(8px);
    z-index: 45;
    border-bottom: var(--border-thin);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .sticky-header {
        margin-left: -5rem;
        margin-right: -5rem;
        padding: 2rem 5rem 0.75rem 5rem;
        gap: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .sticky-header {
        margin-left: -7rem;
        margin-right: -7rem;
        padding-left: 7rem;
        padding-right: 7rem;
    }
}

/* Top vacancy switcher styling */
.vacancy-switcher-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.switcher-label {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
}
.switcher-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    width: 100%;
}
.switcher-tab {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-display);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-clean);
}
.switcher-tab:hover {
    color: var(--text-dark);
    border-color: rgba(var(--accent-terracotta-rgb), 0.3);
}
.switcher-tab.active {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--bg-panel);
    box-shadow: 0 4px 10px rgba(var(--accent-terracotta-rgb), 0.15);
}

@media (min-width: 768px) {
    .vacancy-switcher-bar {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .switcher-tabs {
        width: auto;
    }
}

/* Desktop navigation links styling */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        width: 100%;
    }
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    .nav-link {
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        position: relative;
        padding-bottom: 2px;
        transition: var(--transition-clean);
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background-color: var(--accent-terracotta);
        transition: var(--transition-clean);
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--text-dark);
    }
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-tracker {
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--text-light);
        letter-spacing: 0.05em;
    }
}

/* Vacancy View Swapping Visibility */
.vacancy-view {
    display: none;
    flex-direction: column;
    gap: 5rem;
}
.vacancy-view.active-view {
    display: flex;
}

@media (min-width: 1024px) {
    .vacancy-view {
        gap: 8rem;
    }
}

/* Section Header Dividers */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.section-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}
.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}
.header-line {
    flex: 1;
    height: 1px;
    background-color: rgba(26, 29, 32, 0.08);
}

/* Manifesto Section */
.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.manifesto-lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
}
@media (min-width: 768px) {
    .manifesto-lead {
        font-size: 1.35rem;
    }
}
.manifesto-body {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   7. Bento Box Grid & Card Component Styles (Light Mode)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bento-card {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition-clean);
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 106, 74, 0.35);
    box-shadow: 0 10px 25px rgba(26, 29, 32, 0.03);
}

.card-icon-wrapper {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background-color: rgba(178, 106, 74, 0.04);
    border: 1px solid rgba(178, 106, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-clean);
}
.bento-card:hover .card-icon-wrapper {
    background-color: rgba(178, 106, 74, 0.08);
    border-color: var(--accent-terracotta);
}
.card-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--accent-terracotta);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}
.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   8. Experience Timeline Styles
   ========================================================================== */
.timeline-container {
    position: relative;
    border-left: 1px solid rgba(26, 29, 32, 0.08);
    margin-left: 0.5rem;
    padding-left: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.timeline-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.08), transparent);
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -33.5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-canvas);
    border: 2px solid var(--accent-terracotta);
    transition: var(--transition-clean);
}
.timeline-item:hover .timeline-dot {
    background-color: var(--accent-terracotta);
    transform: scale(1.2);
}

.timeline-header {
    margin-bottom: 0.75rem;
}
.timeline-date {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-terracotta);
    background-color: rgba(178, 106, 74, 0.05);
    border: 1px solid rgba(178, 106, 74, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.timeline-role {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}
.timeline-company {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-achievements {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 0.75rem;
    padding: 1rem;
}
.achievements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.achievements-list li {
    position: relative;
    padding-left: 1rem;
}
.achievements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-terracotta);
}

/* ==========================================================================
   9. Tech Tag Badges & Education
   ========================================================================== */
.stack-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stack-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.stack-card {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 1rem;
    padding: 1.75rem;
}
.stack-group-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}
.stack-group-indicator {
    width: 4px;
    height: 10px;
    background-color: var(--accent-terracotta);
    border-radius: 999px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tech-tag {
    background-color: var(--bg-canvas);
    border: var(--border-thin);
    border-radius: 0.75rem;
    padding: 0.4rem 0.85rem;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: default;
    transition: var(--transition-clean);
}
.tech-tag:hover {
    border-color: var(--accent-terracotta);
    color: var(--text-dark);
    transform: scale(1.02);
}

/* Education Overrides */
.education-card {
    gap: 1rem;
}
.card-badge-row {
    display: flex;
    gap: 0.5rem;
}
.card-badge {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--bg-canvas);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}
.badge-emerald {
    color: var(--accent-emerald);
    background-color: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.1);
}
.card-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================================================
   10. Simplified Contact Section (No Forms)
   ========================================================================== */
.contact-box {
    background-color: var(--bg-panel);
    border: var(--border-thin);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .contact-box {
        padding: 2.5rem;
    }
}

.contact-lead-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.contact-lead-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.direct-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(26, 29, 32, 0.05);
    padding-top: 1.5rem;
}

.direct-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: var(--transition-clean);
}
.direct-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background-color: var(--bg-canvas);
    border: var(--border-thin);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-clean);
}
.direct-contact-item:hover .direct-icon-wrapper {
    border-color: var(--accent-terracotta);
    background-color: rgba(178, 106, 74, 0.05);
}
.direct-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent-terracotta);
}

.direct-meta {
    display: flex;
    flex-direction: column;
}
.direct-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
}
.direct-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.direct-contact-item:hover .direct-value {
    color: var(--accent-terracotta);
}

/* ==========================================================================
   11. Reveal animations states
   ========================================================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   12. Simple Print Layout Override
   ========================================================================== */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 10pt !important;
        line-height: 1.4 !important;
    }
    #scroll-progress,
    .desktop-nav,
    .terminal-widget,
    .sidebar-actions,
    .card-icon-wrapper,
    #contact,
    .sticky-header {
        display: none !important;
    }
    .app-container {
        display: block !important;
    }
    .app-sidebar {
        width: 100% !important;
        position: static !important;
        height: auto !important;
        padding: 0 0 1.5rem 0 !important;
        margin-bottom: 2rem !important;
        border-bottom: 2px solid #000000 !important;
    }
    .profile-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .portrait-container {
        width: 80px !important;
        height: 108px !important;
        margin-bottom: 0 !important;
    }
    .app-main {
        margin-left: 0 !important;
        padding: 0 !important;
        gap: 2rem !important;
    }
    .main-section {
        page-break-inside: avoid !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
