.blog-page .hero-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-page .hero-header h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    background: #FCFCFC;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0;
    margin: 0 auto;
}

.blog-page .hero-copy p {
    margin: 10px auto 20px auto;
    width: 75%;
}

.toggle-icons {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 4px 8px 4px 16px;
    border-radius: 20px;
}

.toggle-icons p {
    font-size: 14px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.toggle-icons a {
    color: rgba(255, 255, 255, 0.35);
    padding: 0 4px;
}

.blog-img {
    width: 100%;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-page .contact-card span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news {
    margin: 100px 0 0 0;
}

.news h3 {
    position: relative;
    font-weight: 500;
    color: var(--color-brand-bg);
    font-size: 16px;
}

.news h3:after {
    content: "";
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.125);
}

.news-items {
    margin-top: 20px;
}

.news-item {
    width: 100%;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

.news-item.no-border {
    border-bottom: none;
}

.news-item p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.news-item > div:nth-child(1) {
    flex: 2;
}

.news-item > div:nth-child(2) {
    flex: 1;
    display: flex;
}

.news-item > div:nth-child(2) > p {
    flex: 1;
    color: rgba(255, 255, 255, 0.35);
}




/* blog post article */
.blog-post-page .hero-header h1 {
    font-size: 36px;
    line-height: 1.3;
    text-align: left;
    margin: 30px 0 12px 0;
}

.blog-post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.blog-post-meta span {
    color: var(--color-brand-bg);
    margin-top: 6px;
}

.blog-post-featured {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 48px;
}

.blog-post-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    max-width: 720px;
    margin: 0 auto 80px auto;
    text-align: left;
}

.blog-post-body h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 40px 0 16px 0;
    color: #fff;
}

.blog-post-body h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 28px 0 12px 0;
    color: rgba(255, 255, 255, 0.85);
}

.blog-post-body p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-align: left;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 0 0 20px 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 16px;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--color-brand-bg);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.blog-post-cta {
    max-width: 720px;
    margin: 0 auto 60px auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-align: center;
}

.blog-post-cta p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.blog-post-back {
    max-width: 720px;
    text-align: left;
}

.blog-post-back a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: start;
    gap: 6px;
}

@media(max-width: 800px) {
    .blog-page .hero-copy p {
        width: 100%;
    }

    .blog-post-featured {
        height: 240px;
    }

    .blog-post-page .hero-header h1 {
        font-size: 28px;
    }

    .news-item {
        flex-direction: column;
        gap: 5px;
    }

    .news-item > div:nth-child(2) {
        flex-direction: column;
        gap: 20px;
    }

    .news-items {
        margin-top: 0px;
    }

    .news h3:after {
        display: none;
    }
}