:root {
    --bg: #071733;
    --card-bg: #0f2748;
    --surface: #ffffff;
    --muted: #6b7280;
    --accent: #0ea5a3;
    --max-w: 1200px;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(180deg, #06213c 0%, #05203a 100%);
    display: flex;
    justify-content: center;
    padding: 50px;
    min-height: 100vh;
}

.container {
    max-width: 90%;
}

.surface {
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface);
    padding: 60px 70px;
    box-shadow: 0 -10px 40px rgba(6, 16, 40, 0.08);
}


/* Surface widened and more padding */


h1.about-header {
    font-size: 30px;
    color: #0b1b2b;
    font-weight: 800;
}

.profile-name {
    font-size: 22px;
    font-weight: 800;
    color: #0b1b2b;
    margin: 6px 0;
}

.profile-role {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 18px;
}

.bio {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 22px;
    text-align: justify;
}

.section {
    border-top: 1px solid #eef2f6;
    padding-top: 18px;
    margin-top: 14px;
}

.row {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 12px 8px;
    border-radius: 12px;
    transition: background .12s;
}

.row .row {
    margin-top: 10px;
}

.row:hover {
    background: rgba(14, 165, 163, 0.03);
}

.icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    flex: 1;
}

.companies .icon {
    width: 10%;
}

.companies .icon img {
    width: 100%;
    padding: 18px;
}

.companies .content {
    width: 80%;
}

.title {
    font-weight: 700;
    color: #0b1b2b;
    font-size: 16px;
}

.meta {
    text-decoration: none;
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.address-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eef3f8;
    margin-top: 12px;
}

.map-thumb {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.addr-line {
    font-size: 14px;
    color: #263238;
    margin-top: 12px;
}

.hours {
    font-size: 15px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.7;
}

.link {
    text-decoration: none !important;
    cursor: pointer !important;
    color: red !important;
}

.spacer {
    height: 22px;
}

/* Grid for large screens */
@media (min-width: 1100px) {
    .surface-grid {
        display: grid;
        grid-template-columns: 1fr 460px;
        gap: 36px;
        align-items: start;
    }

    .right-column {
        align-self: start;
    }

    .bio {
        max-width: 100%;
    }
}

/* Tablet screens */
/* @media (max-width: 1099px) {
    .surface-grid {
        display: block;
    }

    .surface {
        padding: 50px 50px;
        margin-top: -56px;
    }

    .top-image {
        height: 300px;
    }
} */

/* Mobile screens */
@media (max-width: 700px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 95%;
    }

    .surface {
        padding: 20px;
    }

    .top-image {
        height: 220px;
    }

    .icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .companies .icon img {
        padding: 10px;
    }


    .map-thumb {
        height: 180px;
    }
}