.inner-page .site-shell { min-height: calc(100vh - 44px); }
.inner-page .site-header { min-height: 94px; }
.inner-page .site-header.is-stuck { position: sticky; }

.inner-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: center;
    min-height: 330px;
    padding: 58px clamp(38px, 7vw, 115px);
    overflow: hidden;
    border-bottom: 1px solid #dcebf5;
    background:
        radial-gradient(circle at 10% 80%, rgba(15, 177, 217, .14), transparent 24rem),
        linear-gradient(120deg, #f3f9fd, #fff 60%, #eef8fc);
}

.inner-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.25)),
        url("../images/1x/pattern003.png");
    background-position: center;
    background-size: cover;
    content: "";
    opacity: .45;
}

.inner-hero::after {
    position: absolute;
    left: 4%;
    bottom: -145px;
    z-index: -1;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(10, 124, 193, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(11, 139, 201, .03), 0 0 0 90px rgba(11, 139, 201, .02);
    content: "";
}

.inner-hero-copy { position: relative; z-index: 2; max-width: 940px; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #71839a; font-size: 14px; }
.breadcrumbs a { color: var(--blue); font-weight: 700; }
.inner-hero h1 { max-width: 980px; margin: 0; color: var(--navy-950); font-size: clamp(34px, 4vw, 60px); line-height: 1.35; }
.inner-hero-copy > time { display: block; margin-top: 16px; color: #6e829c; font-size: 15px; }
.inner-hero-mark { display: grid; place-items: center; }
.inner-hero-mark img { width: min(100%, 225px); mix-blend-mode: multiply; opacity: .92; }

.title-line { display: flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--cyan); }
.title-line span { width: 100px; height: 1px; background: linear-gradient(90deg, currentColor, transparent); }
.title-line i, .title-line b { display: block; width: 8px; height: 8px; background: currentColor; transform: rotate(45deg); }
.title-line b { width: 13px; height: 13px; background: linear-gradient(135deg, var(--blue), var(--teal)); }

.archive-section, .article-section {
    position: relative;
    padding: 75px clamp(38px, 6vw, 95px) 95px;
    background:
        radial-gradient(circle at 98% 6%, rgba(11, 120, 223, .07), transparent 24rem),
        #f6fafe;
}

.archive-toolbar, .article-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 32px; }
.archive-title { display: flex; align-items: center; gap: 18px; }
.archive-title-icon { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 19px; background: linear-gradient(145deg, #e4f3ff, #e9faf7); box-shadow: 0 12px 25px rgba(15,92,145,.1); }
.archive-title-icon img { width: 39px; height: 39px; object-fit: contain; }
.archive-title h2 { margin: 0; color: var(--navy-950); font-size: clamp(30px, 3vw, 44px); }

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 130px;
    min-height: 49px;
    padding: 9px 18px;
    border: 1px solid #b8d8ed;
    border-radius: 13px;
    color: var(--blue);
    background: #fff;
    box-shadow: 0 8px 20px rgba(17,67,103,.07);
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.back-button:hover { transform: translateY(-2px); box-shadow: 0 13px 25px rgba(17,67,103,.12); }

.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.archive-card { position: relative; display: flex; min-width: 0; min-height: 430px; overflow: hidden; border: 1px solid #d9e8f3; border-radius: 24px; background: #fff; box-shadow: 0 14px 34px rgba(17,68,107,.08); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; flex-direction: column; }
.archive-card:hover { border-color: #a9d4eb; transform: translateY(-7px); box-shadow: 0 24px 46px rgba(17,68,107,.14); }
.archive-card-image { position: relative; display: block; height: 235px; overflow: hidden; background: #e9f4fb; }
.archive-card-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.archive-card:hover .archive-card-image > img { transform: scale(1.055); }
.archive-card-image > img.is-fallback-image { padding: 65px; object-fit: contain; mix-blend-mode: multiply; opacity: .34; transform: none; }
.archive-card:hover .archive-card-image > img.is-fallback-image { transform: none; }
.archive-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(145deg, #e9f6ff, #fff); }
.archive-placeholder img { width: 45%; mix-blend-mode: multiply; opacity: .34; }
.archive-card-type { position: absolute; top: 17px; right: 17px; padding: 6px 14px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--blue), #075da7); box-shadow: 0 7px 18px rgba(5,92,161,.2); font-size: 12px; font-weight: 700; }
.archive-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.archive-card-body time { color: #7a8da5; font-size: 13px; }
.archive-card-body h3 { margin: 10px 0 25px; color: var(--navy-950); font-size: 21px; line-height: 1.55; }
.archive-card-body h3 a { transition: color 180ms ease; }
.archive-card-body h3 a:hover { color: var(--blue); }
.archive-read-more { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 17px; border-top: 1px solid #e5eef5; color: var(--blue); font-weight: 700; }
.archive-loader { position: absolute; right: 50%; bottom: 7px; width: 22px; height: 22px; margin-right: -11px; border: 2px solid #cce4f3; border-top-color: var(--blue); border-radius: 50%; animation: archive-spin .75s linear infinite; }
@keyframes archive-spin { to { transform: rotate(360deg); } }

.article-type { display: inline-flex; margin-bottom: 13px; padding: 6px 15px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); font-size: 13px; font-weight: 700; }
.article-hero h1 { font-size: clamp(30px, 3.5vw, 52px); }
.article-section { padding-top: 45px; }
.article-toolbar { justify-content: flex-start; }
.article-card { overflow: hidden; border: 1px solid #d9e8f3; border-radius: 30px; background: #fff; box-shadow: 0 22px 55px rgba(17,68,107,.11); }
.article-gallery { position: relative; overflow: hidden; background: #e8f3fa; }
.gallery-track { display: flex; direction: ltr; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 100%; height: min(62vw, 650px); min-height: 380px; margin: 0; scroll-snap-align: start; }
.gallery-slide img { width: 100%; height: 100%; object-fit: contain; background: linear-gradient(145deg, #edf7fc, #fff); }
.gallery-slide img.is-fallback-image { padding: min(16vw, 150px); mix-blend-mode: multiply; opacity: .3; }
.gallery-button { position: absolute; top: 50%; z-index: 3; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: var(--navy-900); background: rgba(255,255,255,.88); box-shadow: 0 9px 24px rgba(8,47,83,.15); backdrop-filter: blur(8px); cursor: pointer; transform: translateY(-50%); }
.gallery-next { right: 24px; }
.gallery-previous { left: 24px; }
.gallery-dots { position: absolute; right: 50%; bottom: 19px; z-index: 3; display: flex; gap: 7px; padding: 8px 11px; border-radius: 30px; background: rgba(5,35,66,.45); transform: translateX(50%); }
.gallery-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; }
.gallery-dots button.is-active { width: 22px; border-radius: 10px; background: #fff; }
.article-content { max-width: 1080px; margin: 0 auto; padding: clamp(32px, 6vw, 80px); }
.article-header { padding-bottom: 27px; border-bottom: 1px solid #e1ecf4; }
.article-header time { color: #768aa3; font-size: 14px; }
.article-header h2 { margin: 10px 0 0; color: var(--navy-950); font-size: clamp(27px, 3vw, 42px); line-height: 1.45; }
.article-description { padding-top: 30px; color: #344b68; font-size: 19px; line-height: 2.05; overflow-wrap: anywhere; }

.inner-footer { margin-top: 0; }

@media (max-width: 1160px) {
    .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
    .inner-hero { grid-template-columns: 1fr 190px; min-height: 300px; padding-inline: 42px; }
    .inner-hero-mark img { width: 170px; }
}

@media (max-width: 720px) {
    .inner-page .site-shell { min-height: 100vh; }
    .inner-hero { display: block; min-height: 285px; padding: 47px 21px 55px; }
    .inner-hero-mark { position: absolute; left: 20px; bottom: 23px; opacity: .1; }
    .inner-hero-mark img { width: 150px; }
    .breadcrumbs { flex-wrap: wrap; margin-bottom: 14px; font-size: 13px; }
    .inner-hero h1 { font-size: 34px; }
    .title-line span { width: 62px; }
    .archive-section, .article-section { padding: 52px 16px 70px; }
    .archive-toolbar { align-items: flex-start; flex-direction: column; margin-bottom: 26px; }
    .archive-title-icon { width: 56px; height: 56px; }
    .archive-title-icon img { width: 33px; height: 33px; }
    .archive-title h2 { font-size: 30px; }
    .back-button { min-width: 115px; align-self: flex-start; }
    .archive-grid { grid-template-columns: 1fr; gap: 17px; }
    .archive-card { min-height: 0; border-radius: 21px; }
    .archive-card-image { height: 220px; }
    .archive-card-image > img.is-fallback-image { padding: 55px; }
    .archive-card-body { padding: 21px; }
    .archive-card-body h3 { font-size: 19px; }
    .article-hero h1 { font-size: 29px; }
    .article-card { border-radius: 23px; }
    .gallery-slide { height: 72vw; min-height: 265px; }
    .gallery-button { width: 42px; height: 42px; }
    .gallery-next { right: 12px; }
    .gallery-previous { left: 12px; }
    .article-content { padding: 28px 21px 40px; }
    .article-header h2 { font-size: 27px; }
    .article-description { font-size: 17px; line-height: 1.95; }
}
