.blog-intro {
    max-width: 850px;
    margin-bottom: 2.5rem;
}

.blog-kicker {
    display: inline-block;
    margin-bottom: .85rem;
    color: var(--tp-secondary, #e8751a);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.blog-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin: 0 0 2.25rem;
    padding: 0;
    list-style: none;
}

.blog-filter-list a {
    display: inline-block;
    padding: .55rem 1rem;
    border: 1px solid #d9e2ec;
    border-radius: 999px;
    color: #17324d;
    background: #fff;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-filter-list a:hover,
.blog-filter-list a:focus {
    color: #fff;
    border-color: var(--tp-primary, #073d76);
    background: var(--tp-primary, #073d76);
}

.blog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e3eaf1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(14, 50, 85, .07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(14, 50, 85, .16);
}

.blog-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.blog-card-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 210px);
    padding: 1.45rem;
}

.blog-category {
    margin-bottom: .65rem;
    color: var(--tp-secondary, #e8751a);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-card h2 {
    margin-bottom: .75rem;
    color: #12304e;
    font-size: 1.25rem;
    font-weight: 750;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.blog-card:hover h2 {
    color: var(--tp-primary, #073d76);
}

.blog-card:hover .blog-read-more {
    color: var(--tp-secondary, #e8751a);
}

.blog-card p {
    margin-bottom: 1.2rem;
    color: #617386;
    line-height: 1.65;
}

.blog-read-more {
    margin-top: auto;
    color: var(--tp-primary, #073d76);
    font-weight: 750;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--tp-secondary, #e8751a);
}

.blog-detail {
    margin-top: 5rem;
    padding: 3rem;
    border-radius: 16px;
    color: #eaf3fb;
    background: #073d76;
    scroll-margin-top: 9rem;
}

.blog-detail .blog-kicker {
    color: #ffbf80;
}

.blog-detail h2 {
    margin-bottom: 1.25rem;
    font-weight: 750;
}

.blog-detail h3 {
    margin: 1.7rem 0 .7rem;
    color: #fff;
    font-size: 1.25rem;
}

.blog-detail p,
.blog-detail li {
    color: #d7e6f3;
    line-height: 1.75;
}

.blog-detail ul {
    padding-left: 1.25rem;
}

.blog-detail .btn {
    margin-top: .75rem;
}

@media (max-width: 767.98px) {
    .blog-detail {
        padding: 1.75rem;
    }
}