
:where(.ac-native-content) .archive-header {
    width: min(100% - 2rem, var(--ac-container-width));
    margin-inline: auto;
}

:where(.ac-native-content) .entry-content,
:where(.ac-native-content) .entry-summary,
:where(.ac-native-content) .comments-area,
:where(.ac-native-content) .page-header,
:where(.ac-native-content) .not-found {
    width: min(100%, var(--ac-content-width));
    margin-inline: auto;
}

:where(.ac-native-content) .post-thumbnail {
    margin-block-end: var(--ac-space-md);
}

:where(.ac-native-content) .entry-header,
:where(.ac-native-content) .entry-footer {
    width: min(100%, var(--ac-content-width));
    margin-inline: auto;
}

:where(.ac-native-content) .posts-navigation,
:where(.ac-native-content) .post-navigation,
:where(.ac-native-content) .pagination {
    width: min(100%, var(--ac-content-width));
    margin: var(--ac-space-xl) auto 0;
}

:where(.ac-native-content) .widget-area {
    width: min(100%, var(--ac-content-width));
    margin: var(--ac-space-xl) auto 0;
}

:where(.ac-native-content) .archive-header {
    padding-block: var(--ac-space-xl) var(--ac-space-lg);
    text-align: start;
}

:where(.ac-native-content) .archive-title,
:where(.ac-native-content) .page-title,
:where(.ac-native-content) .entry-title {
    margin-block: 0;
    overflow-wrap: anywhere;
}

:where(.ac-native-content) .archive-description {
    max-width: var(--ac-content-width);
    margin-block-start: var(--ac-space-sm);
    color: var(--ac-color-muted);
}

:where(.ac-native-content) .archive-description > :first-child,
:where(.ac-native-content) .page-content > :first-child,
:where(.ac-native-content) .entry-content > :first-child,
:where(.ac-native-content) .entry-summary > :first-child {
    margin-block-start: 0;
}

:where(.ac-native-content) .archive-description > :last-child,
:where(.ac-native-content) .page-content > :last-child,
:where(.ac-native-content) .entry-content > :last-child,
:where(.ac-native-content) .entry-summary > :last-child {
    margin-block-end: 0;
}

:where(.ac-native-content) .archive-search-form {
    max-width: var(--ac-content-width);
    margin-block-start: var(--ac-space-md);
}

:where(.ac-native-content) .blog-layout {
    display: grid;
    width: min(100% - 2rem, var(--ac-container-width));
    margin-inline: auto;
    gap: var(--ac-space-xl);
    align-items: start;
}

:where(.ac-native-content) .blog-layout__main {
    min-width: 0;
}

:where(.ac-native-content) .blog-layout--with-sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
}

:where(.ac-native-content) .posts-grid,
:where(.ac-native-content) .related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ac-space-lg);
}

:where(.ac-native-content) .blog-layout--with-sidebar .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

:where(.ac-native-content) .posts-grid.posts-grid--list,
:where(.ac-native-content) .blog-layout--with-sidebar .posts-grid.posts-grid--list {
    grid-template-columns: minmax(0, 1fr);
}

:where(.ac-native-content) .posts-grid--list .post-card {
    display: grid;
    grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
}

:where(.ac-native-content) .posts-grid--list .post-card__media {
    height: 100%;
    aspect-ratio: auto;
}


:where(.ac-native-content) .post-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-md);
    background: var(--ac-color-background);
}

:where(.ac-native-content) .post-card__media {
    overflow: hidden;
    background: var(--ac-color-surface);
    aspect-ratio: 3 / 2;
}

:where(.ac-native-content) .post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:where(.ac-native-content) .post-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: var(--ac-space-md);
}

:where(.ac-native-content) .post-card__title {
    margin-block: var(--ac-space-xs) 0;
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    line-height: 1.25;
}

:where(.ac-native-content) .post-card__excerpt {
    width: 100%;
    margin-block: var(--ac-space-sm) var(--ac-space-md);
    color: var(--ac-color-muted);
}

:where(.ac-native-content) .post-card__link {
    align-self: flex-start;
    margin-block-start: auto;
    font-weight: 700;
}

:where(.ac-native-content) .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-space-2xs) var(--ac-space-sm);
    color: var(--ac-color-muted);
    font-size: 0.875rem;
}

:where(.ac-native-content) .entry-meta a {
    color: var(--ac-color-text);
}

:where(.ac-native-content) .meta-label {
    font-weight: 600;
}

:where(.ac-native-content) .single-post__header {
    margin-block-end: var(--ac-space-lg);
}

:where(.ac-native-content) .single-post__thumbnail {
    width: min(100%, var(--ac-container-width));
    margin-inline: auto;
    margin-block-end: var(--ac-space-xl);
}

:where(.ac-native-content) .single-post__thumbnail img {
    width: 100%;
    border-radius: var(--ac-radius-md);
}

:where(.ac-native-content) .entry-content {
    overflow-wrap: anywhere;
}

:where(.ac-native-content) .entry-content > * + * {
    margin-block-start: var(--ac-space-md);
}

:where(.ac-native-content) .entry-content h2 {
    margin-block-start: var(--ac-space-xl);
}

:where(.ac-native-content) .entry-content h3 {
    margin-block-start: var(--ac-space-lg);
}

:where(.ac-native-content) .entry-content ul,
:where(.ac-native-content) .entry-content ol {
    padding-inline-start: 1.5em;
}

:where(.ac-native-content) .entry-content li + li {
    margin-block-start: var(--ac-space-2xs);
}

:where(.ac-native-content) .entry-content blockquote {
    margin-inline: 0;
    padding-block: var(--ac-space-xs);
    padding-inline: var(--ac-space-md);
    border-inline-start: 0.25rem solid var(--ac-color-border);
    color: var(--ac-color-muted);
    font-size: 1.125rem;
}

:where(.ac-native-content) .entry-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

:where(.ac-native-content) .entry-content th,
:where(.ac-native-content) .entry-content td {
    padding: var(--ac-space-xs);
    border: 1px solid var(--ac-color-border);
    overflow-wrap: anywhere;
    text-align: start;
    vertical-align: top;
}

:where(.ac-native-content) .entry-content th {
    background: var(--ac-color-surface);
}

:where(.ac-native-content) .entry-content pre {
    max-width: 100%;
    padding: var(--ac-space-sm);
    overflow-x: auto;
    background: var(--ac-color-surface);
}

:where(.ac-native-content) .entry-content code,
:where(.ac-native-content) .entry-content pre {
    overflow-wrap: normal;
}

:where(.ac-native-content) .entry-content figcaption,
:where(.ac-native-content) .wp-caption-text {
    margin-block-start: var(--ac-space-2xs);
    color: var(--ac-color-muted);
    font-size: 0.875rem;
}

:where(.ac-native-content) .page-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-space-2xs);
    align-items: center;
    margin-block-start: var(--ac-space-lg);
}

:where(.ac-native-content) .page-links > .page-number,
:where(.ac-native-content) .page-links > a {
    display: inline-flex;
    min-width: var(--ac-touch-target);
    min-height: var(--ac-touch-target);
    align-items: center;
    justify-content: center;
    padding-inline: var(--ac-space-xs);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-sm);
}

:where(.ac-native-content) .page-links > a > .page-number {
    display: inline;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

:where(.ac-native-content) .navigation.pagination,
:where(.ac-native-content) .post-navigation,
:where(.ac-native-content) .comments-navigation {
    width: min(100%, var(--ac-content-width));
    margin-inline: auto;
    margin-block-start: var(--ac-space-xl);
}

:where(.ac-native-content) .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-space-xs);
    justify-content: space-between;
}

:where(.ac-native-content) .pagination .nav-links {
    justify-content: center;
}

:where(.ac-native-content) .page-numbers,
:where(.ac-native-content) .comments-navigation a {
    display: inline-flex;
    min-width: var(--ac-touch-target);
    min-height: var(--ac-touch-target);
    align-items: center;
    justify-content: center;
    padding-inline: var(--ac-space-xs);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-sm);
}

:where(.ac-native-content) .page-numbers.current {
    border-color: var(--ac-color-text);
    background: var(--ac-color-text);
    color: var(--ac-color-background);
}

:where(.ac-native-content) .post-navigation .nav-links > * {
    flex: 1 1 16rem;
}

:where(.ac-native-content) .post-navigation a {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: var(--ac-space-2xs);
    padding: var(--ac-space-sm);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-md);
    text-decoration: none;
}

:where(.ac-native-content) .nav-subtitle {
    color: var(--ac-color-muted);
    font-size: 0.875rem;
}

:where(.ac-native-content) .nav-title {
    font-weight: 700;
}

:where(.ac-native-content) .author-box,
:where(.ac-native-content) .related-posts,
:where(.ac-native-content) .comments-area {
    width: min(100%, var(--ac-content-width));
    margin-inline: auto;
    margin-block-start: var(--ac-space-xl);
}

:where(.ac-native-content) .author-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--ac-space-md);
    padding: var(--ac-space-md);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-md);
    background: var(--ac-color-surface);
}

:where(.ac-native-content) .author-box__avatar img {
    border-radius: 50%;
}

:where(.ac-native-content) .author-box__title,
:where(.ac-native-content) .related-posts__title,
:where(.ac-native-content) .comments-title,
:where(.ac-native-content) .comment-reply-title {
    margin-block-start: 0;
}

:where(.ac-native-content) .related-posts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

:where(.ac-native-content) .comment-list,
:where(.ac-native-content) .comment-list .children {
    list-style: none;
    padding-inline-start: 0;
}

:where(.ac-native-content) .comment-list .children {
    margin-block-start: var(--ac-space-md);
    padding-inline-start: var(--ac-space-md);
    border-inline-start: 1px solid var(--ac-color-border);
}

:where(.ac-native-content) .comment-body {
    padding-block: var(--ac-space-md);
    border-block-start: 1px solid var(--ac-color-border);
}

:where(.ac-native-content) .comment-meta {
    margin-block-end: var(--ac-space-sm);
    color: var(--ac-color-muted);
    font-size: 0.875rem;
}

:where(.ac-native-content) .comment-author {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-space-xs);
    align-items: center;
    color: var(--ac-color-text);
    font-size: 1rem;
}

:where(.ac-native-content) .comment-author .avatar {
    border-radius: 50%;
}

:where(.ac-native-content) .comment-content {
    overflow-wrap: anywhere;
}

:where(.ac-native-content) .comment-reply-link {
    display: inline-flex;
    min-height: var(--ac-touch-target);
    align-items: center;
}

:where(.ac-native-content) .comment-form > p {
    margin-block: var(--ac-space-sm);
}

:where(.ac-native-content) .comment-form label,
:where(.ac-native-content) .search-form__label {
    display: block;
    margin-block-end: var(--ac-space-2xs);
    font-weight: 700;
}

:where(.ac-native-content) .comment-form input:not([type="checkbox"]),
:where(.ac-native-content) .comment-form textarea,
:where(.ac-native-content) .search-field {
    width: 100%;
    min-height: var(--ac-touch-target);
    padding: var(--ac-space-xs);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-sm);
    background: var(--ac-color-background);
    color: var(--ac-color-text);
}

:where(.ac-native-content) .comment-form textarea {
    min-height: 10rem;
    resize: vertical;
}

:where(.ac-native-content) .comment-submit,
:where(.ac-native-content) .search-submit {
    min-height: var(--ac-touch-target);
    padding-block: var(--ac-space-xs);
    padding-inline: var(--ac-space-sm);
    border: 1px solid var(--ac-color-text);
    border-radius: var(--ac-radius-sm);
    background: var(--ac-color-text);
    color: var(--ac-color-background);
    font-weight: 700;
}

:where(.ac-native-content) .search-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--ac-space-xs);
}

:where(.ac-native-content) .no-results,
:where(.ac-native-content) .error-404 {
    padding-block: var(--ac-space-xl);
}

:where(.ac-native-content) .error-404__links ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-space-md);
    padding-inline-start: 0;
    list-style: none;
}

:where(.ac-native-content) .widget-area {
    width: 100%;
    min-width: 0;
    margin: 0;
}

:where(.ac-native-content) .widget {
    padding: var(--ac-space-md);
    border: 1px solid var(--ac-color-border);
    border-radius: var(--ac-radius-md);
}

:where(.ac-native-content) .widget + .widget {
    margin-block-start: var(--ac-space-md);
}

:where(.ac-native-content) .widget-title {
    margin-block-start: 0;
    font-size: 1.25rem;
}

:where(.ac-native-content) .widget ul {
    padding-inline-start: 1.25rem;
}

@media (max-width: 64rem) {
    :where(.ac-native-content) .posts-grid,
:where(.ac-native-content) .blog-layout--with-sidebar .posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    :where(.ac-native-content) .related-posts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    :where(.ac-native-content) .posts-grid.posts-grid--list,
:where(.ac-native-content) .blog-layout--with-sidebar .posts-grid.posts-grid--list {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 52rem) {
    :where(.ac-native-content) .blog-layout--with-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.ac-native-content) .widget-area {
        width: min(100%, var(--ac-content-width));
        margin-inline: auto;
    }
}

@media (max-width: 40rem) {
    :where(.ac-native-content) .posts-grid--list .post-card {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.ac-native-content) .posts-grid,
:where(.ac-native-content) .blog-layout--with-sidebar .posts-grid,
:where(.ac-native-content) .related-posts__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.ac-native-content) .search-form__controls {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.ac-native-content) .search-submit {
        width: 100%;
    }

    :where(.ac-native-content) .author-box {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.ac-native-content) .comment-list .children {
        padding-inline-start: var(--ac-space-sm);
    }
}

@media (prefers-reduced-motion: reduce) {
    :where(.ac-native-content) .post-card,
:where(.ac-native-content) .post-navigation a,
:where(.ac-native-content) .page-numbers,
:where(.ac-native-content) .comment-submit,
:where(.ac-native-content) .search-submit {
        transition: none;
    }
}
