/* Shared nav/footer wordmark styling for standalone pages (mirrors index.html) */
.navbar-brand, .footer_logo_text {
    font-size: 24px;
    font-weight: 700;
    color: #293651;
    letter-spacing: 0.5px;
}
.navbar-brand:hover, .footer_logo_text:hover {
    color: #00A78E;
}
.header_navbar {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}
/* blog.css loads after style.css, so without this the equal-specificity
   .header_navbar rule above wins the cascade and permanently overrides
   .sticky's position: fixed, breaking the pinned-nav-on-scroll behavior
   on every page that includes blog.css (index.html, blog.html, etc). */
.header_navbar.sticky {
    position: fixed;
}
.header_navbar .navbar-nav .nav-item a {
    color: #293651;
}
.header_navbar .navbar-nav .nav-item a span,
.header_navbar .navbar-nav .nav-item a span::before,
.header_navbar .navbar-nav .nav-item a span::after {
    background-color: #293651;
}
.header_navbar .navbar-nav .nav-item.active > a,
.header_navbar .navbar-nav .nav-item:hover > a {
    color: #00A78E;
}

/* Blog listing cards */
.blog_card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(41, 54, 81, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog_card .blog_tag {
    display: inline-block;
    background: rgba(0, 167, 142, 0.1);
    color: #00A78E;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    width: fit-content;
}
.blog_card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
.blog_card h4 a {
    color: #293651;
}
.blog_card h4 a:hover {
    color: #00A78E;
}
.blog_card p.excerpt {
    color: #646F87;
    line-height: 1.7;
    flex-grow: 1;
}
.blog_meta {
    color: #8b93a7;
    font-size: 13px;
    margin-top: 15px;
}
.blog_card .read_more {
    margin-top: 15px;
    font-weight: 600;
    color: #00A78E;
    display: inline-block;
}

/* Blog post article */
.post_content {
    max-width: 780px;
    margin: 0 auto;
}
.post_tag {
    display: inline-block;
    background: rgba(0, 167, 142, 0.1);
    color: #00A78E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.post_title {
    font-size: 36px;
    font-weight: 700;
    color: #293651;
    margin-bottom: 15px;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .post_title {
        font-size: 28px;
    }
}
.post_meta {
    color: #8b93a7;
    font-size: 14px;
    margin-bottom: 40px;
}
.post_content p {
    color: #646F87;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 22px;
}
.post_content h2 {
    font-size: 24px;
    color: #293651;
    margin-top: 45px;
    margin-bottom: 18px;
}
.post_content blockquote {
    border-left: 4px solid #00A78E;
    padding: 10px 25px;
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    color: #293651;
}
.author_box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F9F9F9;
    border-radius: 12px;
    padding: 25px;
    margin-top: 50px;
}
.author_box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author_box h5 {
    margin-bottom: 5px;
    color: #293651;
}
.author_box p {
    color: #646F87;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}
.back_to_blog {
    display: inline-block;
    margin-top: 40px;
    font-weight: 600;
    color: #00A78E;
}
