body.practice-page {
    background: #f7f8fb;
    color: #172033;
}

.practice-seo-section {
    padding: 78px 0 88px;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.practice-seo-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.practice-seo-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-yellow, #f5a623);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.practice-seo-head h2 {
    color: var(--white, #fff);
    font-size: 32px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.practice-seo-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.practice-seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
}

.practice-seo-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 128px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--white, #fff);
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.practice-seo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.45);
    background: rgba(245, 166, 35, 0.09);
}

.practice-seo-card strong {
    color: var(--primary-yellow, #f5a623);
    font-size: 18px;
    line-height: 1.45;
}

.practice-seo-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .practice-seo-head h2 {
        font-size: 38px;
    }

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

@media (min-width: 1100px) {
    .practice-seo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.practice-hero {
    padding: 132px 20px 76px;
    background: linear-gradient(135deg, #101827 0%, #1c2f4a 58%, #263f61 100%);
    color: #fff;
}

.practice-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.practice-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: #d9b56d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.practice-hero h1 {
    max-width: 820px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.25;
    word-break: keep-all;
}

.practice-lead {
    max-width: 760px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
    word-break: keep-all;
}

.practice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.practice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
}

.practice-btn.primary {
    background: #d9b56d;
    color: #101827;
}

.practice-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.practice-section {
    padding: 68px 20px;
}

.practice-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
}

.practice-card,
.practice-faq article,
.practice-link-card {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(16, 24, 39, .06);
}

.practice-card {
    padding: 28px;
}

.practice-card h2,
.practice-card h3,
.practice-related h2,
.practice-faq h2 {
    font-family: 'Noto Serif KR', serif;
    color: #101827;
    line-height: 1.35;
    word-break: keep-all;
}

.practice-card h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.practice-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.practice-card p,
.practice-card li,
.practice-faq p,
.practice-link-card p {
    color: #526071;
    font-size: 15px;
    line-height: 1.9;
    word-break: keep-all;
}

.practice-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin-top: 14px;
}

.practice-list li {
    position: relative;
    padding-left: 17px;
}

.practice-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9b56d;
}

.practice-related,
.practice-faq {
    margin-top: 26px;
}

.practice-link-grid,
.practice-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.practice-link-card {
    display: block;
    padding: 22px;
    text-decoration: none;
    transition: .2s ease;
}

.practice-link-card:hover {
    transform: translateY(-2px);
    border-color: #d9b56d;
}

.practice-link-card b {
    display: block;
    color: #9b7429;
    font-size: 13px;
    margin-bottom: 8px;
}

.practice-link-card h3 {
    color: #101827;
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 8px;
}

.practice-faq article {
    padding: 22px;
}

.practice-faq h3 {
    color: #101827;
    font-size: 18px;
    margin-bottom: 8px;
    word-break: keep-all;
}

.practice-final {
    margin-top: 30px;
    padding: 26px;
    background: #101827;
    color: #fff;
    border-radius: 8px;
}

.practice-final p {
    color: rgba(255, 255, 255, .78);
    margin-top: 8px;
}

.lawyer-page-photo {
    display: block;
    width: min(100%, 360px);
    height: auto;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .practice-grid,
    .practice-link-grid,
    .practice-faq-grid {
        grid-template-columns: 1fr;
    }

    .practice-hero {
        padding-top: 104px;
    }
}
