@charset "UTF-8";

* {
    box-sizing: border-box;
}

html {
    font-size: 15px;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Font Setup - Inter Variable Font */
:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1, 'dlig' 1, 'ss01' 1, 'ss03' 1, 'cv10' 1;
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: InterVariable, sans-serif;
    }
}

body {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #000;
    /* background: #DCDCDC; */
    background: rgba(220, 220, 220, 0.8);
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5em;
    color: inherit;
}

h2 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin: 0 0 1.2rem;
}

a {
    text-decoration: none;
    color: #0000CD;
    outline: 0;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #4682B4;
}

a:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    padding-bottom: 0rem;
    background: #fff;
    border: 1px solid #000;
    box-shadow: 2px 2px 0px rgba(128, 128, 128, 0.7);
}

.main-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.main-content .container {
    width: 100%;
    max-width: 70%;
    margin-top: 0;
    min-width: 40em;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    border-bottom: none;
}

.nav-section {
    display: flex;
    align-items: center;
}

.nav-breadcrumb {
    font-weight: 400;
}

.about-section {
    margin-bottom: 2rem;
}

.content-section {
    margin-bottom: 2rem;
}

.section-title {
    display: inline-block;
    margin-right: 0.1em;
}

.archive-link {
    font-weight: 400;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.info-card {
    margin-bottom: 1rem;
}

.contact-table {
    width: 70%;
    border-collapse: collapse;
    border: 1px solid #000;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 2px 2px 0px rgba(128, 128, 128, 0.8);
}

.contact-table th {
    background: #DCDCDC;
    color: #000;
    border: 1px solid #C0C0C0;
    padding: 0.3rem 0.6rem;
    text-align: left;
    font-weight: 600;
}

.contact-table td {
    border: 1px solid #C0C0C0;
    padding: 0.3rem 0.6rem;
    background: #fff;
}

/*
.contact-table a {
    font-family: var(--font-mono);
}
*/

.info-table,
.content-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 2px 2px 0px rgba(128, 128, 128, 0.8);
}

.info-table th,
.content-table th {
    background: #DCDCDC;
    color: #000;
    border: 1px solid #C0C0C0;
    padding: 0.3rem 0.6rem;
    text-align: left;
    font-weight: 600;
}

.info-table td,
.content-table td {
    border: 1px solid #C0C0C0;
    padding: 0.3rem 0.6rem;
    background: #fff;
}

.content-table tbody tr:hover {
    background-color: #C0C0C0;
    transition: background-color 0.2s ease;
}

.date-col {
    width: 8em;
}

.site-footer {
    font-size: 10px;
    margin-top: 3rem;
    color: #D3D3D3;
    text-align: center;
    margin-bottom: 0.2rem;
}

.inline-block {
    display: inline-block;
    margin-right: 0.5em;
}

.site-index {
    margin-left: 0;
}

.dotted-separator {
    border: none;
    height: 1px;
    border-top: 1px dotted #696969;
    margin: 0.1rem 0 1rem 0;
}

.line-separator {
    border: none;
    height: 1px;
    border-top: 1px solid #696969;
    margin: 0.1rem 0 1rem 0;
}


@media screen and (max-width: 30em) {
    body {
        font-size: 13px;
        background: #fff;
    }

    .container {
        margin: 0;
        padding: 1rem;
        border: none;
        box-shadow: none;
    }

    .site-footer {
        border: none;
        box-shadow: none;
        margin: 0;
        margin-top: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .date-col {
        width: 8em;
    }

    .action-col {
        display: none;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-content {
        min-height: auto;
    }

    .main-content .container {
        max-width: 100%;
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .date-col {
        width: 10em;
    }

    .container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .site-footer {
        margin: 1rem;
        margin-top: 2rem;
    }
}

pre {
    background: #f8f8f8;
    border: 1px solid #000;
    border-radius: 0;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
    box-shadow: 2px 2px 0px rgba(128, 128, 128, 0.8);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.4;
}

code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 0;
    border: 1px solid #ddd;
}

pre code {
    background: transparent;
    padding: 0;
    border: none;
    font-size: inherit;
    color: inherit;
}

@media screen and (min-width: 60em) {
    .main-content {
        padding: 1rem;
    }
}
