.blog-post {
    background: #f4f8fc;
    padding: 0 0 72px;
}

.blog-archive {
    background: #f4f8fc;
    padding: 0 0 72px;
}

.blog-archive__inner {
    max-width: 1180px;
    padding-top: 32px;
}

.blog-archive__breadcrumb,
.blog-post__breadcrumb {
    font-size: 14px;
    color: #5b7082;
    margin-bottom: 24px;
}

.blog-archive__breadcrumb a,
.blog-post__breadcrumb a {
    color: #0f3952;
    text-decoration: none;
}

.blog-archive__breadcrumb a:hover,
.blog-post__breadcrumb a:hover {
    text-decoration: underline;
}

.blog-archive__header {
    max-width: 760px;
    margin-bottom: 28px;
}

.blog-archive__header h1 {
    margin: 0 0 12px;
    color: #0f3952;
    font-family: Questrial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
}

.blog-archive__header p {
    margin: 0;
    color: #5b7082;
    font-size: 1.05rem;
    line-height: 1.6;
}

.blog-archive__toolbar {
    margin-bottom: 28px;
}

.blog-archive__filter-label {
    display: block;
    margin-bottom: 10px;
    color: #0f3952;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #d7e2ea;
    border-radius: 999px;
    background: #fff;
    color: #0f3952;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.blog-filter:hover {
    border-color: #0f3952;
}

.blog-filter.is-active {
    background: #0f3952;
    border-color: #0f3952;
    color: #fff;
}

.blog-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
}

.blog-filter:not(.is-active) .blog-filter__count {
    background: #eef4f8;
    color: #5b7082;
}

.blog-archive__grid {
    margin-top: 8px;
}

.blog-card__date {
    margin: 0 0 8px;
    color: #5b7082;
    font-size: 0.85rem;
}

.blog-card h2 {
    font-family: Questrial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 0 0 12px;
}

.blog-card h2 a {
    color: #0f3952;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--cw-yellow, #e69140);
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.blog-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #d7e2ea;
    background: #fff;
    color: #0f3952;
    text-decoration: none;
    font-weight: 700;
}

.blog-pagination__link.is-active,
.blog-pagination__link:hover {
    background: #0f3952;
    border-color: #0f3952;
    color: #fff;
}

.blog-archive__empty {
    margin-top: 24px;
    text-align: center;
    color: #5b7082;
}

.cwc-hidden {
    display: none !important;
}

.blog-post__inner {
    max-width: 860px;
    padding-top: 32px;
}

.blog-post__category {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #0f3952;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

a.blog-post__category:hover {
    background: #163e56;
    color: #fff;
}

.blog-post__header h1 {
    margin: 0 0 12px;
    color: #0f3952;
    font-family: Questrial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
}

.blog-post__meta {
    margin: 0 0 24px;
    color: #5b7082;
    font-size: 15px;
}

.blog-post__featured {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 57, 82, 0.12);
}

.blog-post__content {
    margin-top: 36px;
    color: #1f1f1f;
    font-size: 18px;
    line-height: 1.7;
}

.blog-post__content h2 {
    margin: 1.6em 0 0.8em;
    color: #0f3952;
    font-family: Questrial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2;
}

.blog-post__content h3 {
    margin: 1.4em 0 0.7em;
    color: #3f79b5;
    font-size: 1.35rem;
    line-height: 1.25;
}

.blog-post__content p {
    margin: 0 0 1em;
}

.blog-post__content ul,
.blog-post__content ol {
    margin: 0 0 1.2em;
    padding-left: 1.4em;
}

.blog-post__content li {
    margin-bottom: 0.45em;
}

.blog-post__content a:not(.btn) {
    color: var(--cw-yellow, #e69140);
    font-weight: 600;
}

.blog-post__content a:not(.btn):hover {
    color: #c97830;
}

.blog-post__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5em auto;
    border-radius: 8px;
}

.blog-post__callout {
    margin: 0 0 2em;
    padding: 24px 28px;
    border-left: 4px solid var(--cw-yellow, #e69140);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 57, 82, 0.08);
}

.blog-post__callout p {
    margin: 0;
    color: #3d4449;
    line-height: 1.7;
}

.blog-post__callout-label {
    display: block;
    margin-bottom: 10px;
    color: #0f3952;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.blog-post__contact {
    margin-top: 2.5em;
}

.blog-post__contact > h2 {
    margin: 0 0 1.25rem;
    color: #0f3952;
    font-size: 1.5rem;
}

.blog-post__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.blog-post__contact-location h3 {
    margin: 0 0 10px;
    color: #0f3952;
    font-size: 1rem;
    font-weight: 700;
}

.blog-post__contact-location p {
    margin: 0;
    line-height: 1.75;
    color: #3d4449;
}

.blog-post__contact-location a {
    font-weight: 600;
}

.blog-post__cta {
    margin-top: 40px;
    padding: 28px;
    border-radius: 12px;
    background: #0f3952;
    color: #fff;
    text-align: center;
}

.blog-post__cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.5rem;
}

.blog-post__cta p {
    margin: 0 0 18px;
}

.blog-post__cta .btn {
    background: var(--cw-yellow, #e69140);
    border-color: var(--cw-yellow, #e69140);
    color: var(--cw-white, #fff);
}

.blog-post__cta .btn:hover {
    color: var(--cw-white, #fff);
}

.blog-post__faq {
    margin: 2.5em 0;
    padding: 28px 32px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d7e2ea;
}

.blog-post__faq > h2 {
    margin: 0 0 20px;
    color: #0f3952;
    font-size: 1.5rem;
}

.blog-post__faq-list details {
    border-bottom: 1px solid #d7e2ea;
}

.blog-post__faq-list details:last-child {
    border-bottom: none;
}

.blog-post__faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 28px 18px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f3952;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.blog-post__faq-list summary::-webkit-details-marker {
    display: none;
}

.blog-post__faq-list summary::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-right: 2px solid #0f3952;
    border-bottom: 2px solid #0f3952;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s;
}

.blog-post__faq-list details[open] summary::after {
    margin-top: 4px;
    transform: rotate(-135deg);
    border-color: var(--cw-yellow, #e69140);
}

.blog-post__faq-list summary:hover::after {
    border-color: var(--cw-yellow, #e69140);
}

.blog-post__faq-list .faq-answer {
    padding: 0 0 18px;
    color: #5b7082;
    font-size: 1rem;
    line-height: 1.65;
}

.blog-post__faq-list .faq-answer p:last-child {
    margin-bottom: 0;
}

.blog-post__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #d7e2ea;
}

.blog-post__nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid #d7e2ea;
    background: #fff;
    color: #0f3952;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-post__nav-link:hover {
    border-color: var(--cw-yellow, #e69140);
    box-shadow: 0 4px 20px rgba(15, 57, 82, 0.08);
}

.blog-post__nav-link--next {
    text-align: right;
    align-items: flex-end;
}

.blog-post__nav-link.is-empty {
    visibility: hidden;
    pointer-events: none;
}

.blog-post__nav-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b7082;
}

.blog-post__nav-title {
    font-family: Questrial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 767px) {
    .blog-post {
        padding: 32px 0 56px;
    }

    .blog-post__content {
        font-size: 16px;
    }

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

    .blog-post__nav-link--next {
        text-align: left;
        align-items: flex-start;
    }

    .blog-post__nav-link.is-empty {
        display: none;
    }
}
