/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    background-color: #f8f8f8;
    color: #2b2624;
}

/* Tinte-Effekt für gesamten Text */
body * {
    text-shadow: 0.3px 0 0.3px rgba(43, 38, 36, 0.3), 
                 -0.3px 0 0.3px rgba(43, 38, 36, 0.2),
                 0 0.3px 0.5px rgba(43, 38, 36, 0.15);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border: none;
    outline: none;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
    line-height: 1.4;
    max-width: 600px;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-skip-ink: none;
}

h5 {
    font-size: 1rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
    line-height: 1.4;
    font-weight: bold;
}

/* Horizontal Rules - Unified Spacing */
hr {
    margin: 1.1rem 0;
    border: none;
    height: 2px;
    max-width: 600px;
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 8px,
        transparent 8px,
        transparent 14px,
        #2b2624 14px,
        #2b2624 20px,
        transparent 20px,
        transparent 28px,
        #2b2624 28px,
        #2b2624 34px,
        transparent 34px,
        transparent 42px
    );
    position: relative;
}

/* Variationen für unterschiedliche HRs */
.cv-section hr:nth-of-type(2n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 10px,
        transparent 10px,
        transparent 16px,
        #2b2624 16px,
        #2b2624 22px,
        transparent 22px,
        transparent 30px,
        #2b2624 30px,
        #2b2624 36px,
        transparent 36px,
        transparent 45px
    );
}

.cv-section hr:nth-of-type(3n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 7px,
        transparent 7px,
        transparent 15px,
        #2b2624 15px,
        #2b2624 23px,
        transparent 23px,
        transparent 29px,
        #2b2624 29px,
        #2b2624 37px,
        transparent 37px,
        transparent 44px
    );
}

/* Citation Styling */
.citation {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-style: italic;
    font-size: 1.1rem;
    color: #2b2624;
    text-align: justify;
    margin-bottom: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    background-color: #f5f5f5;
    padding: 1rem;
    box-sizing: border-box;
    border: 3px solid #2b2624;
    border-radius: 20px 1px 18px 2px/2px 18px 1px 19px;
    position: relative;
}

/* Variationen für unterschiedliche Text-Einträge */
.text-entry:nth-child(odd) .citation {
    border-radius: 19px 2px 18px 1px/1px 18px 2px 20px;
}

.text-entry:nth-child(even) .citation {
    border-radius: 21px 1px 20px 2px/2px 20px 1px 19px;
}

.text-entry:nth-child(3n) .citation {
    border-radius: 18px 2px 20px 1px/1px 20px 2px 18px;
}

/* Table Styling */
table {
    width: 100%;
    max-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.1rem 0;
    background-color: white;
    overflow: hidden;
    border: 3px solid #2b2624;
    border-radius: 16px 2px 17px 1px/1px 18px 2px 16px;
    position: relative;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 2px solid #2b2624;
    border-bottom-style: dashed;
}

th {
    background-color: #2b2624;
    color: #f8f8f8;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #f1f3f4;
    transition: background-color 0.2s ease;
}

td {
    color: #2b2624;
    font-size: 1.1rem;
}

.concept-column {
    font-weight: bold;
    color: #2b2624;
    width: 30%;
}

.description-column {
    width: 70%;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 4px solid #2b2624;
    padding: 1rem;
    z-index: 1003;
    justify-content: space-between;
    align-items: center;
}

.mobile-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #2b2624;
    border-radius: 2px 1px 3px 2px / 1px 2px 1px 3px;
}

.mobile-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    color: #2b2624;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-breadcrumb {
    color: #2b2624;
    font-weight: bold;
}

.mobile-breadcrumb::before {
    content: " > ";
    color: #2b2624;
    margin: 0 0.25rem;
}

/* Burger Menu */
.burger-menu {
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #2b2624;
    transition: all 0.3s ease;
    border-radius: 3px 1px 2px 1px;
    position: relative;
}

.burger-line:nth-child(1) {
    border-radius: 2px 1px 3px 1px;
}

.burger-line:nth-child(2) {
    border-radius: 3px 1px 2px 2px;
}

.burger-line:nth-child(3) {
    border-radius: 2px 2px 3px 1px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    z-index: 1002;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-nav-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    color: #2b2624;
    font-weight: bold;
}

.mobile-nav-close {
    font-size: 1.7rem;
    color: #2b2624;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-nav-mugshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 4px solid #2b2624;
    margin-bottom: 1.1rem;
    object-fit: cover;
    max-height: 250px;
    border-radius: 21px 1px 20px 2px/2px 20px 1px 21px;
    position: relative;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-nav-button {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6rem;
    font-weight: bold;
    color: #2b2624;
    background: white;
    border: 4px solid #2b2624;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    flex: 1;
    min-width: 0;
    border-radius: 18px 2px 16px 1px/1px 18px 2px 17px;
    position: relative;
}

/* Mobile Navigation Buttons - Variationen */
.mobile-nav-button:nth-child(1) {
    border-radius: 18px 2px 16px 1px/1px 18px 2px 17px;
}

.mobile-nav-button:nth-child(2) {
    border-radius: 20px 1px 19px 2px/2px 18px 1px 20px;
}

.mobile-nav-button:nth-child(3) {
    border-radius: 17px 2px 20px 1px/1px 19px 2px 18px;
}

.mobile-nav-button:nth-child(4) {
    border-radius: 21px 1px 18px 2px/2px 20px 1px 18px;
}

.mobile-nav-button:hover,
.mobile-nav-button:focus {
    background-color: #2b2624;
    color: #f8f8f8;
}

.mobile-nav-button:active {
    transform: translateY(2px);
}

/* Desktop Navigation */
nav {
    flex: 0 0 200px;
}

nav .name-link {
    font-family: 'Courier New', Courier, monospace;
    color: #2b2624;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.4rem;
    font-weight: bold;
}

nav .name-link:hover {
    color: #3d3431;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.mobile-name-link {
    font-family: 'Courier New', Courier, monospace;
    color: #2b2624;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.4rem;
    font-weight: bold;
}

.mobile-name-link:hover {
    color: #3d3431;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

main {
    flex: 1;
    padding-right: 2rem;
}

nav p {
    font-size: 1.1rem;
    color: #2b2624;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Force borders on ALL img elements with mugshot classes */
img.mugshot,
img.mugshot-inline,
img.mugshot-about,
img.floating-mugshot,
img.mobile-nav-mugshot,
.mugshot,
.mugshot-inline,
.mugshot-about,
.floating-mugshot,
.mobile-nav-mugshot {
    border: 4px solid #2b2624 !important;
    border-style: solid !important;
    border-width: 4px !important;
    border-color: #2b2624 !important;
    position: relative;
}

.mugshot {
    width: 150px;
    height: auto;
    margin: 0 1rem 1rem 0;
    float: left;
    display: block;
    border-radius: 23px 1px 21px 2px/2px 22px 1px 23px;
}

.mugshot-inline {
    width: clamp(140px, 30vw, 200px);
    height: auto;
    margin: 0 0 1.1rem 0;
    display: block;
    border-radius: 18px 2px 19px 1px/1px 20px 2px 18px;
}

/* Mugshot for About page */
.mugshot-about {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1.1rem;
    object-fit: cover;
    display: block;
    border-radius: 20px 1px 19px 2px/2px 21px 1px 20px;
}

.about-content {
    position: relative;
}

nav ul {
    list-style: none;
    margin-top: 0;
}

nav li {
    margin-bottom: 0.5rem;
}

nav a {
    font-family: 'Courier New', Courier, monospace;
    color: #2b2624;
    text-decoration: none;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

nav a.active {
    font-weight: bold;
}

/* Floating Contact Area */
.floating-contact-area {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    margin-right: calc((100vw - 1200px) / 2);
    width: clamp(120px, 15vw, 150px);
}

/* Hide floating contact on About and Contact pages */
body[data-current-page="about"] .floating-contact-area,
body[data-current-page="contact"] .floating-contact-area {
    display: none !important;
}

.floating-mugshot {
    width: 100%;
    height: auto;
    margin-bottom: 1.1rem;
    object-fit: cover;
    max-height: 200px;
    border-radius: 17px 2px 18px 1px/1px 19px 2px 18px;
}

.contact-button {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #2b2624 !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    border: 4px solid #2b2624;
    font-size: 1.1rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
    display: block;
    border-radius: 21px 1px 20px 2px/2px 20px 1px 21px;
}

.contact-button:hover {
    background-color: #2b2624;
    color: #f8f8f8 !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.contact-button span {
    transition: opacity 0.2s ease;
}

.contact-button:hover span {
    opacity: 0;
}

.contact-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    z-index: 1;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.contact-button:hover::before {
    content: "Read imprint";
    opacity: 1;
}

/* Main Content */
main p {
    max-width: 600px;
    color: #2b2624;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    text-align: justify;
}

/* Home Page Styles */
.home-content {
    max-width: 600px;
}

.mugshot-home {
    width: 150px;
    height: auto;
    object-fit: cover;
    margin: 0 0 1rem 1rem;
    float: right;
    display: block;
    max-height: 200px;
    border-radius: 22px 1px 21px 2px/2px 21px 1px 23px;
}

.home-text h2 {
    margin-top: 0;
    margin-bottom: 1.1rem;
}

.home-text p {
    margin-bottom: 1.1rem;
    text-align: justify;
    max-width: 600px;
    color: #2b2624;
    font-size: 1.1rem;
}

.inline-link {
    color: #2b2624;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.inline-link:hover {
    color: #3d3431;
}

/* CV Styles */
.cv-content {
    display: none;
    margin-top: 1.1rem;
    max-width: 600px;
}

.cv-section {
    margin-bottom: 1.1rem;
    max-width: 600px;
}

.cv-item {
    margin-bottom: 1.1rem;
    max-width: 600px;
}

.cv-item h5 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    color: #2b2624;
    max-width: 600px;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

.cv-item ul {
    margin: 1.1rem 0;
    padding-left: 1.5rem;
    max-width: 600px;
}

.cv-item li {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.cv-description {
    font-size: 1.1rem;
    margin-top: 1.1rem;
    text-align: justify;
    max-width: 600px;
}

/* Text Section Styles */
.text-entry {
    margin-bottom: 0;
    padding-bottom: 1.1rem;
    border-bottom: 2px solid transparent;
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 8px,
        transparent 8px,
        transparent 14px,
        #2b2624 14px,
        #2b2624 20px,
        transparent 20px,
        transparent 28px,
        #2b2624 28px,
        #2b2624 34px,
        transparent 34px,
        transparent 42px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    max-width: 600px;
}

.text-entry:not(:last-child) {
    margin-bottom: 1.1rem;
}

.text-entry:last-child,
.text-entry:last-of-type {
    border-bottom: none !important;
    background-image: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Variationen für Text-Einträge */
.text-entry:nth-child(2n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 10px,
        transparent 10px,
        transparent 16px,
        #2b2624 16px,
        #2b2624 22px,
        transparent 22px,
        transparent 30px,
        #2b2624 30px,
        #2b2624 36px,
        transparent 36px,
        transparent 45px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

.text-entry:nth-child(3n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 7px,
        transparent 7px,
        transparent 15px,
        #2b2624 15px,
        #2b2624 23px,
        transparent 23px,
        transparent 29px,
        #2b2624 29px,
        #2b2624 37px,
        transparent 37px,
        transparent 44px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

.text-content {
    white-space: normal;
    line-height: 1.6;
    text-align: justify;
    max-width: 600px;
    color: #2b2624;
    font-size: 1.1rem;
}

.text-content p {
    margin-bottom: 1.1rem;
}

.expand-toggle {
    color: #2b2624;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Courier New', Courier, monospace;
    display: block;
    text-align: right;
    margin-top: 1.1rem;
    max-width: 600px;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.expand-toggle:hover {
    color: #3d3431;
}

/* Audio/Video Styles */
.audio-item {
    margin-bottom: 0;
    padding-bottom: 1.1rem;
    border-bottom: 2px solid transparent;
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 8px,
        transparent 8px,
        transparent 14px,
        #2b2624 14px,
        #2b2624 20px,
        transparent 20px,
        transparent 28px,
        #2b2624 28px,
        #2b2624 34px,
        transparent 34px,
        transparent 42px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    max-width: 600px;
}

.audio-item:not(:last-child) {
    margin-bottom: 1.1rem;
}

/* Variationen für Audio-Einträge */
.audio-item:nth-child(2n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 10px,
        transparent 10px,
        transparent 16px,
        #2b2624 16px,
        #2b2624 22px,
        transparent 22px,
        transparent 30px,
        #2b2624 30px,
        #2b2624 36px,
        transparent 36px,
        transparent 45px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

.audio-item:nth-child(3n) {
    background-image: repeating-linear-gradient(
        to right,
        #2b2624 0px,
        #2b2624 7px,
        transparent 7px,
        transparent 15px,
        #2b2624 15px,
        #2b2624 23px,
        transparent 23px,
        transparent 29px,
        #2b2624 29px,
        #2b2624 37px,
        transparent 37px,
        transparent 44px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

/* Last child MUSS nach den nth-child Regeln kommen */
.audio-item:last-child,
.audio-item:last-of-type {
    border-bottom: none !important;
    background-image: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.audio-description {
    margin-bottom: 1.1rem;
    color: #2b2624;
    font-size: 1.1rem;
    text-align: justify;
    max-width: 600px;
}

.soundcloud-embed {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: none;
}

/* Spotify Embed für Podcasts */
.spotify-embed {
    width: 100%;
    max-width: 600px;
    height: 352px;
    border: none;
    margin-bottom: 1.1rem;
}

/* Podcast Links (RSS Feed) */
.podcast-links {
    margin-top: 1.1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2b2624 !important;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    border: 3px solid #2b2624;
    padding: 0.5rem 1rem;
    border-radius: 16px 2px 15px 1px/1px 16px 2px 15px;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}

.rss-link:hover {
    background: #f8f8f8;
    color: #3d3431 !important;
    transform: translateY(-2px);
}

.rss-link svg {
    flex-shrink: 0;
}

.podcast-item {
    /* Erbt alle audio-item Styles */
}

/* Contact Section */
.contact-section {
    margin-bottom: 1.1rem;
}

.contact-section p {
    text-align: justify;
}

.contact-section a {
    color: #2b2624 !important;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.contact-section a:hover {
    color: #3d3431 !important;
}

.contact-section a:visited {
    color: #2b2624 !important;
}

address {
    font-style: normal;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #2b2624;
}

address a {
    color: #2b2624 !important;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

address a:hover {
    color: #3d3431 !important;
}

address a:visited {
    color: #2b2624 !important;
}

a[href^="mailto:"] {
    color: #2b2624 !important;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

a[href^="mailto:"]:hover {
    color: #3d3431 !important;
}

a[href^="mailto:"]:visited {
    color: #2b2624 !important;
}

#email-placeholder {
    cursor: pointer;
    color: #2b2624 !important;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

#email-placeholder:hover {
    text-decoration: underline;
    color: #3d3431 !important;
}

#email-placeholder:visited {
    color: #2b2624 !important;
}

/* Media Queries */
@media (max-width: 768px) {
    body {
        flex-direction: column;
        padding: 1rem;
        padding-top: 5rem;
        font-size: 17px;
    }

    .mobile-header {
        display: flex;
    }

    nav {
        display: none;
    }

    .floating-contact-area {
        display: none;
    }

    main {
        padding-right: 0;
        padding-top: 1rem;
    }

    main p {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
        margin-top: 1.1rem;
    }

    h3 {
        font-size: 1.0rem;
    }

    h4 {
        font-size: 1.0rem;
    }

    .mobile-nav-button {
        font-size: 1.2rem;
    }

    .mobile-title {
        font-size: 1.2rem;
    }

    .mobile-nav-title {
        font-size: 1.2rem;
    }

    .mobile-nav-close {
        font-size: 1.6rem;
    }

    .mobile-name-link {
        font-size: 1.2rem;
    }

    nav p {
        font-size: 0.9rem;
    }

    nav a {
        font-size: 1.0rem;
    }

    .contact-button {
        font-size: 0.9rem;
    }

    .cv-item h5 {
        font-size: 0.9rem;
    }

    .cv-item li {
        font-size: 0.9rem;
    }

    .cv-description {
        font-size: 0.9rem;
    }

    .expand-toggle {
        font-size: 0.9rem;
    }

    .text-content {
        font-size: 0.9rem;
    }

    .audio-description {
        font-size: 0.9rem;
    }

    .spotify-embed {
        height: 232px;
    }

    .rss-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .citation {
        font-size: 0.9rem;
    }

    address {
        font-size: 0.9rem;
    }

    td {
        font-size: 0.9rem;
    }

    th {
        font-size: 0.9rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Mobile About Mugshot */
    .mugshot-about {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.1rem;
    }

    /* Responsive Tables */
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
    
    .concept-column {
        width: 35%;
    }
    
    .description-column {
        width: 65%;
    }
}

@media (min-width: 769px) {
    .mobile-header,
    .mobile-nav-overlay,
    .mobile-nav-menu {
        display: none !important;
    }
}