/* alekhinechess.com - stylesheet */
body {
    background-color: #1b1b1b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='20' height='20' fill='%23222222'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23222222'/%3E%3Crect x='20' width='20' height='20' fill='%231a1a1a'/%3E%3Crect y='20' width='20' height='20' fill='%231a1a1a'/%3E%3C/svg%3E");
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #222222;
}

#wrapper {
    width: 780px;
    margin: 0 auto;
    background-color: #ffffff;
    border-left: 2px solid #5a0000;
    border-right: 2px solid #5a0000;
}

/* HEADER */
#header {
    background-color: #1a0a0a;
    padding: 0;
    border-bottom: 3px solid #8b0000;
}

#header-inner {
    padding: 14px 20px 10px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

#site-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: bold;
    color: #e8d5a0;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px #000;
}

#site-subtitle {
    font-size: 12px;
    color: #a08060;
    font-style: italic;
    padding-left: 4px;
    letter-spacing: 0.5px;
}

#header-piece {
    font-size: 38px;
    color: #c8a860;
    text-shadow: 1px 1px 4px #000;
    line-height: 1;
}

/* NAVIGATION */
#nav {
    background-color: #3a0000;
    border-bottom: 2px solid #6b0000;
    padding: 0;
}

#nav ul {
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

#nav ul li {
    margin: 0;
    padding: 0;
}

#nav ul li a {
    display: block;
    padding: 7px 12px;
    color: #e0c080;
    text-decoration: none;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-right: 1px solid #5a1010;
}

#nav ul li a:hover {
    background-color: #5a0000;
    color: #ffffff;
}

#nav ul li a.active {
    background-color: #5a0000;
    color: #ffd080;
}

/* CONTENT AREA */
#content-wrap {
    display: flex;
    gap: 0;
}

#main {
    flex: 1;
    padding: 20px 24px 24px 24px;
    min-width: 0;
    border-right: 1px solid #cccccc;
}

/* SIDEBAR */
#sidebar {
    width: 190px;
    min-width: 190px;
    background-color: #f5f0e8;
    padding: 16px 12px;
    border-left: 1px solid #cccccc;
    font-size: 13px;
}

#sidebar h3 {
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #ffffff;
    background-color: #3a0000;
    margin: 0 -12px 8px -12px;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#sidebar ul {
    margin: 0 0 16px 0;
    padding: 0 0 0 14px;
}

#sidebar ul li {
    margin-bottom: 5px;
    line-height: 1.4;
}

#sidebar ul li a {
    color: #5a0000;
    text-decoration: none;
    font-size: 12px;
}

#sidebar ul li a:hover {
    text-decoration: underline;
    color: #8b0000;
}

.sidebar-piece-box {
    text-align: center;
    font-size: 48px;
    color: #3a0000;
    padding: 8px 0;
    border: 1px solid #ccbbaa;
    background-color: #ede8dc;
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px #aaa;
}

.sidebar-quote {
    font-style: italic;
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    border-left: 3px solid #8b0000;
    padding-left: 8px;
    margin-bottom: 16px;
}

/* TYPOGRAPHY */
h1 {
    font-size: 22px;
    color: #5a0000;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 6px;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
}

h2 {
    font-size: 17px;
    color: #3a0000;
    border-bottom: 1px solid #ccbbaa;
    padding-bottom: 4px;
    margin-top: 22px;
    margin-bottom: 10px;
}

h3 {
    font-size: 14px;
    color: #5a2000;
    margin-top: 16px;
    margin-bottom: 6px;
}

p {
    line-height: 1.65;
    margin-bottom: 12px;
    font-size: 14px;
    color: #222222;
}

a {
    color: #5a0000;
}

a:hover {
    color: #cc0000;
}

a:visited {
    color: #7a3060;
}

/* ARTICLE META */
.article-meta {
    font-size: 12px;
    color: #888888;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 14px;
    border-bottom: 1px dotted #cccccc;
    padding-bottom: 8px;
}

/* CHESS BOARD / NOTATION */
.notation-block {
    background-color: #f5f0e0;
    border: 1px solid #c8b888;
    border-left: 4px solid #8b0000;
    padding: 10px 14px;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    margin: 14px 0;
    color: #333;
}

.notation-block .move-num {
    font-weight: bold;
    color: #5a0000;
}

/* PULL QUOTE */
blockquote {
    border-left: 4px solid #8b0000;
    margin: 16px 0 16px 0;
    padding: 8px 16px;
    background-color: #faf6ee;
    font-style: italic;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

/* INFO TABLE */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 13px;
}

.info-table th {
    background-color: #3a0000;
    color: #e0c080;
    padding: 6px 10px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

.info-table td {
    padding: 5px 10px;
    border-bottom: 1px solid #dddddd;
    vertical-align: top;
}

.info-table tr:nth-child(even) td {
    background-color: #f8f4ec;
}

/* HOMEPAGE ARTICLE LIST */
.article-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-list li {
    border-bottom: 1px dotted #cccccc;
    padding: 10px 0;
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list li a {
    font-size: 15px;
    font-weight: bold;
    color: #5a0000;
    text-decoration: none;
}

.article-list li a:hover {
    text-decoration: underline;
}

.article-list .blurb {
    font-size: 13px;
    color: #555;
    margin-top: 3px;
}

/* SECTION DIVIDER */
.section-divider {
    text-align: center;
    color: #c8a060;
    font-size: 18px;
    margin: 20px 0;
    letter-spacing: 8px;
}

/* FEATURED BOX */
.featured-box {
    border: 2px solid #8b0000;
    background-color: #fdf8f0;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.featured-box h2 {
    margin-top: 0;
    font-size: 15px;
    border-bottom: 1px solid #c8a060;
}

/* FOOTER */
#footer {
    background-color: #1a0a0a;
    border-top: 3px solid #8b0000;
    padding: 12px 20px;
    text-align: center;
    font-size: 12px;
    color: #807060;
    font-family: Arial, Helvetica, sans-serif;
}

#footer a {
    color: #a08050;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 12px;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 14px;
    padding: 4px 0;
    border-bottom: 1px solid #eeeeee;
}

.breadcrumb a {
    color: #8b0000;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* OPENING TABLE */
.opening-moves {
    background-color: #1a0a0a;
    color: #e8d090;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    padding: 10px 14px;
    margin: 12px 0;
    border: 1px solid #5a3000;
}
