/* INITIAL PAGE SETUP */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

/* SIDEBAR SETUP */

.sidebar {
    position: sticky;
    top: 1rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;

}

.sidebar-text {
    list-style: none;
    line-height: 2.5rem;
}

.sidebar-text li a{
    padding: 4px 0;
    display: inline-block;
}

/* MAIN CONTENT SETUP */

.content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 5%;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.content h2 {
    font-size: 1.25rem;
    color: #404040;
    margin-bottom: 2rem;
    text-align: center;
}
.content h3 {
    font-size: 2rem;
    color: #404040;
    text-align: center;
    margin-bottom: 0.5rem;
}
            
/* LINKS */

a {
    color: #404040;
    text-decoration: none;
}

a:hover {
    color: #000;
}

.active, .active:hover {
    color: #0083ff;
}

.external-link{
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

.external-link:hover {
    color: #0083ff;
    border-bottom: 1px solid #0083ff;
    transform: translateY(-1px);
}

/* BODY BULLET POINTS */

.body-list {
    padding-left: 0;
    margin-left: 0;
}

.body-list li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
}

.body-list li::before {
    content: "•";
    position: absolute;
    left: .75rem;
    top: -0.3rem;
    font-size: 1.5em;
}

/* CARD SETUP */

.item-block {
    padding: 1.5rem 1.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s ease;
}

.item-block:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.item-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}


/* IMAGES */

.portrait {
    height: 150px;
    width: 150px;
    margin-bottom: 10px;
}

.social-icons{
    width: 2rem;
    height: 2rem;
    display: inline-block;
    fill: #808080;
}

.social-icons:hover {
    fill: #0083ff;
    transition: all 0.2s ease;
}