/* GREG BARROW, MD - TIGHT ARCHITECTURAL VARIANT (70% WIDTH) */
:root {
    --navy-primary: #0F172A;
    --slate-steel: #475569;
    --accent-blue: #2563EB;
    --paper-white: #FFFFFF;
    --dock-bg: #F1F5F9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', 'Segoe UI', sans-serif; 
    line-height: 1.5; 
    color: var(--navy-primary); 
    background-color: var(--dock-bg);
}

/* 1. PAGE WIDTH ADJUSTED TO 70% */
.content-wrapper {
    width: 70%;
    max-width: 1400px;
    margin: 20px auto 40px auto;
}

/* 2. DOCKED PANEL LAYOUT */
.hero-layout {
    display: flex;
    align-items: stretch;
    background: var(--paper-white);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* SIDEBAR: TECHNICAL CONTROL PANEL */
.sidebar-panel {
    flex: 0 0 320px;
    background-color: var(--navy-primary);
    color: var(--paper-white);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

.portrait-frame {
    width: 100%;
    aspect-ratio: 817 / 1266;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-creds {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-bottom: 15px;
}

.sidebar-creds span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 3px;
}

.sidebar-creds p {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
}

.btn-docked {
    display: block;
    background: var(--accent-blue);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 18px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-docked:hover { background: #1D4ED8; }

/* MAIN DATA PANEL: INCREASED TEXT SIZE */
.main-data-panel {
    flex: 1;
    padding: 50px 70px; /* Balanced padding for 70% width */
}

.profile-header { margin-bottom: 35px; }

.header-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--slate-steel);
    display: block;
    margin-bottom: 8px;
}

.profile-header h1 {
    font-size: 2.6rem; /* Upscaled */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accent-rule {
    width: 70px;
    height: 4px;
    background: var(--accent-blue);
    margin-top: 15px;
}

.profile-group { margin-bottom: 30px; }

.profile-label {
    font-size: 0.85rem; /* Slightly larger */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy-primary);
    display: block;
    margin-bottom: 10px;
}

.profile-statement {
    font-size: 1.35rem; /* SIGNIFICANTLY UPSCALED FOR PC */
    font-weight: 300;
    color: #475569;
    max-width: 90%; /* Allows text to fill the container more effectively */
    line-height: 1.6;
}

.btn-blueprint {
    display: block;
    background-color: #2563EB !important; /* Greg's Precision Blue */
    color: #FFFFFF !important;
    text-decoration: none;
    text-align: center;
    padding: 18px 25px; /* Upscaled padding */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem; /* Matches upscaled sidebar text */
    letter-spacing: 2px;
    border: none;
    margin-top: 30px; /* Vertical breathing room in the specs-pane */
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-blueprint:hover {
    background-color: #1D4ED8 !important; /* Deep Navy hover state */
    transform: translateY(-2px); /* Subtle interactive lift */
}
/* 3. MOBILE REFACTOR */
@media (max-width: 1024px) {
    .content-wrapper { width: 100%; margin-top: 0; }
    .hero-layout { flex-direction: column; }
    .sidebar-panel { width: 100%; flex: none; align-items: center; text-align: center; }
    .portrait-frame { width: 260px; }
    .main-data-panel { padding: 40px 25px; }
    .profile-header h1 { font-size: 1.8rem; }
    .profile-statement { font-size: 1.15rem; max-width: 100%; }
}