/* main.css */

:root {
    --main-color: rgb(123, 13, 35);
}

body {
    font-family: 'Georgia', serif;
}

a {
    font-family: 'Consolas', 'Courier New', monospace;
    color: #ffffff;
}

.post-content a {
    font-family: 'Georgia', serif;
    color: var(--main-color);
}

a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

h1 {
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 20px;
}

h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    margin: 20px 0 15px;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    margin: 15px 0 10px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--main-color);
    font-family: 'Consolas', 'Courier New', monospace;
    /*font-family: CustomSansSerif, 'Lucida Grande', Arial, sans-serif;*/
}

.author {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 15px;
    font-style: normal;
}

p {
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
}

.post-content {
    font-family: 'Georgia', serif;
    font-weight: normal;
    font-style: normal;
    margin-top: 1rem;
}

ul {}

ol,
ul,
menu {
    list-style-type: square;
    padding-left: 20px;
}

.post-content ul {
    list-style-type: square;
    padding-left: 20px;
    margin-bottom: 1rem;
}


ol {
    list-style-type: decimal;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

figure {
    margin: 2rem 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

figure img {
    /*max-width: 100%;*/
    /*max-height: 250px;*/
    width: auto;
    height: auto;
}

figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

highlight {
    margin-bottom: 2rem;
}

.language-plaintext {
    margin-bottom: 0.5em;
}

.tags-list {
    font-family: 'Consolas', 'Courier New', monospace;
    /* font-family: CustomSansSerif, 'Lucida Grande', Arial, sans-serif; */
    color: white;
    list-style: none !important;
    gap: 0.5rem;
}

/* Ensure tag lists render without bullets/indent */
.tags-list ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.post-list {
    font-family: 'Consolas', 'Courier New', monospace;
}

/* Reset bullets/indent on post list (class is on the UL) */
ul.post-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.post-date {
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 500;
}

.post-title {
    font-family: 'Georgia', serif;
    font-weight: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 8px 12px;
    text-align: left;
    border: 1px solid #535353;
}