
.content {
    display: flex;
    flex-direction: column;
    align-content: center;
}

.content p {
    max-width: 660px;
    word-break: break-word;
}

.content h1, .content h2, .content h3, .content h4 {
    max-width: 660px;
}

.post-container {
    padding-bottom: 20px;
    margin: 6rem 0;
}

.blog-list-item-permalink > p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0 0 4em 0;
}

a.blog-list-item-permalink {
    text-decoration: none;
}

.post-container h2 {
    margin: 0 0 0.5rem 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Source Serif Pro", "Georgia", serif;
    font-size: 1.7rem;
}

.post-container img {
    max-height: 300px;
    margin: 0;
}

.post h1 {
    margin: 0 0 0.5rem 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Source Serif Pro", "Georgia", serif;
    font-size: 1.7rem;
}

.post h2 {
    margin: 4.0rem 0 0.5rem 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Source Serif Pro", "Georgia", serif;
    font-size: 1.5rem;
}

h1 {
    margin: 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", "SF Pro", SFPro-Regular, ui-sans, sans-serif;
}

h2 {
    font-size: 1.2rem;
}

body {
    font-family: "Source Serif Pro", serif;
    font-size: 17px;
    line-height: 28px;
}

ul > li {
    padding-top: 16px;
}

img {
    color: var(--text-secondary);
    font-size: 12px;
    font-style: italic;
    margin: 10px 0;
}

.content figure {
    max-width: none;
    min-width: 100%;
    background-color: var(--accent-color-var2);
    border-radius: 8px;
    margin: 0;
    padding: 10px 0;
}

figcaption {
    font-size: 13px;
    padding: 10px 0 20px 0;
    font-family: sans-serif;
    max-width: 600px;
    margin: auto;
}

.content hr {
    margin-top: 2rem;
    color: #ddd;
    border-style: solid;
    border-width: 1px;
}

.phone-screenshots {
    display: flex;
    justify-content: space-evenly;
}

.phone-screenshots > img {
    max-height: 500px;
}

@media (max-width: 450px) {
    .phone-screenshots {
        display: block;
    }
    
    .phone-screenshots > img {
        margin: 10px auto;
        display: block;
    }
}

pre {
    font-size: 14px;
}

.post-category-container {
    margin: 0 0 20px 0;
}

.post-category {
    font-family: 'SF Mono', SFMono-Regular, ui-monospace, monospace;
    display: inline-block;
    padding: 2px 8px;
    background-color: var(--accent-color-var2);
    border-radius: 4px;
    font-weight: 600;
    margin: 0;
    font-size: 13px;
    border: none;
}

a.post-category,
a:visited.post-category {
    color: var(--accent-color);
}

a:hover.post-category,
a:visited:hover.post-category {
    color: var(--accent-color-var1);
    border: none;
}

.post-datetime {
    display: inline-block;
    color: var(--text-secondary);
    margin: 8px 0;
    font-size: 14px;
    font-family: "SF Mono", SFMono-Regular, ui-monospace, monospace;
}

.next-and-prev {
    display: grid;
    max-width: 600px;
    grid-template-areas:
        "previous next";
}

.a-next {
    grid-area: next;
    justify-self: end;
}

.a-prev {
    grid-area: previous;
    justify-self: start;
}

.data-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 12px 0px;
}

.data {
    font-family: 'SF Mono', SFMono-Regular, ui-monospace, monospace;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 14px;
    border-radius: 8px;
}

.data-beta-releases {
    background-color: #cae9ff !important;
    color: #004e89 !important;
}

.data-tracks {
    background-color: #e5e1ee !important;
    color: #724e91 !important;
}

.data-max-temp {
    background-color: #fcf6b1 !important;
    color: #333333 !important;
}

.data-workouts {
    background-color: #b7e4c7 !important;
    color: #333333 !important;
}

.data-active-min {
    background-color: #b5e48c !important;
    color: #333333 !important;
}