:root {
    --ink: #0a2550;
    --muted: #6c7772;
    --green: #073e7a;
    --green-light: #e8f3ed;
    --cream: #f6f2e8;
    --gold: #b68a3b;
    --line: #dfe5e1;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.article-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 38px 0 80px;
}

.article-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 34px;
    color: #7a847f;
    font-size: 13px;
}

.article-breadcrumb a:hover { color: var(--green); }

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 58px;
    align-items: start;
}

.article-category {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 99px;
    color: var(--green);
    background: var(--green-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-header h1 {
    max-width: 820px;
    margin: 16px 0 14px;
    color: #0a2550;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.article-meta i { width: 4px; height: 4px; border-radius: 50%; background: #b6bfba; }

.article-hero {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    margin: 34px 0 36px;
    padding: 48px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(125deg, #f5f0e3 0%, #fbf9f3 62%, #e7eee8 100%);
}

.article-hero__copy { position: relative; z-index: 2; width: 57%; }
.article-hero__copy span { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .13em; }
.article-hero__copy h2 { margin: 20px 0 12px; font-family: "Playfair Display", serif; font-size: 45px; line-height: 1; }
.article-hero__copy p { max-width: 330px; color: #5d6863; line-height: 1.65; }
.article-hero img { position: absolute; z-index: 2; right: 4%; bottom: -12%; width: 35%; max-height: 370px; object-fit: contain; filter: drop-shadow(0 20px 16px rgba(16, 37, 31, .18)); }
.article-hero__shape { position: absolute; right: -40px; top: -80px; width: 360px; height: 360px; border: 70px solid rgba(7, 62, 122, .07); border-radius: 50%; }

.article-body { color: #34423d; font-size: 16px; line-height: 1.82; }
.article-body p { margin: 0 0 20px; }
.article-body .article-intro { color: #1c322a; font-size: 19px; line-height: 1.65; }
.article-body h2 { margin: 38px 0 12px; color: var(--ink); font-family: "Playfair Display", serif; font-size: 30px; line-height: 1.25; }
.article-body ol { margin: 10px 0 26px; padding-left: 22px; }
.article-body li { margin-bottom: 12px; padding-left: 6px; }
.article-body li::marker { color: var(--green); font-weight: 700; }

.article-tip {
    margin: 30px 0;
    padding: 24px 26px;
    border-left: 4px solid var(--green);
    border-radius: 0 12px 12px 0;
    background: var(--green-light);
}
.article-tip strong { display: block; margin-bottom: 5px; color: var(--green); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.article-tip p { margin: 0; color: #29453b; }

.article-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; }
.article-footer div { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.article-footer div > span { font-weight: 700; }
.article-footer div a { padding: 6px 10px; border-radius: 50px; background: #f1f4f2; }
.article-footer a:hover { color: var(--green); }
.back-to-blog { color: var(--green); font-weight: 700; white-space: nowrap; }

.article-sidebar { position: sticky; top: 110px; }
.latest-blogs { border-top: 3px solid var(--green); }
.sidebar-title { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 13px; border-bottom: 1px solid var(--line); }
.sidebar-title span { font-family: "Playfair Display", serif; font-size: 23px; font-weight: 700; }
.sidebar-title a { color: var(--green); font-size: 12px; font-weight: 700; }
.latest-card { display: grid; grid-template-columns: 86px 1fr; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.latest-card img { width: 86px; height: 72px; padding: 5px; border-radius: 7px; background: #f5f2e9; object-fit: contain; }
.latest-card strong { display: -webkit-box; overflow: hidden; color: #1a2b25; font-size: 14px; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.latest-card small { display: block; margin-top: 7px; color: #8b9490; font-size: 10px; }
.latest-card:hover strong { color: var(--green); }

.help-card { margin-top: 30px; padding: 32px 28px; border-radius: 12px; color: #fff; text-align: center; background: linear-gradient(140deg, #095bb5, #073e7a); }
.help-card__icon { display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto 13px; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; font-weight: 700; }
.help-card h2 { margin: 0 0 8px; font-family: "Playfair Display", serif; font-size: 27px; }
.help-card p { margin: 0 auto 21px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.55; }
.help-card a { display: inline-flex; gap: 10px; padding: 11px 18px; border-radius: 99px; color: var(--green); background: #fff; font-size: 12px; font-weight: 700; transition: transform .2s ease, background-color .2s ease; }
.help-card a:hover { transform: translateY(-2px); background: #eef5fc; }

@media (max-width: 920px) {
    .article-layout { grid-template-columns: 1fr; gap: 60px; }
    .article-sidebar { position: static; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
    .help-card { margin-top: 0; align-self: start; }
}

@media (max-width: 640px) {
    .article-page { width: min(100% - 30px, 1180px); padding-top: 24px; }
    .article-breadcrumb { margin-bottom: 25px; }
    .article-header h1 { font-size: 48px; }
    .article-hero { min-height: 410px; margin-top: 26px; padding: 30px 24px; }
    .article-hero__copy { width: 100%; }
    .article-hero__copy h2 { font-size: 45px; }
    .article-hero__copy p { max-width: 245px; }
    .article-hero img { right: 3%; width: 42%; }
    .article-body h2 { font-size: 26px; }
    .article-footer { flex-direction: column; }
    .article-sidebar { grid-template-columns: 1fr; }
}
