.posts-page {
    width: min(980px, calc(100% - 34px));
    margin: 0 auto;
    padding: 36px 0 68px;
}

.posts-header {
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 24px;
    margin-bottom: 18px;
}

.posts-brand img {
    display: block;
    width: 104px;
    height: auto;
}

.posts-header h1 {
    color: black;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.posts-header h1 a {
    color: black;
}

.posts-header h1 a:hover {
    color: #01579b;
    text-decoration: none;
}

.posts-list {
    display: block;
}

.post-list-item {
    color: black;
    display: grid;
    gap: 9px;
    border-bottom: 1px solid #e3e3e3;
    padding: 28px 0 30px;
}

.post-list-item h2 {
    font-size: 36px;
    font-weight: 200;
    line-height: 1.16;
    margin: 0;
}

.post-list-item h2 a {
    color: black;
    transition: color 120ms ease;
}

.post-list-item h2 a:hover {
    color: #01579b;
    text-decoration: none;
}

.post-list-meta,
.post-meta {
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 12px;
    font-size: 10.5pt;
}

.post-list-meta > span:not(:last-child)::after,
.post-meta > span:not(:last-child)::after {
    color: #bbb;
    content: "/";
    margin-left: 12px;
}

.post-snapshot-link {
    color: #01579b;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 5px;
    overflow-wrap: anywhere;
}

.post-snapshot-link:hover {
    color: #014f8c;
    text-decoration: none;
}

.post-at {
    color: #777;
}

.post-snapshot-link i {
    font-size: 16px;
    line-height: 1;
}

.posts-empty {
    color: #555;
    font-size: 13pt;
}

.post-article {
    width: 100%;
}

.post-snapshot {
    aspect-ratio: 16 / 10;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-bottom: 18px;
}

.post-snapshot iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.post-meta {
    margin: 0 auto 24px;
    width: min(760px, 100%);
}

.post-body {
    width: min(760px, 100%);
    margin: 0 auto;
}

.post-body h1 {
    color: black;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px;
}

.post-body h2 {
    color: black;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin: 34px 0 12px;
}

.post-body h3 {
    color: black;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
    margin: 28px 0 10px;
}

.post-body p {
    color: #222;
    font-size: 13pt;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 0 18px;
}

.post-record-meta {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    width: min(760px, 100%);
    margin: 0 auto 28px;
    padding: 17px 0 3px;
}

.post-record-meta p {
    color: #333;
    font-size: 11.5pt;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 12px;
}

.post-record-meta strong {
    color: black;
    font-weight: 600;
}

@media (max-width: 600px) {
    .posts-page {
        width: min(100% - 24px, 940px);
        padding-top: 26px;
    }

    .posts-header {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .posts-brand img {
        width: 76px;
    }

    .posts-header h1 {
        font-size: 42px;
    }

    .post-list-item {
        padding: 18px 0 20px;
    }

    .post-list-item h2 {
        font-size: 27px;
        font-weight: 250;
    }

    .post-body h1 {
        font-size: 29px;
    }

    .post-body p {
        font-size: 12pt;
    }
}
