.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 92px 0;
}

.page-hero h1 {
    margin: 16px 0 12px;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    margin: 0 0 22px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
    align-items: start;
}

.content-card,
.side-card {
    background: #fff;
    border: 1px solid rgba(15, 34, 56, .08);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 34, 56, .06);
}

.content-card {
    padding: 38px;
    font-size: 18px;
}

.content-card p:first-child {
    margin-top: 0;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.side-card {
    padding: 26px;
    position: sticky;
    top: 112px;
}

.side-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
}

.side-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.article-detail {
    white-space: normal;
}

/* page hero compact professional refinement START */
.page-hero {
    padding: 58px 0 46px;
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(34px, 4.2vw, 52px);
}

.page-hero p {
    max-width: 820px;
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 0;
}
/* page hero compact professional refinement END */

/* practice detail icon refinement START */
.practice-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(199, 164, 90, .13);
    color: var(--gold);
    font-size: 22px;
}

.detail-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 7px;
}
/* practice detail icon refinement END */

/* article detail image clean START */
.article-detail-image {
    width: 100%;
    margin: 0 0 26px;
    overflow: hidden;
    border-radius: 24px;
    background: #f7f2e9;
    border: 1px solid var(--border);
}

.article-detail-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* article detail image clean END */

/* rich content body START */
.rich-content {
    color: var(--text);
    font-size: 16px;
    line-height: 1.78;
}

.rich-content > *:first-child {
    margin-top: 0;
}

.rich-content > *:last-child {
    margin-bottom: 0;
}

.rich-content p {
    margin: 0 0 16px;
}

.rich-content h2,
.rich-content h3 {
    color: var(--navy);
    line-height: 1.22;
    margin: 28px 0 12px;
}

.rich-content h2 {
    font-size: 25px;
}

.rich-content h3 {
    font-size: 20px;
}

.rich-content strong,
.rich-content b {
    color: var(--navy);
    font-weight: 800;
}

.rich-content em,
.rich-content i {
    color: var(--muted);
}

.rich-content ul,
.rich-content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.rich-content li {
    margin: 7px 0;
}

.rich-content blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--cream);
    color: var(--navy);
}

.rich-content a {
    color: var(--navy);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(199, 164, 90, .65);
    text-underline-offset: 3px;
}
/* rich content body END */
