/* Blog section — Concord Technologies */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #052b48;
    background: transparent;
    color: #052b48;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.blog-filter-btn:hover,
.blog-filter-btn.is-active {
    background-color: #052b48;
    color: #fff;
    border-color: #052b48;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(5, 43, 72, 0.12);
}
.blog-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1c1c1c;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}
.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}
.blog-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: rgba(5, 43, 72, 0.08);
    color: #052b48;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 3px;
}
.blog-card-title {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #232323;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: #052b48;
}
.blog-card-excerpt {
    color: #828282;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-card-date {
    color: #999;
    font-size: 12px;
    letter-spacing: 0.3px;
}
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}
.blog-featured-media {
    position: relative;
    min-height: 320px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1c1c1c;
}
.blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 36px;
}
.blog-post-hero {
    position: relative;
    min-height: 56vh;
    background: #1c1c1c;
}
.blog-post-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.25) 0%, rgba(28, 28, 28, 0.72) 100%);
}
.blog-post-hero-content {
    position: relative;
    z-index: 2;
    min-height: 56vh;
    display: flex;
    align-items: flex-end;
    padding: 60px 0 50px;
}
.blog-article {
    max-width: 760px;
    margin: 0 auto;
}
.blog-article h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #232323;
    font-size: 26px;
    line-height: 1.3;
    margin: 32px 0 12px;
}
.blog-article h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: #232323;
    font-size: 19px;
    line-height: 1.35;
    margin: 24px 0 10px;
}
.blog-article p,
.blog-article li {
    color: #595959;
    font-size: 16px;
    line-height: 1.7;
}
.blog-article p {
    margin: 0 0 16px;
}
.blog-article p > strong:first-child {
    color: #232323;
    font-weight: 700;
}
.blog-article ul,
.blog-article ol {
    padding-left: 22px;
    margin: 8px 0 18px;
}
.blog-article li {
    margin-bottom: 6px;
}
.blog-article-top {
    margin: 0 0 28px;
}
.blog-article-top img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.blog-cta-box {
    margin: 36px 0;
    padding: 28px 30px;
    background: #052b48;
    border-radius: 6px;
    color: #fff;
}
.blog-cta-box h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 22px;
}
.blog-cta-box p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 18px;
}
.blog-figure {
    margin: 28px 0;
}
.blog-figure img {
    width: 100%;
    border-radius: 6px;
    display: block;
}
.blog-figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    text-align: center;
}
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}
@media (max-width: 991px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured-media {
        min-height: 240px;
    }
    .blog-featured-body {
        padding: 28px 24px 32px;
    }
    .blog-post-hero,
    .blog-post-hero-content {
        min-height: 48vh;
    }
}
@media (max-width: 575px) {
    .blog-filter-btn {
        flex: 1 1 calc(50% - 10px);
        font-size: 11px;
        padding: 9px 12px;
    }
}
