.page-hub,
.page-article {
    background:
        radial-gradient(circle at 90% -20%, #d7eef6 0%, rgba(215, 238, 246, 0) 42%),
        radial-gradient(circle at 0% 20%, #e8f4ea 0%, rgba(232, 244, 234, 0) 34%),
        #f3f7f8;
}

.hub-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 40px;
    background: linear-gradient(120deg, #eff7fa 0%, #deedf2 100%);
    border-bottom: 1px solid #d4e4ea;
}

.hub-hero.has-bg {
    background-image: var(--hub-hero-image);
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hub-hero.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(3, 29, 40, 0.68), rgba(3, 29, 40, 0.42));
}

.hub-hero .container {
    position: relative;
    z-index: 1;
}

.hub-hero .section-kicker {
    margin-bottom: 8px;
}

.hub-hero h1 {
    color: var(--text-main);
    font-size: clamp(32px, 4.6vw, 50px);
    font-family: "Times New Roman", "Noto Serif SC", serif;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hub-hero p {
    color: var(--text-muted);
    max-width: 780px;
}

.hub-hero.has-bg .section-kicker,
.hub-hero.has-bg h1,
.hub-hero.has-bg p {
    color: #fff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.52);
}

.hub-main {
    padding: 34px 0 60px;
}

.hub-section {
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid #d7e4e9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.hub-section .section-head {
    margin-bottom: 14px;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hub-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #d6e4ea;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.hub-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hub-card-body {
    padding: 12px;
}

.hub-meta {
    color: #6b858f;
    font-size: 12px;
    margin-bottom: 6px;
}

.hub-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #e7f3f7;
    border: 1px solid #cbe2ea;
    color: var(--brand-deep);
    font-weight: 700;
    font-size: 11px;
}

.hub-card h3 {
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.hub-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.hub-link {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
}

.hub-cta {
    margin-top: 16px;
    border-top: 1px dashed #d0dfe4;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.hub-cta p {
    color: var(--text-muted);
    font-size: 14px;
}

.article-main {
    padding: 34px 0 60px;
}

.article-shell {
    background: #fff;
    border: 1px solid #d8e5ea;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.article-hero {
    position: relative;
    height: 360px;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 35, 46, 0.22), rgba(6, 35, 46, 0.8));
}

.article-hero-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.article-hero-content h1 {
    font-size: clamp(28px, 4.1vw, 44px);
    line-height: 1.34;
    margin-bottom: 10px;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.article-hero-content p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.98;
}

.article-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(9, 31, 40, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-body {
    --article-reading-width: 920px;
    padding: 28px clamp(18px, 4vw, 38px) 36px;
    display: grid;
    gap: 26px;
    justify-items: center;
}

.article-body > * {
    width: min(100%, var(--article-reading-width));
    max-width: none;
    margin: 0;
}

.article-summary {
    border-left: 4px solid var(--brand);
    background: linear-gradient(180deg, #eef7fa 0%, #e5f1f5 100%);
    border-radius: 14px;
    padding: 16px 18px;
    color: #17343f;
    font-size: 16px;
    line-height: 1.78;
    width: 100%;
}

.article-quick-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.article-quick-card {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #d7e4ea;
    background: linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
    box-shadow: 0 8px 20px rgba(16, 44, 53, 0.045);
}

.article-quick-card h3 {
    color: #1a3944;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.article-quick-card p {
    color: #26434d;
    font-size: 14px;
    line-height: 1.68;
}

.ship-toc {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -2px;
}

.ship-toc a {
    text-decoration: none;
    color: #205667;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #cfe0e7;
    background: linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
}

.ship-toc a:hover {
    border-color: #8cb4c3;
    background: linear-gradient(180deg, #f7fcfe 0%, #eaf4f8 100%);
}

.article-section {
    width: 100%;
    padding: 22px 24px 24px;
    border-radius: 20px;
    border: 1px solid #c8dce4;
    background: linear-gradient(180deg, #f8fcfd 0%, #eaf4f7 100%);
    box-shadow: 0 12px 26px rgba(16, 44, 53, 0.055);
}

.article-section:nth-of-type(even) {
    border-color: #e6ceaa;
    background: linear-gradient(180deg, #fffdf8 0%, #f6ede1 100%);
}

.article-section[id] {
    scroll-margin-top: 96px;
}

.article-section h2 {
    color: var(--text-main);
    font-size: 30px;
    line-height: 1.48;
    margin-bottom: 18px;
    padding-left: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(126, 156, 167, 0.52);
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
    font-weight: 700;
    letter-spacing: 0.015em;
    position: relative;
}

.article-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 14px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3b7b93 0%, #87b9ca 100%);
}

.article-section p,
.article-section li {
    color: #243942;
    font-size: 16px;
    line-height: 1.66;
}

.article-section h2 + p {
    color: #183641;
    font-size: 17px;
    line-height: 1.78;
}

.article-section p + p {
    margin-top: 10px;
}

.article-section ul {
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.article-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.article-points li {
    position: relative;
    padding: 10px 12px 10px 30px;
    border-radius: 12px;
    border: 1px solid #d6e4ea;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
    font-size: 15px;
    line-height: 1.62;
}

.article-points li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4d8fa8 0%, #8dc0cf 100%);
}

.article-highlight {
    background: #fff8ef;
    border: 1px solid #f2d7b2;
    border-radius: 10px;
    padding: 10px 12px;
    color: #865920;
    margin-bottom: 12px;
}

.article-footer-links {
    border-top: 1px dashed #d0dfe4;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-footer-links a {
    text-decoration: none;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}

.event-box {
    border: 1px solid #d8e6ec;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8fa 100%);
    padding: 14px 16px;
    box-shadow: 0 8px 20px rgba(16, 44, 53, 0.05);
}

.event-box-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.event-box h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.event-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.56;
    margin-bottom: 4px;
}

.ship-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.ship-kpi-card {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d7e5eb;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    box-shadow: 0 10px 24px rgba(16, 44, 53, 0.06);
}

.ship-kpi-card span {
    display: block;
    color: #6b848d;
    font-size: 12px;
    margin-bottom: 8px;
}

.ship-kpi-card strong {
    display: block;
    color: var(--text-main);
    font-size: 28px;
    line-height: 1.1;
    font-family: "Times New Roman", "Noto Serif SC", serif;
}

.ship-kpi-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
}

.ship-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.ship-feature-card {
    border-radius: 14px;
    border: 1px solid #d9e7ec;
    background: linear-gradient(180deg, #f8fcfd 0%, #eef6f8 100%);
    padding: 16px;
}

.ship-feature-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e6f2f6;
    border: 1px solid #c9dfe7;
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ship-feature-card h3 {
    color: var(--text-main);
    font-size: 21px;
    margin-bottom: 8px;
    font-family: "Times New Roman", "Noto Serif SC", serif;
}

.ship-feature-card p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 0;
}

.article-visual-card {
    margin: 14px 0 18px;
    border: 1px solid #d7e4ea;
    border-radius: 14px;
    overflow: hidden;
    background: #f7fbfc;
    box-shadow: 0 10px 24px rgba(16, 44, 53, 0.05);
}

.article-visual-card img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.article-visual-card figcaption {
    padding: 10px 12px;
    color: #526a74;
    font-size: 14px;
    line-height: 1.7;
}

.article-visual-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.article-visual-grid .article-visual-card {
    margin: 0;
}

.article-visual-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-visual-grid--triple .article-visual-card img {
    height: 240px;
    max-height: none;
}

.ship-mosaic-4 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ship-mosaic-4 .article-visual-card {
    margin: 0;
}

.ship-mosaic-4 .article-visual-card img {
    height: 170px;
    max-height: none;
}

.ship-takeaway {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #d8e9ee;
    background: linear-gradient(180deg, #f7fcfd 0%, #edf7fa 100%);
    color: #1e4652;
    font-size: 16px;
    line-height: 1.72;
}

.article-visual-stack {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.article-visual-stack .article-visual-card {
    margin: 0;
}

.article-visual-card.is-wide img {
    max-height: 520px;
    object-fit: cover;
    object-position: center;
}

.ship-quote {
    margin: 14px 0;
    padding: 14px 16px;
    border-left: 4px solid #d3b57a;
    border-radius: 10px;
    background: linear-gradient(180deg, #fffaf1 0%, #fff5e5 100%);
    color: #734c1e;
    font-size: 17px;
    line-height: 1.9;
}

.ship-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.ship-panel {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #d8e6ec;
    background: #f8fcfd;
}

.ship-panel.is-warm {
    border-color: #ecd7b8;
    background: #fff9f0;
}

.ship-panel h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 20px;
    font-family: "Times New Roman", "Noto Serif SC", serif;
}

.ship-panel p {
    color: #243942;
    font-size: 15px;
    line-height: 1.8;
}

.ship-panel ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.ship-panel li {
    color: #243942;
    line-height: 1.82;
}

.ship-data-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d7e4ea;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
    background: #fff;
}

.ship-data-table th,
.ship-data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5eef2;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
}

.ship-data-table th {
    width: 168px;
    background: #f4f9fb;
    color: var(--text-main);
    font-weight: 700;
}

.ship-data-table tr:last-child th,
.ship-data-table tr:last-child td {
    border-bottom: none;
}

.ship-footnote {
    margin-top: 14px;
    color: #5f7680;
    font-size: 14px;
    line-height: 1.75;
}

.page-article.island-article {
    background:
        radial-gradient(circle at 12% 0%, rgba(149, 224, 231, 0.55) 0%, rgba(149, 224, 231, 0) 28%),
        radial-gradient(circle at 88% 8%, rgba(255, 228, 184, 0.48) 0%, rgba(255, 228, 184, 0) 24%),
        linear-gradient(180deg, #eef9fb 0%, #fdf9f2 46%, #f4fbfc 100%);
}

.island-article .article-shell {
    border-color: rgba(145, 199, 211, 0.42);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(18, 67, 82, 0.12);
}

.island-article .article-hero {
    height: 520px;
}

.island-article .article-hero img {
    object-position: center 68%;
    filter: saturate(1.04) brightness(1.08);
}

.island-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(7, 42, 56, 0.02) 0%, rgba(7, 42, 56, 0.08) 44%, rgba(7, 42, 56, 0.28) 72%, rgba(7, 42, 56, 0.66) 100%),
        linear-gradient(0deg, rgba(10, 41, 55, 0.28) 0%, rgba(10, 41, 55, 0) 36%);
}

.island-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.island-article .article-hero-kicker {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
}

.island-article .article-hero-content h1 {
    max-width: 920px;
    font-size: clamp(30px, 4vw, 46px);
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28), 0 14px 34px rgba(0, 0, 0, 0.38);
}

.island-article .article-hero-content p {
    max-width: 760px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24), 0 10px 24px rgba(0, 0, 0, 0.32);
}

.island-article .article-hero-kicker {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.island-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 44px;
}

.island-article .article-summary {
    border: 1px solid #d3e9ed;
    border-left: none;
    background: linear-gradient(135deg, rgba(239, 250, 251, 0.98) 0%, rgba(255, 249, 238, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(16, 44, 53, 0.05);
    font-size: 17px;
    line-height: 1.72;
}

.island-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #d4eaee;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9fb 100%);
    box-shadow: 0 14px 28px rgba(18, 67, 82, 0.07);
}

.island-article .ship-kpi-card span {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5b828d;
}

.island-article .ship-kpi-card strong {
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
    color: #183d46;
}

.island-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d9ecef;
    border-top: 4px solid #79c9d8;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 252, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(16, 44, 53, 0.05);
}

.island-article .article-section:nth-of-type(even) {
    border-color: #ecd8bd;
    border-top-color: #e5c48e;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 247, 236, 0.98) 100%);
}

.island-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.42;
}

.island-article .article-section h2::before {
    display: none;
}

.island-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.82;
    color: #1d4853;
}

.island-article .article-section p,
.island-article .article-section li {
    line-height: 1.7;
}

.island-article .article-visual-grid {
    gap: 18px;
    align-items: stretch;
}

.island-article .article-visual-card {
    border-radius: 20px;
    border-color: #d8eaee;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(18, 67, 82, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.island-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #5a7781;
    flex: 1 1 auto;
}

.island-article .article-visual-grid .article-visual-card img {
    height: 330px;
    max-height: none;
}

.island-article .article-visual-grid .article-visual-card.is-tall img {
    height: 500px;
}

.island-article .article-visual-card.is-wide img {
    height: auto;
    max-height: 500px;
}

.island-gallery-three .article-visual-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.island-gallery-three .article-visual-card img {
    height: 250px;
    max-height: none;
}

.island-gallery-three .article-visual-card figcaption {
    flex: 1 1 auto;
}

.island-article .ship-quote {
    margin: 0;
    position: relative;
    border-left: none;
    border: 1px solid #d8eaee;
    border-radius: 20px;
    background: linear-gradient(180deg, #f4fbfc 0%, #edf7fa 100%);
    color: #2b5560;
    line-height: 1.82;
    padding: 18px 22px 18px 60px;
}

.island-article .ship-quote::before {
    content: "“";
    position: absolute;
    left: 18px;
    top: 8px;
    font-size: 54px;
    line-height: 1;
    color: rgba(74, 154, 173, 0.35);
}

.island-gallery-three {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.island-gallery-three .article-visual-card {
    margin: 0;
}

.island-quote-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.island-quote-card {
    padding: 18px 20px;
    border: 1px solid #dbecef;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
    box-shadow: 0 12px 24px rgba(18, 67, 82, 0.05);
}

.island-quote-card span {
    display: block;
    margin-bottom: 10px;
    color: #6a8a94;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.island-quote-card p {
    color: #23424c;
    font-size: 16px;
    line-height: 1.7;
}

.island-soft-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #ecd9b8;
    background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
    color: #73532c;
    font-size: 15px;
    line-height: 1.76;
}

.island-watercolor {
    width: 100%;
    margin: 0;
    border: 1px solid #d8eaee;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 67, 82, 0.05);
}

.island-watercolor img {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.island-watercolor figcaption {
    padding: 12px 16px;
    color: #56737d;
    font-size: 14px;
    line-height: 1.72;
}

.page-article.polar-article {
    background:
        radial-gradient(circle at 14% -6%, rgba(224, 239, 248, 0.92) 0%, rgba(224, 239, 248, 0) 34%),
        radial-gradient(circle at 88% 0%, rgba(180, 204, 227, 0.48) 0%, rgba(180, 204, 227, 0) 28%),
        linear-gradient(180deg, #eef4f8 0%, #f7fafc 45%, #edf3f7 100%);
}

.polar-article .article-shell {
    border-color: rgba(169, 190, 209, 0.58);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 76px rgba(16, 34, 52, 0.14);
}

.polar-article .article-hero {
    height: 560px;
    background: #0b1a2b;
}

.polar-article .article-hero img {
    object-position: center 41%;
    filter: saturate(0.94) brightness(1.08) contrast(1.02);
}

.polar-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(6, 20, 36, 0.02) 0%, rgba(6, 20, 36, 0.08) 34%, rgba(6, 20, 36, 0.24) 58%, rgba(6, 20, 36, 0.72) 100%),
        linear-gradient(0deg, rgba(8, 20, 34, 0.36) 0%, rgba(8, 20, 34, 0) 38%);
}

.polar-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.polar-article .article-hero-kicker {
    background: rgba(10, 28, 42, 0.34);
    border-color: rgba(255, 255, 255, 0.24);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.polar-article .article-hero-content h1 {
    max-width: 960px;
    font-size: clamp(32px, 4.2vw, 48px);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.34), 0 18px 40px rgba(0, 0, 0, 0.36);
}

.polar-article .article-hero-content p {
    max-width: 760px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.polar-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 46px;
}

.polar-article .article-summary {
    border: 1px solid #d6e2ec;
    border-left: none;
    background: linear-gradient(135deg, rgba(245, 249, 252, 0.98) 0%, rgba(232, 240, 247, 0.98) 100%);
    color: #183043;
    box-shadow: 0 12px 30px rgba(16, 34, 52, 0.06);
}

.polar-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #d8e4ed;
    background: linear-gradient(180deg, #ffffff 0%, #f1f6fa 100%);
    box-shadow: 0 14px 30px rgba(16, 34, 52, 0.07);
}

.polar-article .ship-kpi-card span {
    color: #617789;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.polar-article .ship-kpi-card strong {
    color: #132b3c;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.polar-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d7e2eb;
    border-top: 4px solid #8eb4cf;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 248, 252, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(16, 34, 52, 0.055);
}

.polar-article .article-section:nth-of-type(even) {
    border-color: #d0dde8;
    border-top-color: #557998;
    background: linear-gradient(180deg, rgba(253, 254, 255, 0.99) 0%, rgba(236, 243, 248, 0.98) 100%);
}

.polar-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.44;
    color: #10283a;
}

.polar-article .article-section h2::before {
    display: none;
}

.polar-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.8;
    color: #17354b;
}

.polar-article .article-section p,
.polar-article .article-section li {
    color: #243844;
    line-height: 1.68;
}

.polar-article .article-visual-grid {
    gap: 18px;
    align-items: stretch;
}

.polar-article .article-visual-card {
    border-radius: 20px;
    border-color: #d8e3ec;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
    box-shadow: 0 16px 30px rgba(16, 34, 52, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.polar-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #546c7c;
    flex: 1 1 auto;
}

.polar-article .article-visual-grid .article-visual-card img {
    height: 340px;
    max-height: none;
}

.polar-article .article-visual-card.is-wide img,
.polar-article .polar-wide-visual img {
    height: auto;
    max-height: 560px;
    object-position: center;
}

.polar-article .ship-data-table {
    border-color: #d9e3eb;
}

.polar-article .ship-data-table th {
    background: #edf4f9;
    color: #173246;
}

.polar-quote-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.polar-quote-card {
    padding: 18px 20px;
    border: 1px solid #dbe5ed;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    box-shadow: 0 12px 24px rgba(16, 34, 52, 0.05);
}

.polar-quote-card span {
    display: block;
    margin-bottom: 10px;
    color: #5d7486;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.polar-quote-card p {
    color: #213744;
    font-size: 16px;
    line-height: 1.72;
}

.polar-soft-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d7e2eb;
    background: linear-gradient(180deg, #f4f8fb 0%, #edf3f8 100%);
    color: #3f5768;
    font-size: 15px;
    line-height: 1.76;
}

.page-article.lyrial-article {
    background:
        radial-gradient(circle at 12% -4%, rgba(235, 226, 213, 0.72) 0%, rgba(235, 226, 213, 0) 30%),
        radial-gradient(circle at 90% 4%, rgba(211, 226, 236, 0.72) 0%, rgba(211, 226, 236, 0) 26%),
        linear-gradient(180deg, #f7f5f1 0%, #f9fbfd 48%, #f3f6f8 100%);
}

.lyrial-article .article-shell {
    border-color: rgba(191, 200, 208, 0.62);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 74px rgba(36, 47, 58, 0.12);
}

.lyrial-article .article-hero {
    height: 520px;
    background: #13273c;
}

.lyrial-article .article-hero img {
    object-position: center center;
    filter: saturate(0.94) brightness(1.02);
}

.lyrial-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(12, 27, 42, 0.1) 0%, rgba(12, 27, 42, 0.1) 34%, rgba(12, 27, 42, 0.28) 64%, rgba(12, 27, 42, 0.78) 100%),
        linear-gradient(0deg, rgba(13, 27, 42, 0.22) 0%, rgba(13, 27, 42, 0) 34%);
}

.lyrial-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.lyrial-article .article-hero-kicker {
    background: rgba(250, 247, 241, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
}

.lyrial-article .article-hero-content h1 {
    max-width: 900px;
    font-size: clamp(30px, 4vw, 46px);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.32), 0 14px 34px rgba(0, 0, 0, 0.34);
}

.lyrial-article .article-hero-content p {
    max-width: 760px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.lyrial-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 46px;
}

.lyrial-article .article-summary {
    border: 1px solid #e4ddd2;
    border-left: none;
    background: linear-gradient(135deg, rgba(252, 249, 244, 0.98) 0%, rgba(240, 246, 250, 0.98) 100%);
    color: #273847;
    box-shadow: 0 12px 28px rgba(36, 47, 58, 0.05);
}

.lyrial-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #e1ddd6;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    box-shadow: 0 14px 28px rgba(36, 47, 58, 0.06);
}

.lyrial-article .ship-kpi-card span {
    color: #7a6d61;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lyrial-article .ship-kpi-card strong {
    color: #223746;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.lyrial-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #e3ddd5;
    border-top: 4px solid #c5a97d;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 249, 245, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(36, 47, 58, 0.05);
}

.lyrial-article .article-section:nth-of-type(even) {
    border-color: #d9e4eb;
    border-top-color: #7f99aa;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 248, 251, 0.98) 100%);
}

.lyrial-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.44;
    color: #1d3040;
}

.lyrial-article .article-section h2::before {
    display: none;
}

.lyrial-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.8;
    color: #244154;
}

.lyrial-article .article-section p,
.lyrial-article .article-section li {
    color: #32414c;
    line-height: 1.68;
}

.lyrial-article .ship-feature-card {
    border-radius: 18px;
    border-color: #e4ddd4;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    box-shadow: 0 10px 22px rgba(36, 47, 58, 0.05);
}

.lyrial-article .ship-feature-chip {
    background: #f5ece1;
    border-color: #e3ccb0;
    color: #7b5e37;
}

.lyrial-article .article-visual-card {
    border-radius: 20px;
    border-color: #dfe6eb;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
    box-shadow: 0 14px 30px rgba(36, 47, 58, 0.055);
}

.lyrial-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #627381;
}

.lyrial-gallery-three {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lyrial-gallery-three .article-visual-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lyrial-gallery-three .article-visual-card img {
    height: 250px;
    max-height: none;
    object-fit: cover;
}

.lyrial-gallery-three .article-visual-card figcaption {
    flex: 1 1 auto;
}

.lyrial-positioning {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e6d8c6;
    background: linear-gradient(180deg, #fffaf3 0%, #f9f2e7 100%);
    color: #6c5333;
    font-size: 16px;
    line-height: 1.78;
}

.lyrial-quote-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lyrial-quote-card {
    padding: 18px 20px;
    border: 1px solid #e3ddd4;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    box-shadow: 0 12px 24px rgba(36, 47, 58, 0.045);
}

.lyrial-quote-card span {
    display: block;
    margin-bottom: 10px;
    color: #7b6b5c;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.lyrial-quote-card p {
    color: #31404b;
    font-size: 16px;
    line-height: 1.72;
}

.lyrial-soft-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e4dbcf;
    background: linear-gradient(180deg, #faf7f1 0%, #f4efe7 100%);
    color: #5d5045;
    font-size: 15px;
    line-height: 1.76;
}

.page-article.disney-news-article {
    background:
        radial-gradient(circle at 10% -8%, rgba(83, 160, 221, 0.34) 0%, rgba(83, 160, 221, 0) 30%),
        radial-gradient(circle at 90% 0%, rgba(248, 200, 94, 0.26) 0%, rgba(248, 200, 94, 0) 26%),
        linear-gradient(180deg, #eff6fb 0%, #f7fbfe 44%, #eef4fa 100%);
}

.disney-news-article .article-shell {
    border-color: rgba(164, 193, 220, 0.55);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 74px rgba(22, 54, 87, 0.12);
}

.disney-news-article .article-hero {
    height: 520px;
    background: #0f3150;
}

.disney-news-article .article-hero img {
    object-position: center center;
    filter: saturate(1.02) brightness(0.98);
}

.disney-news-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(8, 33, 59, 0.12) 0%, rgba(8, 33, 59, 0.12) 30%, rgba(8, 33, 59, 0.34) 62%, rgba(8, 33, 59, 0.82) 100%),
        linear-gradient(0deg, rgba(7, 24, 46, 0.24) 0%, rgba(7, 24, 46, 0) 34%);
}

.disney-news-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.disney-news-article .article-hero-kicker {
    background: rgba(13, 59, 97, 0.36);
    border-color: rgba(255, 255, 255, 0.22);
}

.disney-news-article .article-hero-content h1 {
    max-width: 920px;
    font-size: clamp(32px, 4.2vw, 48px);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.34), 0 18px 40px rgba(0, 0, 0, 0.36);
}

.disney-news-article .article-hero-content p {
    max-width: 780px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28), 0 10px 26px rgba(0, 0, 0, 0.3);
}

.disney-news-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 46px;
}

.disney-news-article .article-summary {
    border: 1px solid #d6e6f3;
    border-left: none;
    background: linear-gradient(135deg, rgba(245, 250, 255, 0.98) 0%, rgba(252, 247, 234, 0.98) 100%);
    color: #173951;
    box-shadow: 0 12px 28px rgba(22, 54, 87, 0.05);
}

.disney-news-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #d9e7f3;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    box-shadow: 0 14px 28px rgba(22, 54, 87, 0.06);
}

.disney-news-article .ship-kpi-card span {
    color: #5e81a1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.disney-news-article .ship-kpi-card strong {
    color: #173951;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.disney-news-article .article-highlight {
    width: 100%;
    border-radius: 18px;
    border-color: #e1d3a9;
    background: linear-gradient(180deg, #fffaf0 0%, #fff4df 100%);
    color: #7c5a27;
    padding: 14px 18px;
}

.disney-news-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d9e7f1;
    border-top: 4px solid #2f76b6;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 254, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(22, 54, 87, 0.05);
}

.disney-news-article .article-section:nth-of-type(even) {
    border-color: #eadbb1;
    border-top-color: #d8a846;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 249, 238, 0.98) 100%);
}

.disney-news-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.44;
    color: #153650;
}

.disney-news-article .article-section h2::before {
    display: none;
}

.disney-news-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.8;
    color: #1c4866;
}

.disney-news-article .article-section p,
.disney-news-article .article-section li {
    color: #324a5b;
    line-height: 1.68;
}

.disney-news-article .article-visual-card {
    border-radius: 20px;
    border-color: #dce8f1;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
    box-shadow: 0 14px 30px rgba(22, 54, 87, 0.055);
}

.disney-news-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #617b8f;
}

.disney-worth-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d8e6f2;
    background: linear-gradient(180deg, #f5faff 0%, #eef5fb 100%);
    color: #35546a;
    font-size: 15px;
    line-height: 1.76;
}

.disney-source-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.disney-source-list a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.page-article.new-ship-map-article {
    background:
        radial-gradient(circle at 8% -4%, rgba(77, 165, 208, 0.26) 0%, rgba(77, 165, 208, 0) 28%),
        radial-gradient(circle at 92% 2%, rgba(245, 203, 118, 0.22) 0%, rgba(245, 203, 118, 0) 24%),
        linear-gradient(180deg, #eef5f8 0%, #f7fbfd 44%, #eef4f7 100%);
}

.new-ship-map-article .article-shell {
    border-color: rgba(169, 195, 210, 0.5);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 74px rgba(21, 56, 73, 0.11);
}

.new-ship-map-article .article-hero {
    height: 520px;
    background: #123349;
}

.new-ship-map-article .article-hero img {
    object-position: center 44%;
    filter: saturate(1.04) brightness(0.95);
}

.new-ship-map-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(9, 33, 49, 0.08) 0%, rgba(9, 33, 49, 0.14) 36%, rgba(9, 33, 49, 0.42) 68%, rgba(9, 33, 49, 0.84) 100%),
        linear-gradient(0deg, rgba(7, 28, 40, 0.26) 0%, rgba(7, 28, 40, 0) 34%);
}

.new-ship-map-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.new-ship-map-article .article-hero-kicker {
    background: rgba(8, 39, 55, 0.3);
    border-color: rgba(255, 255, 255, 0.24);
}

.new-ship-map-article .article-hero-content h1 {
    max-width: 920px;
    font-size: clamp(32px, 4.4vw, 50px);
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.34), 0 18px 40px rgba(0, 0, 0, 0.34);
}

.new-ship-map-article .article-hero-content p {
    max-width: 820px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.new-ship-map-article .article-body {
    --article-reading-width: 1020px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 48px;
}

.new-ship-map-article .article-summary {
    border: 1px solid #d4e3ea;
    border-left: none;
    background: linear-gradient(135deg, rgba(245, 250, 252, 0.98) 0%, rgba(255, 249, 238, 0.98) 100%);
    color: #1a3a47;
    box-shadow: 0 12px 28px rgba(21, 56, 73, 0.05);
}

.new-ship-map-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #d8e6ed;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
    box-shadow: 0 14px 28px rgba(21, 56, 73, 0.055);
}

.new-ship-map-article .ship-kpi-card span {
    color: #67818d;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.new-ship-map-article .ship-kpi-card strong {
    color: #183846;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.new-ship-map-article .article-highlight {
    border-radius: 18px;
    border-color: #ead9b1;
    background: linear-gradient(180deg, #fffaf1 0%, #fff3de 100%);
    color: #7b5c2b;
    padding: 14px 18px;
}

.new-ship-map-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d9e6ec;
    border-top: 4px solid #287096;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 252, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(21, 56, 73, 0.05);
}

.new-ship-map-article .article-section:nth-of-type(even) {
    border-color: #e7d8b7;
    border-top-color: #cf9b49;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 249, 240, 0.98) 100%);
}

.new-ship-map-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.42;
    color: #173947;
}

.new-ship-map-article .article-section h2::before {
    display: none;
}

.new-ship-map-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.8;
    color: #204453;
}

.new-ship-map-article .article-section p,
.new-ship-map-article .article-section li {
    color: #314958;
    line-height: 1.68;
}

.new-ship-map-article .ship-feature-card {
    border-radius: 18px;
    border-color: #d9e6ed;
    background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
    box-shadow: 0 12px 26px rgba(21, 56, 73, 0.05);
}

.new-ship-map-article .ship-feature-chip {
    background: #e8f2f6;
    border-color: #cfe0e7;
    color: #2c6f8c;
}

.new-ship-map-article .article-visual-card {
    border-radius: 20px;
    border-color: #dce7ec;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
    box-shadow: 0 14px 30px rgba(21, 56, 73, 0.055);
}

.new-ship-map-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #617783;
}

.newship-pick-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.newship-pick-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #d8e5ec;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
    box-shadow: 0 14px 30px rgba(21, 56, 73, 0.055);
}

.newship-pick-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.newship-pick-body {
    padding: 18px 18px 20px;
}

.newship-card-meta {
    margin-bottom: 10px;
    color: #708691;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newship-pick-body h3 {
    margin-bottom: 12px;
    color: #193847;
    font-size: 26px;
    line-height: 1.36;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.newship-pick-body p {
    color: #364c5a;
    font-size: 15px;
    line-height: 1.72;
}

.newship-pick-body p + p {
    margin-top: 10px;
}

.newship-category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.newship-category {
    border-radius: 20px;
    border: 1px solid #d8e6ec;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
    padding: 18px 18px 20px;
    box-shadow: 0 14px 30px rgba(21, 56, 73, 0.05);
}

.newship-category-kicker {
    margin-bottom: 8px;
    color: #6b808b;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newship-category h3 {
    margin-bottom: 14px;
    color: #183846;
    font-size: 24px;
    line-height: 1.34;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.newship-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.newship-category li {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #dbe7ec;
    background: linear-gradient(180deg, #fbfdfe 0%, #f1f7f9 100%);
}

.newship-category li strong {
    display: block;
    margin-bottom: 4px;
    color: #173947;
    font-size: 16px;
    line-height: 1.5;
}

.newship-category li span {
    display: block;
    color: #637985;
    font-size: 13px;
    line-height: 1.64;
}

.newship-closing-note {
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #d7e5ec;
    background: linear-gradient(180deg, #f5fafc 0%, #eef5f8 100%);
    color: #35505f;
    font-size: 16px;
    line-height: 1.78;
}

.page-article.demand-pricing-article {
    background:
        radial-gradient(circle at 10% -6%, rgba(70, 156, 194, 0.25) 0%, rgba(70, 156, 194, 0) 30%),
        radial-gradient(circle at 92% 4%, rgba(224, 175, 84, 0.2) 0%, rgba(224, 175, 84, 0) 26%),
        linear-gradient(180deg, #edf4f7 0%, #f8fbfc 44%, #edf3f6 100%);
}

.demand-pricing-article .article-shell {
    border-color: rgba(165, 192, 205, 0.5);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 72px rgba(18, 52, 68, 0.11);
}

.demand-pricing-article .article-hero {
    height: 520px;
    background: #102f42;
}

.demand-pricing-article .article-hero img {
    object-position: center 48%;
    filter: saturate(1.03) brightness(0.92);
}

.demand-pricing-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(8, 29, 43, 0.08) 0%, rgba(8, 29, 43, 0.12) 30%, rgba(8, 29, 43, 0.42) 68%, rgba(8, 29, 43, 0.84) 100%),
        linear-gradient(0deg, rgba(8, 24, 36, 0.24) 0%, rgba(8, 24, 36, 0) 34%);
}

.demand-pricing-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.demand-pricing-article .article-hero-kicker {
    background: rgba(9, 38, 54, 0.28);
    border-color: rgba(255, 255, 255, 0.22);
}

.demand-pricing-article .article-hero-content h1 {
    max-width: 900px;
    font-size: clamp(32px, 4.3vw, 48px);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34), 0 18px 38px rgba(0, 0, 0, 0.32);
}

.demand-pricing-article .article-hero-content p {
    max-width: 800px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.26), 0 12px 28px rgba(0, 0, 0, 0.26);
}

.demand-pricing-article .article-body {
    --article-reading-width: 1000px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 46px;
}

.demand-pricing-article .article-summary {
    border: 1px solid #d5e2e8;
    border-left: none;
    background: linear-gradient(135deg, rgba(244, 249, 251, 0.98) 0%, rgba(255, 248, 238, 0.98) 100%);
    color: #183844;
    box-shadow: 0 12px 28px rgba(18, 52, 68, 0.05);
}

.demand-pricing-article .ship-kpi-card {
    border-radius: 18px;
    border-color: #d8e4ea;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    box-shadow: 0 14px 28px rgba(18, 52, 68, 0.055);
}

.demand-pricing-article .ship-kpi-card span {
    color: #68808b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demand-pricing-article .ship-kpi-card strong {
    color: #193845;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.demand-pricing-article .article-highlight {
    border-radius: 18px;
    border-color: #e8d7af;
    background: linear-gradient(180deg, #fffaf0 0%, #fff4df 100%);
    color: #7d5c27;
    padding: 14px 18px;
}

.demand-pricing-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d9e5ea;
    border-top: 4px solid #2c7594;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 252, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(18, 52, 68, 0.05);
}

.demand-pricing-article .article-section:nth-of-type(even) {
    border-color: #e7d8b9;
    border-top-color: #cf9f53;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 249, 240, 0.98) 100%);
}

.demand-pricing-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.42;
    color: #173847;
}

.demand-pricing-article .article-section h2::before {
    display: none;
}

.demand-pricing-article .article-section h2 + p {
    font-size: 18px;
    line-height: 1.8;
    color: #204455;
}

.demand-pricing-article .article-section p,
.demand-pricing-article .article-section li {
    color: #334a59;
    line-height: 1.68;
}

.demand-pricing-article .ship-feature-card {
    border-radius: 18px;
    border-color: #d9e5ea;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    box-shadow: 0 12px 26px rgba(18, 52, 68, 0.05);
}

.demand-pricing-article .ship-feature-chip {
    background: #e8f2f6;
    border-color: #cedfe7;
    color: #2d6f8c;
}

.demand-pricing-article .article-visual-card {
    border-radius: 20px;
    border-color: #dbe6eb;
    background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    box-shadow: 0 14px 30px rgba(18, 52, 68, 0.055);
}

.demand-pricing-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #617884;
}

.demand-pricing-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d8e4ea;
    background: linear-gradient(180deg, #f5fafc 0%, #eef5f8 100%);
    color: #35505f;
    font-size: 15px;
    line-height: 1.76;
}

.page-article.essay-article {
    background:
        radial-gradient(circle at 12% 0%, rgba(184, 223, 231, 0.72) 0%, rgba(184, 223, 231, 0) 30%),
        radial-gradient(circle at 88% 6%, rgba(245, 223, 190, 0.45) 0%, rgba(245, 223, 190, 0) 26%),
        linear-gradient(180deg, #edf5f7 0%, #f7fbfc 46%, #f1f5f6 100%);
}

.essay-article .article-shell {
    border-color: rgba(176, 204, 214, 0.62);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 74px rgba(17, 48, 60, 0.12);
}

.essay-article .article-hero {
    height: 520px;
    background: #0d2430;
}

.essay-article .article-hero img {
    object-position: center 42%;
    filter: saturate(1.02) brightness(1.1) contrast(1.02);
}

.essay-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(8, 26, 34, 0.02) 0%, rgba(8, 26, 34, 0.08) 34%, rgba(8, 26, 34, 0.22) 58%, rgba(8, 26, 34, 0.72) 100%),
        linear-gradient(0deg, rgba(8, 26, 34, 0.38) 0%, rgba(8, 26, 34, 0) 34%);
}

.essay-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.essay-article .article-hero-kicker {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.essay-article .article-hero-content h1 {
    max-width: 920px;
    font-size: clamp(30px, 4vw, 46px);
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 18px 38px rgba(0, 0, 0, 0.38);
}

.essay-article .article-hero-content p {
    max-width: 760px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24), 0 10px 26px rgba(0, 0, 0, 0.32);
}

.essay-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 44px;
}

.essay-article .article-summary {
    border: 1px solid #d6e7ec;
    border-left: none;
    background: linear-gradient(135deg, rgba(244, 250, 252, 0.98) 0%, rgba(255, 248, 239, 0.98) 100%);
    color: #173845;
    box-shadow: 0 12px 30px rgba(17, 48, 60, 0.06);
    font-size: 17px;
    line-height: 1.74;
}

.essay-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d8e6eb;
    border-top: 4px solid #7eaebf;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 249, 251, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(17, 48, 60, 0.055);
}

.essay-article .article-section:nth-of-type(even) {
    border-color: #e7d8c3;
    border-top-color: #d3b38c;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 247, 241, 0.98) 100%);
}

.essay-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.42;
}

.essay-article .article-section h2::before {
    display: none;
}

.essay-article .article-section h3 {
    color: #173744;
    margin: 22px 0 12px;
    font-size: 24px;
    line-height: 1.5;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.essay-article .article-section p,
.essay-article .article-section li {
    color: #26404a;
    line-height: 1.68;
}

.essay-article .article-section h2 + p {
    color: #1c4250;
    font-size: 18px;
    line-height: 1.8;
}

.essay-article .article-visual-card {
    border-radius: 20px;
    border-color: #d7e5ea;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
    box-shadow: 0 14px 30px rgba(17, 48, 60, 0.055);
}

.essay-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #607782;
}

.essay-article .article-visual-grid {
    gap: 18px;
    align-items: stretch;
}

.essay-article .article-visual-grid .article-visual-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.essay-article .article-visual-grid .article-visual-card img {
    height: 320px;
    max-height: none;
}

.essay-article .article-visual-grid .article-visual-card.is-tall img {
    height: 480px;
}

.essay-article .article-visual-card.is-wide img {
    max-height: 500px;
}

.essay-question-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.essay-question-card {
    min-height: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d6e5ea;
    background: linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
    box-shadow: 0 12px 24px rgba(17, 48, 60, 0.05);
    color: #173845;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
}

.essay-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e4d7c5;
    background: linear-gradient(180deg, #fffaf3 0%, #fff3e4 100%);
    color: #6e4f2b;
    font-size: 15px;
    line-height: 1.76;
}

.essay-mini-quote {
    margin-top: 16px;
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid #dbe9ee;
    background: linear-gradient(180deg, #f4fafc 0%, #edf6f8 100%);
    color: #29515f;
    font-size: 18px;
    line-height: 1.82;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.essay-insight-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.essay-insight-card {
    padding: 18px 20px;
    border: 1px solid #d7e5ea;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
    box-shadow: 0 12px 24px rgba(17, 48, 60, 0.05);
}

.essay-insight-card span {
    display: block;
    margin-bottom: 10px;
    color: #678390;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.essay-insight-card p {
    color: #26404a;
    font-size: 16px;
    line-height: 1.72;
}

.essay-article .ship-quote {
    margin: 0;
    position: relative;
    border-left: none;
    border: 1px solid #d8e7ec;
    border-radius: 20px;
    background: linear-gradient(180deg, #f3fafc 0%, #edf6f8 100%);
    color: #28505d;
    line-height: 1.84;
    padding: 18px 22px 18px 58px;
}

.essay-article .ship-quote::before {
    content: "“";
    position: absolute;
    left: 18px;
    top: 8px;
    font-size: 54px;
    line-height: 1;
    color: rgba(74, 142, 162, 0.34);
}

.essay-closing {
    width: 100%;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid #e7d6bd;
    background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
    color: #6c4b22;
    font-size: 20px;
    line-height: 1.82;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.page-article.tips-article {
    background:
        radial-gradient(circle at 10% 0%, rgba(207, 234, 244, 0.74) 0%, rgba(207, 234, 244, 0) 30%),
        radial-gradient(circle at 90% 7%, rgba(255, 232, 198, 0.42) 0%, rgba(255, 232, 198, 0) 25%),
        linear-gradient(180deg, #eef6f9 0%, #f8fbfc 48%, #f2f6f7 100%);
}

.tips-article .article-shell {
    border-color: rgba(180, 205, 216, 0.62);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 72px rgba(17, 48, 60, 0.12);
}

.tips-article .article-hero {
    height: 500px;
    background: #0d2430;
}

.tips-article .article-hero img {
    object-position: center 42%;
    filter: saturate(1.04) brightness(1.08) contrast(1.02);
}

.tips-article .article-hero::after {
    background:
        linear-gradient(180deg, rgba(8, 26, 34, 0.02) 0%, rgba(8, 26, 34, 0.08) 34%, rgba(8, 26, 34, 0.22) 58%, rgba(8, 26, 34, 0.72) 100%),
        linear-gradient(0deg, rgba(8, 26, 34, 0.36) 0%, rgba(8, 26, 34, 0) 34%);
}

.tips-article .article-hero-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.tips-article .article-hero-kicker {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.tips-article .article-hero-content h1 {
    max-width: 920px;
    font-size: clamp(30px, 4vw, 46px);
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 18px 38px rgba(0, 0, 0, 0.38);
}

.tips-article .article-body {
    --article-reading-width: 980px;
    gap: 30px;
    padding: 30px clamp(20px, 4vw, 42px) 44px;
}

.tips-article .article-summary {
    border: 1px solid #d8e7ec;
    border-left: none;
    background: linear-gradient(135deg, rgba(244, 250, 252, 0.98) 0%, rgba(255, 250, 243, 0.98) 100%);
    color: #173845;
    box-shadow: 0 12px 30px rgba(17, 48, 60, 0.06);
    font-size: 17px;
    line-height: 1.74;
}

.tips-article .article-section {
    padding: 28px 30px 30px;
    border-radius: 24px;
    border: 1px solid #d8e6eb;
    border-top: 4px solid #78abc1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 249, 251, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(17, 48, 60, 0.055);
}

.tips-article .article-section:nth-of-type(even) {
    border-color: #e8d7c0;
    border-top-color: #d3ad7e;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 247, 240, 0.98) 100%);
}

.tips-article .article-section h2 {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.42;
}

.tips-article .article-section h2::before {
    display: none;
}

.tips-article .article-section p,
.tips-article .article-section li {
    color: #27414a;
    line-height: 1.7;
}

.tips-article .article-visual-card {
    border-radius: 20px;
    border-color: #d7e5ea;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
    box-shadow: 0 14px 30px rgba(17, 48, 60, 0.055);
}

.tips-article .article-visual-card figcaption {
    padding: 14px 16px;
    color: #607782;
}

.tips-article .article-visual-grid {
    gap: 18px;
    align-items: stretch;
}

.tips-article .article-visual-grid .article-visual-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tips-article .article-visual-grid .article-visual-card img {
    height: 320px;
    max-height: none;
}

.tips-myth-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tips-myth-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #d8e6eb;
    background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
    box-shadow: 0 12px 24px rgba(17, 48, 60, 0.05);
}

.tips-myth-card span {
    display: block;
    margin-bottom: 10px;
    color: #66818d;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.tips-myth-card strong {
    color: #173845;
    font-size: 19px;
    line-height: 1.5;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.tips-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e9f4f8;
    border: 1px solid #d1e4eb;
    color: #2a6983;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tips-callout {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d7e6eb;
    background: linear-gradient(180deg, #f4fafc 0%, #edf6f8 100%);
    color: #2b5160;
    font-size: 16px;
    line-height: 1.8;
}

.tips-gallery-three {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tips-gallery-three .article-visual-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tips-gallery-three .article-visual-card img {
    height: 240px;
    max-height: none;
}

.tips-gallery-three .article-visual-card figcaption {
    flex: 1 1 auto;
}

.tips-ending-card {
    width: 100%;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #e8d7c0;
    background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
    color: #6c4b22;
    font-size: 18px;
    line-height: 1.8;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

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

    .ship-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ship-feature-grid,
    .ship-dual-grid,
    .article-quick-grid,
    .article-visual-grid--triple,
    .ship-mosaic-4,
    .newship-pick-grid,
    .newship-category-grid,
    .essay-question-grid,
    .essay-insight-grid,
    .tips-myth-grid,
    .island-gallery-three,
    .island-quote-list,
    .polar-quote-list,
    .lyrial-gallery-three,
    .tips-gallery-three,
    .lyrial-quote-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }

    .article-hero {
        height: 280px;
    }

    .article-body {
        padding: 14px;
    }

    .ship-kpi-grid,
    .ship-feature-grid,
    .ship-dual-grid,
    .newship-pick-grid,
    .newship-category-grid,
    .article-quick-grid,
    .article-visual-grid--triple,
    .ship-mosaic-4,
    .event-box-grid,
    .article-visual-grid,
    .article-visual-stack,
    .essay-question-grid,
    .essay-insight-grid,
    .tips-myth-grid,
    .island-gallery-three,
    .island-quote-list,
    .polar-quote-list,
    .lyrial-gallery-three,
    .tips-gallery-three,
    .lyrial-quote-list {
        grid-template-columns: 1fr;
    }

    .ship-kpi-card strong {
        font-size: 24px;
    }

    .article-points li {
        padding: 9px 10px 9px 28px;
        font-size: 14px;
    }

    .article-points li::before {
        left: 11px;
        top: 16px;
    }

    .ship-toc a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .ship-data-table th,
    .ship-data-table td {
        display: block;
        width: 100%;
    }

    .ship-data-table th {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .ship-data-table td {
        padding-top: 0;
    }

    .island-article .article-hero {
        height: 360px;
    }

    .island-article .article-hero img {
        object-position: center 60%;
    }

    .island-article .article-section {
        padding: 22px 18px 22px;
    }

    .island-article .article-section h2 {
        font-size: 27px;
    }

    .island-article .article-visual-grid .article-visual-card img {
        height: 300px;
    }

    .island-article .article-visual-grid .article-visual-card.is-tall img {
        height: 360px;
    }

    .island-gallery-three .article-visual-card img {
        height: 240px;
    }

    .polar-article .article-hero {
        height: 390px;
    }

    .polar-article .article-hero img {
        object-position: center 44%;
    }

    .polar-article .article-section {
        padding: 22px 18px 22px;
    }

    .polar-article .article-section h2 {
        font-size: 27px;
    }

    .polar-article .article-visual-grid .article-visual-card img {
        height: 300px;
    }

    .lyrial-article .article-hero {
        height: 360px;
    }

    .lyrial-article .article-section {
        padding: 22px 18px 22px;
    }

    .lyrial-article .article-section h2 {
        font-size: 27px;
    }

    .lyrial-gallery-three .article-visual-card img {
        height: 240px;
    }

    .disney-news-article .article-hero {
        height: 360px;
    }

    .disney-news-article .article-section {
        padding: 22px 18px 22px;
    }

    .disney-news-article .article-section h2 {
        font-size: 27px;
    }

    .new-ship-map-article .article-hero {
        height: 360px;
    }

    .new-ship-map-article .article-section {
        padding: 22px 18px 22px;
    }

    .new-ship-map-article .article-section h2 {
        font-size: 27px;
    }

    .newship-pick-card img {
        height: 220px;
    }

    .demand-pricing-article .article-hero {
        height: 360px;
    }

    .demand-pricing-article .article-section {
        padding: 22px 18px 22px;
    }

    .demand-pricing-article .article-section h2 {
        font-size: 27px;
    }

    .essay-article .article-hero {
        height: 360px;
    }

    .essay-article .article-hero img {
        object-position: center 40%;
    }

    .essay-article .article-section {
        padding: 22px 18px 22px;
    }

    .essay-article .article-section h2 {
        font-size: 27px;
    }

    .essay-article .article-section h3 {
        font-size: 22px;
    }

    .essay-article .article-visual-grid .article-visual-card img {
        height: 280px;
    }

    .essay-article .article-visual-grid .article-visual-card.is-tall img {
        height: 360px;
    }

    .tips-article .article-hero {
        height: 360px;
    }

    .tips-article .article-section {
        padding: 22px 18px 22px;
    }

    .tips-article .article-section h2 {
        font-size: 27px;
    }

    .tips-article .article-visual-grid .article-visual-card img,
    .tips-gallery-three .article-visual-card img {
        height: 280px;
    }
}

.page-article.route-article {
    background: linear-gradient(180deg, #eef5f7 0%, #f8fbfc 34%, #eef4f6 100%);
}

.route-article .article-shell {
    border-color: #d4e3ea;
}

.route-article .article-hero {
    height: 420px;
}

.route-article .article-hero img {
    object-position: center center;
}

.route-article .article-hero-content {
    max-width: 820px;
}

.route-article .article-summary {
    border-left-color: #4a90a6;
}

.route-badges {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.route-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f8fa;
    border: 1px solid #d4e4eb;
    color: #214653;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 6px 16px rgba(16, 44, 53, 0.05);
}

.route-article .callout {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(110, 165, 184, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 248, 251, 0.96) 100%);
    color: #1f4250;
    font-size: 16px;
    line-height: 1.82;
    box-shadow: 0 12px 24px rgba(16, 44, 53, 0.06);
}

.route-map-panel {
    width: 100%;
    border-radius: 24px;
    border: 1px solid #d8e6ec;
    background: linear-gradient(180deg, #f9fcfd 0%, #eef6f9 100%);
    padding: 22px 22px 18px;
    box-shadow: 0 14px 28px rgba(16, 44, 53, 0.06);
}

.route-map-header h2 {
    color: var(--text-main);
    font-size: 30px;
    line-height: 1.46;
    margin-bottom: 10px;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.route-map-header p {
    color: #3b5660;
    font-size: 16px;
    line-height: 1.76;
}

.route-map-shell {
    margin-top: 16px;
    border-radius: 22px;
    padding: 16px;
    border: 1px solid rgba(135, 178, 195, 0.3);
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.route-map-shell svg {
    display: block;
    width: 100%;
    height: auto;
}

.route-map-points circle {
    fill: #ffffff;
    stroke: #31697c;
    stroke-width: 5px;
}

.route-map-labels text {
    fill: #23424d;
    font-size: 26px;
    font-weight: 700;
    text-anchor: middle;
}

.route-map-sea {
    fill: #557784;
    font-size: 22px;
    font-weight: 700;
}

.route-stop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.route-stop-list span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d6e5ea;
    color: #31505b;
    font-size: 13px;
}

.route-timeline {
    display: grid;
    gap: 14px;
}

.route-timeline .timeline-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px dashed rgba(114, 149, 162, 0.42);
}

.route-timeline .timeline-item:first-child {
    border-top: 0;
    padding-top: 4px;
}

.timeline-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f9 100%);
    border: 1px solid #d3e3e9;
    color: #2c5563;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(16, 44, 53, 0.05);
}

.route-timeline h3 {
    color: var(--text-main);
    font-size: 22px;
    line-height: 1.56;
    margin-bottom: 8px;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.route-timeline p {
    color: #29404a;
    font-size: 15px;
    line-height: 1.78;
}

.route-image-duo,
.route-photo-trio {
    width: 100%;
}

.route-image-duo .article-visual-card,
.route-photo-trio .article-visual-card {
    margin: 0;
}

.route-photo-trio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.route-image-duo .article-visual-card img,
.route-photo-trio .article-visual-card img {
    height: 250px;
    max-height: none;
    object-fit: cover;
}

.soft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.soft-card {
    border-radius: 18px;
    border: 1px solid #d8e7ec;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8fa 100%);
    padding: 18px;
    box-shadow: 0 12px 24px rgba(16, 44, 53, 0.055);
}

.soft-card h3 {
    color: var(--text-main);
    font-size: 22px;
    line-height: 1.56;
    margin-bottom: 10px;
    font-family: "Baskerville", "Georgia", "Times New Roman", "Songti SC", "STSong", serif;
}

.soft-card p {
    color: #27404a;
    font-size: 15px;
    line-height: 1.78;
}

.med-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(84, 48, 19, 0.1) 0%, rgba(55, 31, 16, 0.66) 64%, rgba(38, 22, 10, 0.82) 100%);
}

.med-route-article .article-summary {
    background: linear-gradient(180deg, #fff7eb 0%, #f6eadb 100%);
    color: #57391d;
}

.med-route-article .article-section {
    border-color: #ead9c4;
    background: linear-gradient(180deg, #fffdf9 0%, #f8efe4 100%);
}

.med-route-article .article-section:nth-of-type(even) {
    border-color: #d7e3e8;
    background: linear-gradient(180deg, #f8fcfd 0%, #ebf4f7 100%);
}

.med-route-article .article-section h2::before,
.med-route-article .route-map-points circle {
    stroke: #a7642e;
}

.med-route-article .article-section h2::before {
    background: linear-gradient(180deg, #b56e34 0%, #e3b985 100%);
}

.med-route-article .route-badge {
    background: #fff7ee;
    border-color: #edd7bd;
    color: #774b21;
}

.med-route-article .route-map-panel {
    border-color: #ead8c0;
    background: linear-gradient(180deg, #fffdf9 0%, #f7ecdf 100%);
}

.caribbean-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(8, 73, 86, 0.12) 0%, rgba(8, 73, 86, 0.55) 58%, rgba(7, 59, 73, 0.82) 100%);
}

.caribbean-route-article .article-summary {
    background: linear-gradient(180deg, #ebfbfc 0%, #dff5f5 100%);
    color: #134c58;
}

.caribbean-route-article .article-section {
    border-color: #cce7e8;
    background: linear-gradient(180deg, #f8feff 0%, #e7f8f7 100%);
}

.caribbean-route-article .article-section:nth-of-type(even) {
    border-color: #d6e5ea;
    background: linear-gradient(180deg, #fbfdff 0%, #edf7fa 100%);
}

.caribbean-route-article .article-section h2::before {
    background: linear-gradient(180deg, #2a95ad 0%, #84d4d1 100%);
}

.caribbean-route-article .route-badge {
    background: #effcfd;
    border-color: #cfeef0;
    color: #14616d;
}

.caribbean-route-article .route-map-panel {
    border-color: #c9ebed;
    background: linear-gradient(180deg, #f8feff 0%, #e6f8f8 100%);
}

@media (max-width: 960px) {
    .route-article .article-hero {
        height: 360px;
    }

    .route-photo-trio,
    .soft-grid {
        grid-template-columns: 1fr;
    }

    .route-image-duo {
        grid-template-columns: 1fr;
    }

    .route-timeline .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .route-map-shell {
        overflow-x: auto;
        padding: 12px;
    }

    .route-map-shell svg {
        min-width: 760px;
    }
}

@media (max-width: 640px) {
    .route-article .article-hero {
        height: 320px;
    }

    .route-map-panel {
        padding: 18px 16px 16px;
        border-radius: 20px;
    }

    .route-map-header h2 {
        font-size: 26px;
    }

    .route-map-labels text {
        font-size: 23px;
    }

    .route-map-sea {
        font-size: 20px;
    }

    .route-image-duo .article-visual-card img,
    .route-photo-trio .article-visual-card img {
        height: 220px;
    }
}

.alaska-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(20, 53, 68, 0.08) 0%, rgba(19, 51, 64, 0.58) 58%, rgba(14, 36, 45, 0.82) 100%);
}

.alaska-route-article .article-summary {
    background: linear-gradient(180deg, #edf6f8 0%, #dfeef2 100%);
    color: #1a4350;
}

.alaska-route-article .article-section {
    border-color: #cfe0e7;
    background: linear-gradient(180deg, #f7fbfc 0%, #eaf3f6 100%);
}

.alaska-route-article .article-section:nth-of-type(even) {
    border-color: #d8e2d6;
    background: linear-gradient(180deg, #fbfdfb 0%, #eef3ec 100%);
}

.alaska-route-article .article-section h2::before {
    background: linear-gradient(180deg, #416f86 0%, #a0c1ce 100%);
}

.alaska-route-article .route-badge {
    background: #eef7f9;
    border-color: #d3e5eb;
    color: #205266;
}

.alaska-route-article .route-map-panel {
    border-color: #cfdfe6;
    background: linear-gradient(180deg, #f8fbfc 0%, #e9f1f4 100%);
}

.antarctica-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(31, 50, 62, 0.08) 0%, rgba(31, 50, 62, 0.5) 56%, rgba(24, 37, 46, 0.8) 100%);
}

.antarctica-route-article .article-summary {
    background: linear-gradient(180deg, #f6fafb 0%, #ecf3f5 100%);
    color: #294752;
}

.antarctica-route-article .article-section {
    border-color: #d7e4e9;
    background: linear-gradient(180deg, #fbfdfe 0%, #eff4f6 100%);
}

.antarctica-route-article .article-section:nth-of-type(even) {
    border-color: #dfe7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.antarctica-route-article .article-section h2::before {
    background: linear-gradient(180deg, #7f97a4 0%, #d7e3e8 100%);
}

.antarctica-route-article .route-badge {
    background: #f4f8fa;
    border-color: #dce7eb;
    color: #345562;
}

.antarctica-route-article .route-map-panel {
    border-color: #dce6ea;
    background: linear-gradient(180deg, #fbfdfe 0%, #eef3f5 100%);
}

.tahiti-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(5, 80, 88, 0.08) 0%, rgba(9, 93, 95, 0.48) 56%, rgba(8, 74, 78, 0.82) 100%);
}

.tahiti-route-article .article-summary {
    background: linear-gradient(180deg, #ebfbfb 0%, #ddf5f2 100%);
    color: #15515d;
}

.tahiti-route-article .article-section {
    border-color: #cce9e4;
    background: linear-gradient(180deg, #f8fffe 0%, #e8f9f6 100%);
}

.tahiti-route-article .article-section:nth-of-type(even) {
    border-color: #e4dbc7;
    background: linear-gradient(180deg, #fffef9 0%, #f7f0e3 100%);
}

.tahiti-route-article .article-section h2::before {
    background: linear-gradient(180deg, #23a2ad 0%, #8dd9d1 100%);
}

.tahiti-route-article .route-badge {
    background: #eefffd;
    border-color: #cfeee9;
    color: #13626c;
}

.tahiti-route-article .route-map-panel {
    border-color: #caebe6;
    background: linear-gradient(180deg, #f8fffe 0%, #e6f9f7 100%);
}

.rhine-route-article .article-hero::after {
    background: linear-gradient(180deg, rgba(60, 71, 38, 0.08) 0%, rgba(71, 81, 45, 0.5) 58%, rgba(54, 61, 32, 0.82) 100%);
}

.rhine-route-article .article-summary {
    background: linear-gradient(180deg, #f6f8ee 0%, #ecefdc 100%);
    color: #475431;
}

.rhine-route-article .article-section {
    border-color: #dfe4d3;
    background: linear-gradient(180deg, #fcfdf8 0%, #f0f3e6 100%);
}

.rhine-route-article .article-section:nth-of-type(even) {
    border-color: #d6e2df;
    background: linear-gradient(180deg, #fafdfd 0%, #ecf4f2 100%);
}

.rhine-route-article .article-section h2::before {
    background: linear-gradient(180deg, #6f8754 0%, #c7d3a1 100%);
}

.rhine-route-article .route-badge {
    background: #f6faee;
    border-color: #dde7cb;
    color: #556b38;
}

.rhine-route-article .route-map-panel {
    border-color: #dfe6cf;
    background: linear-gradient(180deg, #fcfdf7 0%, #eef2df 100%);
}
