/* =========================
   Blog Table
========================= */
#blogSection {
    max-width: 900px;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    font-family: var(--mono);
}

.blog-table th {
    border: 1px solid var(--line);
    padding: 8px;
    color: var(--text-faint);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-table td {
    border-bottom: 1px solid var(--line-soft);
    padding: 0;
    vertical-align: middle;
    color: var(--text-dim);
}

.blog-table tr:hover td {
    background: var(--bg-row-hover);
}

.blog-table td:first-child {
    border-right: 1px solid var(--line-soft);
}

.blog-table .blog-links {
    text-align: center;
}

.blog-table .blog-links p {
    margin: 0;
    padding: 8px;
}

.blog-table .blog-links hr {
    border: none;
    border-top: 1px solid var(--line-soft);
    margin: 0;
    width: 100%;
}

.blog-table .blog-links a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500;
}

.blog-table .blog-links a:hover {
    text-decoration: underline;
}

.blog-table .blog-summary,
.blog-table .blog-tags {
    padding: 8px;
}

.blog-table .blog-tags {
    font-style: italic;
    color: var(--text-faint);
}
