@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('montserrat-200.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('montserrat-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('montserrat-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('montserrat-700.woff2') format('woff2');
}

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    background: #242222;
    color: #E0E0E0;
    padding: 12px;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

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

a, a:visited, a:active {
    color: #D67C85;
    text-decoration: none;
}

a:hover {
    color: #D67C85;
    text-decoration: underline;
}

.plus-sign {
    font-weight: 300;
    margin: 0 8px;
}

.dot-separator {
    font-weight: 200;
    margin: 0 8px;
}

.pipe-separator {
    opacity: 0.4;
    margin: 0 8px;
    font-weight: 200;
}

hr.divider {
    border: 0;
    height: 1px;
    width: 120px;
    background-color: #444;
    margin: 20px 0;
}

.separator-slash {
    opacity: 0.4;
    margin: 0 4px;
    font-weight: normal;
}

.year {
    opacity: 0.7;
    font-size: 0.9em;
}

ul.plus-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

ul.plus-list li {
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
}

ul.plus-list li::before {
    content: "+"; 
    color: #888;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: 1px;
}

li.archive-item {
    margin-top: 8px;
    font-style: italic;
}

ul.plus-list li.archive-item::before {
    content: "→";
    color: #D67C85;
}

.list-label, h3 {
    margin-bottom: 2px;    
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
}

h1 {
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.single-line-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

header.header-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 20px;
}

.profile-circle {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center; 
    border: 3px solid #D67C85;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.header-text {
    text-align: left; 
}

table.modern-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    text-align: left;
}

table.modern-table th, 
table.modern-table td {
    padding: 14px 15px;
}

table.modern-table th {
    color: #FFFFFF;
    font-weight: 700;
    border-bottom: 2px solid #555;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

table.modern-table td {
    border-bottom: 1px solid #333;
    color: #E0E0E0;
}

table.modern-table tr:last-child td {
    border-bottom: 2px solid #555;
}

table.modern-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03); 
    transition: background-color 0.2s ease;
}

@media (max-width: 600px) {
    header.header-container {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    .profile-circle {
        width: 155px;
        height: 155px;
        margin-bottom: 10px;
    }
    .header-text p {
        font-size: 16px;
    }
    .dot-separator, .plus-sign, .separator-pipe {
    margin: 0 4px; 
    }
}
