/* Blog Main */
.blog-main {
    padding-top: var(--header-height);
    background-color: var(--blog-bg);
    color: var(--blog-text);
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--blog-bg) 0%, var(--blog-bg-alt) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--blog-border);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(242, 187, 19, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-hero__title {
    font-size: 3rem;
    color: var(--blog-text);
    margin-bottom: 1rem;
    font-family: var(--blog-title-font);
    font-weight: 700;
    line-height: 1.2;
}

.blog-hero__description {
    font-size: 1.1rem;
    color: var(--blog-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories Section */
.blog-categories {
    padding: 2rem 0;
    background-color: var(--blog-bg);
    border-bottom: 1px solid var(--blog-border);
}

.blog-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.blog-category__card {
    background: var(--blog-bg-alt);
    border-radius: var(--blog-radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--blog-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.blog-category__card:hover {
    transform: translateY(-2px);
    background: var(--blog-bg);
    border-color: var(--primary-color);
}

.blog-category__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-category__name {
    font-size: 1.25rem;
    color: var(--blog-text);
    margin-bottom: 0.5rem;
    font-family: var(--blog-title-font);
}

.blog-category__description {
    color: var(--blog-text-light);
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* Tema claro */
body.blog-theme--light .blog-category__card {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
}

body.blog-theme--light .blog-category__card:hover {
    background: var(--blog-light-bg-alt);
    border-color: var(--blog-primary);
}

body.blog-theme--light .blog-category__icon {
    color: var(--blog-primary);
}

body.blog-theme--light .blog-category__name {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-category__description {
    color: var(--blog-light-text-light);
}

@media (max-width: 768px) {
    .blog-categories__grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
    }

    .blog-categories__grid::-webkit-scrollbar {
        display: none;
    }

    .blog-category__card {
        min-width: 200px;
        flex-shrink: 0;
        min-height: auto;
    }

    .blog-category__icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .blog-category__name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .blog-category__description {
        margin-bottom: 1rem;
    }
}

/* Featured Posts */
.blog-featured {
    padding: 3rem 0;
    background-color: var(--blog-bg);
}

.blog-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.blog-post__card--featured {
    background: var(--blog-bg-alt);
    border-radius: var(--blog-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--blog-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post__card--featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--blog-shadow-lg);
}

.blog-post__card--featured .blog-post__image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.blog-post__card--featured .blog-post__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post__card--featured .blog-post__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post__card--featured .blog-post__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-post__card--featured .blog-post__category {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post__card--featured .blog-post__date {
    color: var(--blog-text-light);
}

.blog-post__card--featured .blog-post__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--blog-title-font);
}

.blog-post__card--featured .blog-post__title a {
    color: var(--blog-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post__card--featured .blog-post__title a:hover {
    color: var(--primary-color);
}

.blog-post__card--featured .blog-post__excerpt {
    color: var(--blog-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-post__card--featured .blog-post__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--blog-border);
}

/* Tema claro */
body.blog-theme--light .blog-post__card--featured {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
}

body.blog-theme--light .blog-post__card--featured:hover {
    border-color: var(--blog-primary);
}

body.blog-theme--light .blog-post__card--featured .blog-post__title a:hover {
    color: var(--blog-primary);
}

/* Blog Posts Grid */
.blog-posts {
    padding: 3rem 0;
    background-color: var(--blog-bg);
}

.blog-posts__header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.blog-section__title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.blog-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

/* Blog Post Card */
.blog-post__card {
    background: var(--blog-bg-alt);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--blog-shadow-md);
}

.blog-post__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post__image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.blog-post__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post__card:hover .blog-post__image img {
    transform: scale(1.05);
}

.blog-post__content {
    padding: 1.5rem;
}

.blog-post__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--blog-text-light);
}

.blog-post__category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-post__title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-post__title a {
    color: var(--blog-text);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post__card:hover .blog-post__title a {
    color: var(--primary-color);
}

.blog-post__excerpt {
    color: var(--blog-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-post__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post__author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post__author-info {
    display: flex;
    flex-direction: column;
}

.blog-post__author-name {
    font-weight: 500;
    color: var(--blog-text);
}

.blog-post__author-role {
    font-size: 0.875rem;
    color: var(--blog-text-light);
}

/* Newsletter Section */
.blog-newsletter {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color-light) 100%);
    text-align: center;
    border-top: 1px solid rgba(242, 187, 19, 0.1);
}

.blog-newsletter__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-newsletter__title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.blog-newsletter__description {
    color: var(--text-color-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-newsletter__form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.blog-newsletter__input {
    flex: 1;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(242, 187, 19, 0.1);
    background: var(--dark-color-light);
    color: var(--text-color);
    font-size: 1rem;
}

.blog-newsletter__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blog-newsletter__button {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-newsletter__button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-hero__title {
        font-size: 2.5rem;
    }

    .blog-featured__grid {
        grid-template-columns: 1fr;
    }

    .blog-newsletter__form {
        flex-direction: column;
    }

    .blog-post__card--featured {
        grid-column: span 1;
    }

    .blog-post__card--featured .blog-post__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .blog-hero__title {
        font-size: 2rem;
    }

    .blog-hero__description {
        font-size: 1rem;
    }

    .blog-section__title {
        font-size: 1.75rem;
    }

    .blog-posts__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .blog-post__content {
        padding: 1.25rem;
    }

    .blog-post__title {
        font-size: 1.1rem;
    }

    .blog-post__card--featured .blog-post__content {
        padding: 1.25rem;
    }

    .blog-post__card--featured .blog-post__excerpt {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .blog-hero__title {
        font-size: 1.75rem;
    }

    .blog-posts__grid {
        grid-template-columns: 1fr;
    }

    .blog-post__footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .blog-post__author {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Single Post */
.blog-single {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: var(--section-spacing);
}

body.blog-theme--light .blog-single {
    background-color: var(--blog-light-bg);
    color: var(--blog-light-text);
}

.blog-single__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Conteúdo Principal */
.blog-single__content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single__header {
    margin-bottom: 2rem;
}

.blog-single__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--blog-text-light);
}

body.blog-theme--light .blog-single__meta {
    color: var(--blog-light-text-light);
}

.blog-single__category {
    color: var(--primary-color);
    font-weight: 500;
}

body.blog-theme--light .blog-single__category {
    color: var(--blog-primary);
}

.blog-single__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__title {
    color: var(--blog-light-text);
}

.blog-single__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-single__author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.blog-single__author-info {
    display: flex;
    flex-direction: column;
}

.blog-single__author-name {
    font-weight: 500;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__author-name {
    color: var(--blog-light-text);
}

.blog-single__author-role {
    font-size: 0.875rem;
    color: var(--blog-text-light);
}

body.blog-theme--light .blog-single__author-role {
    color: var(--blog-light-text-light);
}

.blog-single__cover {
    margin-bottom: 2rem;
    border-radius: var(--blog-radius-lg);
    overflow: hidden;
}

.blog-single__cover img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single__body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--blog-text);
    margin-bottom: 2rem;
}

body.blog-theme--light .blog-single__body {
    color: var(--blog-light-text);
}

.blog-single__body p {
    margin-bottom: 1.5rem;
}

.blog-single__body h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__body h2 {
    color: var(--blog-light-text);
}

.blog-single__body h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__body h3 {
    color: var(--blog-light-text);
}

.blog-single__body ul,
.blog-single__body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-single__body li {
    margin-bottom: 0.5rem;
}

.blog-single__body a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-single__body a:hover {
    color: var(--primary-color-light);
}

.blog-single__body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--blog-text-light);
}

.blog-single__body code {
    background: var(--blog-bg-alt);
    padding: 0.2rem 0.4rem;
    border-radius: var(--blog-radius-sm);
    font-size: 0.9em;
}

.blog-single__body pre {
    background: var(--blog-bg-alt);
    padding: 1.5rem;
    border-radius: var(--blog-radius-md);
    margin: 2rem 0;
    overflow-x: auto;
}

.blog-single__body pre code {
    background: none;
    padding: 0;
    font-size: 0.9rem;
}

.blog-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.blog-single__tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--blog-bg-alt);
    border-radius: var(--blog-radius-md);
    color: var(--blog-text);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-single__tag:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.blog-single__share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--blog-border);
}

.blog-single__share-title {
    font-weight: 500;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__share-title {
    color: var(--blog-light-text);
}

.blog-single__share-buttons {
    display: flex;
    gap: 0.5rem;
}

.blog-single__share-button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-bg-alt);
    border-radius: 50%;
    color: var(--blog-text);
    transition: all 0.3s;
}

.blog-single__share-button:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Sidebar */
.blog-single__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

.blog-single__sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--blog-text);
}

body.blog-theme--light .blog-single__sidebar-title {
    color: var(--blog-light-text);
}

.blog-single__related-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-single__related-card {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.blog-single__related-card:hover {
    transform: translateX(0.5rem);
}

.blog-single__related-image {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--blog-radius-md);
}

.blog-single__related-content {
    flex: 1;
}

.blog-single__related-category {
    display: block;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-single__related-title {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--blog-text);
    margin-bottom: 0.5rem;
}

body.blog-theme--light .blog-single__related-title {
    color: var(--blog-light-text);
}

.blog-single__related-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--blog-text-light);
}

body.blog-theme--light .blog-single__related-meta {
    color: var(--blog-light-text-light);
}

.blog-single__newsletter {
    background: var(--blog-bg-alt);
    padding: 2rem;
    border-radius: var(--blog-radius-lg);
}

.blog-single__newsletter-description {
    color: var(--blog-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.blog-theme--light .blog-single__newsletter-description {
    color: var(--blog-light-text-light);
}

.blog-single__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-single__newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--blog-radius-md);
    border: 1px solid var(--blog-border);
    background: var(--blog-bg);
    color: var(--blog-text);
}

.blog-single__newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blog-single__newsletter-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--blog-radius-md);
    background: var(--primary-color);
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-single__newsletter-button:hover {
    background: var(--primary-color-light);
    transform: translateY(-2px);
}

/* Tema Claro */
body.blog-theme--light .blog-single__body {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-single__body h2,
body.blog-theme--light .blog-single__body h3 {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-single__body blockquote {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-single__body code {
    background: var(--blog-light-bg-alt);
}

body.blog-theme--light .blog-single__body pre {
    background: var(--blog-light-bg-alt);
}

body.blog-theme--light .blog-single__tag {
    background: var(--blog-light-bg-alt);
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-single__share-button {
    background: var(--blog-light-bg-alt);
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-single__newsletter {
    background: var(--blog-light-bg-alt);
}

body.blog-theme--light .blog-single__newsletter-input {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
    color: var(--blog-light-text);
}


/* Responsividade */
@media screen and (max-width: 992px) {
    .blog-single__grid {
        grid-template-columns: 1fr;
    }

    .blog-single__sidebar {
        position: static;
    }

    .blog-single__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .blog-single__meta {
        flex-wrap: wrap;
    }

    .blog-single__newsletter-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .blog-single {
        padding-top: var(--header-height);
    }

    .blog-single__title {
        font-size: 1.75rem;
    }

    .blog-single__related-card {
        flex-direction: column;
    }

    .blog-single__related-image {
        width: 100%;
        height: 200px;
    }
}

/* Cores dos cards no tema escuro */
.blog-category__card {
    background: var(--blog-bg-alt);
    border: 1px solid var(--blog-border);
    box-shadow: var(--blog-shadow-sm);
}

.blog-category__card:hover {
    background: var(--blog-bg);
    border-color: var(--primary-color);
    box-shadow: var(--blog-shadow-md);
    transform: translateY(-2px);
}

.blog-category__icon {
    color: var(--primary-color);
}

.blog-category__name {
    color: var(--blog-text);
}

.blog-category__description {
    color: var(--blog-text-light);
}

/* Tema claro */

body.blog-theme--light .blog-hero {
    background: linear-gradient(135deg, var(--blog-light-bg) 0%, var(--blog-light-bg-alt) 100%);
    border-bottom: 1px solid var(--blog-light-border);
}

body.blog-theme--light .blog-hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

body.blog-theme--light .blog-hero__title {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-hero__description {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-categories,
body.blog-theme--light .blog-featured,
body.blog-theme--light .blog-posts {
    background-color: var(--blog-light-bg);
    border-bottom: 1px solid var(--blog-light-border);
}

/* Cores dos cards no tema claro */
body.blog-theme--light .blog-category__card {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
    box-shadow: var(--blog-shadow-sm);
}

body.blog-theme--light .blog-category__card:hover {
    background: var(--blog-light-bg-alt);
    border-color: var(--blog-primary);
    box-shadow: var(--blog-shadow-md);
    transform: translateY(-2px);
}

body.blog-theme--light .blog-category__icon {
    color: var(--blog-primary);
}

body.blog-theme--light .blog-category__name {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-category__description {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .button--ghost {
    color: var(--blog-primary);
    border-color: var(--blog-primary);
}

body.blog-theme--light .button--ghost:hover {
    background: var(--blog-primary);
    color: white;
}

body.blog-theme--light .blog-featured__post,
body.blog-theme--light .blog-post__card {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
    box-shadow: var(--blog-shadow-sm);
}

body.blog-theme--light .blog-featured__post:hover,
body.blog-theme--light .blog-post__card:hover {
    box-shadow: var(--blog-shadow-md);
}

body.blog-theme--light .blog-featured__title a,
body.blog-theme--light .blog-post__title a,
body.blog-theme--light .blog-post__title a:hover {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-featured__excerpt,
body.blog-theme--light .blog-post__excerpt {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-post__meta {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-post__category {
    color: var(--blog-primary);
}

body.blog-theme--light .blog-post__author-name {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-post__author-role {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-newsletter {
    background: var(--blog-light-bg-alt);
    border-top: 1px solid var(--blog-light-border);
}

body.blog-theme--light .blog-newsletter__title {
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-newsletter__description {
    color: var(--blog-light-text-light);
}

body.blog-theme--light .blog-newsletter__input {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
    color: var(--blog-light-text);
}

body.blog-theme--light .blog-newsletter__input:focus {
    border-color: var(--blog-primary);
}

body.blog-theme--light .pagination__item {
    background: var(--blog-light-bg);
    border: 1px solid var(--blog-light-border);
    color: var(--blog-light-text);
}

body.blog-theme--light .pagination__item:hover {
    background: var(--blog-light-bg-alt);
    border-color: var(--blog-primary);
    color: var(--blog-primary);
}

body.blog-theme--light .pagination__item--active {
    background: var(--blog-primary);
    color: white;
    border-color: var(--blog-primary);
}