:root {
    --primary: #1a73e8;
    --secondary: #a4926a;
    --black: #222;
}

* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    font-size: 18px;
}
body {
    background: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
}

a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2.5px;
    text-underline-offset: 5px;
}
    a:hover {
        color: #000;
    }

h1, h2, h3, h4, h5, h6 {
    /* font-family: "Fanwood Text", sans-serif; */
    font-weight: 500;
    line-height: 1.3;
    margin: 45px 0 30px 0;
}

h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin: 0.5rem 0 1.1rem 0;
}

hr {
    background: #e3d2af;
    border: 0;
    height: 1px;
    margin: 45px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
}
    th, td {
        padding: 10px 20px;
        text-align: left;
        vertical-align: top;
    }
    th {
    }
    td {
        background: #fff;
        border: 1px solid #ddd;
    }

code {
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.9rem;
}
    pre {
        border-radius: 10px;
        max-width: 92vw;
        padding: 15px;
        overflow: scroll;
        border: 1px solid #ede0a1;
    }
    pre code {
        display: block;
        max-height: 50vh;
    }
    code:not(pre code) {
        background: #fefbec;
        display: inline-block;
    }
sup a {
    text-decoration: none;
    padding: 0;
    text-decoration-thickness: 0;
    text-underline-offset: 0;
}

input {
    padding: 10px;
    font-size: 1rem;
    border-radius: 3px;
    border: 1px solid #aaa;
    width: 100%;
}
button {
    font-size: 1rem;
    border: 0;
    cursor: pointer;
}

ul.flat {
    list-style-type: none;
    padding: 0;
}

button, .button {
    background: var(--black);
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 30px;
    border: 0;
}
    button:hover,
    .button:hover {
        background: var(--primary);
        color: #fff;
    }

.main {
    margin-top: 45px;
    margin-bottom: 30px;
}

.dim-small {
    font-size: 0.875rem;
    color: #888;
}

.header {
    margin-bottom: 5vh;
    text-align: center;
}
    .header .nav a {
        display: inline-block;
        margin: 0 15px;
        text-decoration: none;
    }

    #nav-toggle {
        display: none;
    }
    .nav-toggle-label {
        display: none;
        cursor: pointer;
    }

.logo img {
    max-height: 72px;
    transition: transform 0.7s ease-in-out;
}
    .logo img:hover {
      transform: rotate(30deg); /* Full rotation on hover */
    }

.intro {
    margin: 5vh 0 60px 0;
    text-align: center;
}
    .intro .title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin: 0 0 20px 0;
    }
    .intro h2 {
        margin: 0 0 30px 0;
        font-size: 1.2rem;
        font-weight: normal;
        color: #888;
    }
    .intro p {
        color: #777;
    }
    .partner img {
        display: block;
        width: 75px;
        margin-top: 15px;
    }
    .definition ul {
        padding: 0 0 0 15px;
    }
    .intro .name span {
        color: var(--primary);
    }
    .intro code {
        padding: 0;
        background: none;
    }


.recipients table tbody tr td:first-child {
    width: 70%;
}
    .recipients table thead tr th:nth-child(3),
    .recipients table tbody tr td:nth-child(3) {
        text-align: right;
    }

.footer {
    border-top: 1px solid #e3d2af;
    padding-top: 30px;
    margin: 10vh 0 15px 0;
    color: var(--secondary);
    font-size: 0.875rem;
}
    .footer a {
        text-decoration: none;
    }

.posts-list {
    list-style-type: none;
    padding: 0;
}
    .posts-list .meta {
        border-top: 1px solid #e3d2af;
        margin-top: 40px;
        padding-top: 30px;
        font-size: 0.875rem;
    }
    .posts-list .date {
        text-align: right;
        color: #888;
    }
    .posts-list li {
        margin-bottom: 90px;
    }

    .posts-list .title {
        margin: 0 0 20px 0;
    }

.post .title {
    margin: 0 0 15px 0;
}
    .post .date {
        margin-bottom: 30px;
    }
    .post .title a {
        text-decoration: none;
    }
    .post .date {
        color: #888;
    }

.avatar {
    font-size: 0.875rem;
    display: flex;
}
    .avatar img {
        border-radius: 100%;
        max-width: 52px;
    }
    .avatar div:first-child {
        flex-basis: 75px;
        flex-grow: 0;
    }
    .avatar div:last-child {
        flex-grow: 1;
    }
    .avatar .title {
        color: #888;
        display: block;
    }
    .avatar .links {
        margin-top: 10px;
    }
    .avatar .links img {
        opacity: 0.4;
        max-height: 20px;
        margin-right: 5px;
    }

    .main-post .avatar {
        margin-top: 85px;
        position: sticky;
        top: 30px;
    }


@media (max-width: 800px) {
    .main {
        margin: 15px 0;
    }
    .header .nav a {
        margin: 0 0 10px 0;
        display: block;
    }
   .nav-toggle-label {
        display: block;
        padding: 0;
        position: relative;
        font-size: 1.3rem;
    }
    .header .nav .items {
        display: none;
        position: absolute;
        background: rgba(249, 249, 249, 0.95);
        left: 0;
        right: 0;
        padding: 10px 0 0 0;
        z-index: 100;
        top: 60px;
        text-align: center;
    }
    #nav-toggle:checked ~ .items {
        display: block !important;
    }

    .header {
        margin-bottom: 45px;
    }
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    .main-post .avatar {
        margin: 0;
    }
}