.blog-page .blog-hero,
.blog-page .blog-detail-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.blog-page .blog-hero-bg,
.blog-page .blog-hero-overlay,
.blog-page .blog-detail-hero-bg,
.blog-page .blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
}

.blog-page .blog-hero-bg,
.blog-page .blog-detail-hero-bg {
    background:
        url("img/hero-bg-page.jpg")
        center / cover
        no-repeat;
    transform: scale(1.02);
}

.blog-page .blog-hero-overlay,
.blog-page .blog-detail-hero-overlay {
    background:
    linear-gradient(
        90deg,
        rgba(21,85,112,.95) 0%,
        rgba(21,85,112,.82) 50%,
        rgba(21,85,112,.45) 100%
    );
}

.blog-page .blog-hero-content,
.blog-page .blog-detail-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 105px;
    padding-bottom: 105px;
}

.blog-page .blog-hero-content > *,
.blog-page .blog-detail-hero-content > * {
    max-width: 820px;
}

.blog-page .blog-hero h1,
.blog-page .blog-detail-hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.blog-page .blog-hero-content > p {
    max-width: 690px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
}

.blog-page .blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: none;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.blog-page .blog-breadcrumb a{
    color:#ffffff;
}

.blog-page .blog-breadcrumb a:hover{
    opacity:.8;
}

.blog-page .blog-featured-section {
    padding-top: 90px;
}

.blog-page .featured-post {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.blog-page .featured-post-image {
    min-height: 460px;
    overflow: hidden;
}

.blog-page .featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-page .featured-post:hover .featured-post-image img {
    transform: scale(1.04);
}

.blog-page .featured-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.blog-page .blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
}

.blog-page .blog-post-meta > span:first-child {
    padding: 5px 11px;
    border-radius: 100px;
    background: rgba(21, 85, 112, .08);
    color: var(--primary);
    font-weight: 800;
}

.blog-page .blog-post-meta .read-time {
    padding: 0;
    background: none;
    color: var(--muted);
    font-weight: 500;
}

.blog-page .featured-post-content h2 {
    margin-bottom: 20px;
    font-size: clamp(31px, 3.2vw, 47px);
}

.blog-page .featured-post-content h2 a {
    transition: color .2s;
}

.blog-page .featured-post-content h2 a:hover {
    color: var(--primary);
}

.blog-page .featured-post-content > p {
    margin: 0;
    color: var(--muted);
}

.blog-page .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 28px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.blog-page .blog-read-more span {
    transition: transform .2s;
}

.blog-page .blog-read-more:hover span {
    transform: translateX(4px);
}

.blog-page .row-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.blog-page .blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.blog-page .blog-page-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;
}

.blog-page .blog-page-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.blog-page .blog-card-image {
    height: 235px;
    overflow: hidden;
}

.blog-page .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.blog-page .blog-page-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-page .blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.blog-page .blog-card-content h3 {
    margin: 0 0 13px;
    font-size: 20px;
}

.blog-page .blog-card-content h3 a {
    transition: color .2s;
}

.blog-page .blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-page .blog-card-content > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.blog-page .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
}

.blog-page .blog-card-footer > span {
    color: var(--muted);
    font-size: 12px;
}

.blog-page .blog-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.blog-page .blog-faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.blog-page .blog-faq-heading {
    position: sticky;
    top: 130px;
}

.blog-page .blog-faq-heading p {
    margin-bottom: 30px;
    color: var(--muted);
}

.blog-page .blog-faq-list {
    display: grid;
    gap: 14px;
}

.blog-page .blog-faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    transition:
        border-color .25s,
        box-shadow .25s;
}

.blog-page .blog-faq-item.open {
    border-color: rgba(21, 85, 112, .28);
    box-shadow: 0 14px 35px rgba(21, 85, 112, .12);
}

.blog-page .blog-faq-question {
    width: 100%;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}

.blog-page .blog-faq-symbol {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
    transition: transform .25s;
}

.blog-page .blog-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.blog-page .blog-faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 14px;
}

.blog-page .blog-faq-item.open .blog-faq-answer {
    max-height: 260px;
}

.blog-page .blog-faq-item.open .blog-faq-symbol {
    transform: rotate(45deg);
}

.blog-page .blog-cta {
    padding: 90px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(255, 255, 255, .10),
            transparent 35%
        ),
        #155570;
}

.blog-page .blog-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: center;
}

.blog-page .blog-cta p {
    max-width: 700px;
    color: rgba(255, 255, 255, .75);
}

.blog-page .blog-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    flex-wrap: wrap;
}

.blog-page .blog-detail-category {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(21, 85, 112, .10);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-page .blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.blog-page .blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 45px;
    align-items: start;
}

.blog-page .blog-detail-image {
    height: 500px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.blog-page .blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page .blog-article-content {
    padding-top: 45px;
}

.blog-page .blog-article-content > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.blog-page .blog-article-content .blog-lead {
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
}

.blog-page .blog-key-points {
    margin-top: 38px;
    padding: 30px;
    border-radius: 18px;
    background: rgba(21, 85, 112, .06);
}

.blog-page .blog-key-points h2 {
    margin-bottom: 20px;
    font-size: 27px;
}

.blog-page .blog-key-points ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-page .blog-key-points li {
    position: relative;
    padding-left: 25px;
    color: var(--muted);
}

.blog-page .blog-key-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #155570;
    font-weight: 900;
}

.blog-page .blog-article-notice {
    margin-top: 28px;
    padding: 23px;
    border-radius: 0 13px 13px 0;
    background: rgba(21, 85, 112, .08);
}

.blog-page .blog-article-notice strong {
    color: var(--primary);
}

.blog-page .blog-article-notice p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.blog-page .blog-detail-sidebar {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 20px;
}

.blog-page .blog-sidebar-box {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(21, 85, 112, .06);
}

.blog-page .blog-sidebar-box h2 {
    margin-bottom: 14px;
    font-size: 22px;
    letter-spacing: -.02em;
}

.blog-page .blog-sidebar-box > p {
    margin-top: 0;
    color: var(--muted);
    font-size: 14px;
}

.blog-page .blog-sidebar-button {
    width: 100%;
    margin-top: 8px;
}

.blog-page .blog-sidebar-contact {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.blog-page .blog-sidebar-contact a {
    color: var(--muted);
    font-size: 13px;
}

.blog-page .blog-sidebar-contact a:hover {
    color: var(--primary);
}

.blog-page .other-articles h3 {
    margin: 0 0 13px;
    color: rgba(21, 85, 112, .62);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blog-page .other-articles > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.blog-page .other-articles > a:last-child {
    border-bottom: 0;
}

.blog-page .other-articles span,
.blog-page .other-articles strong {
    display: block;
}

.blog-page .other-articles span {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-page .other-articles strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.45;
    transition: color .2s;
}

.blog-page .other-articles > a:hover strong {
    color: var(--primary);
}

.blog-page .blog-detail-bottom-cta {
    padding: 65px 0;
    color: #ffffff;
    background: #155570;
}

.blog-page .blog-detail-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.blog-page .blog-detail-bottom-inner h2 {
    margin-bottom: 0;
    font-size: clamp(30px, 3vw, 45px);
}

@media (max-width: 1020px) {
    .blog-page .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-page .featured-post-image {
        min-height: 390px;
    }

    .blog-page .blog-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-page .blog-faq-layout,
    .blog-page .blog-cta-inner,
    .blog-page .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-faq-heading,
    .blog-page .blog-detail-sidebar {
        position: static;
    }

    .blog-page .blog-cta-actions {
        justify-content: flex-start;
    }

    .blog-page .blog-sidebar-box {
        max-width: 650px;
    }
}

@media (max-width: 720px) {
    .blog-page .blog-hero,
    .blog-page .blog-detail-hero {
        min-height: 480px;
    }

    .blog-page .blog-hero-content,
    .blog-page .blog-detail-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .blog-page .blog-hero h1,
    .blog-page .blog-detail-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .blog-page .blog-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .blog-page .featured-post-image {
        min-height: 270px;
    }

    .blog-page .featured-post-content {
        padding: 28px 23px;
    }

    .blog-page .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-card-image {
        height: 225px;
    }

    .blog-page .row-heading {
        display: block;
    }

    .blog-page .row-heading > p {
        margin-top: 15px;
    }

    .blog-page .blog-cta {
        padding: 75px 0;
    }

    .blog-page .blog-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-page .blog-detail-image {
        height: 330px;
    }

    .blog-page .blog-key-points,
    .blog-page .blog-sidebar-box {
        padding: 22px;
    }

    .blog-page .blog-detail-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

.blog-page .featured-post,
.blog-page .featured-post-image,
.blog-page .featured-post-content,
.blog-page .blog-page-card,
.blog-page .blog-card-content,
.blog-page .blog-detail-layout,
.blog-page .blog-article,
.blog-page .blog-article-content,
.blog-page .blog-detail-sidebar,
.blog-page .blog-sidebar-box {
    min-width: 0;
}

.blog-page .featured-post-image {
    display: block;
    width: 100%;
    min-width: 0;
    height: 460px;
    min-height: 460px;
    overflow: hidden;
    background: rgba(21, 85, 112, 0.06);
}

.blog-page .featured-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: cover;
}

.blog-page .featured-post-content h2 {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;

    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blog-page .featured-post-content > p {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;

    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.blog-page .blog-card-content h3 {
    display: -webkit-box;
    min-height: calc(1.4em * 2);
    max-width: 100%;
    overflow: hidden;

    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blog-page .blog-card-content > p {
    display: -webkit-box;
    min-height: calc(1.7em * 3);
    max-width: 100%;
    overflow: hidden;

    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.blog-page .blog-detail-hero h1 {
    max-width: 860px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-page .blog-breadcrumb,
.blog-page .blog-detail-meta,
.blog-page .blog-detail-category {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-page .blog-article-content,
.blog-page .blog-article-content > p,
.blog-page .blog-article-content .blog-lead,
.blog-page .blog-article-notice,
.blog-page .blog-article-notice p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-page .other-articles > a,
.blog-page .other-articles strong {
    min-width: 0;
    max-width: 100%;
}

.blog-page .other-articles strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog-page .blog-sidebar-contact a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1020px) {
    .blog-page .featured-post-image {
        height: 390px;
        min-height: 390px;
    }
}

@media (max-width: 720px) {
    .blog-page .featured-post-image {
        height: 270px;
        min-height: 270px;
    }

    .blog-page .featured-post-content h2 {
        font-size: 29px;
    }

    .blog-page .blog-detail-hero h1 {
        max-width: 100%;
        font-size: 40px;
        line-height: 1.12;
    }
}