@charset "utf-8";

:root{
    --law-navy:#0f172a;
    --law-navy2:#111827;
    --law-gold:#c8a96b;
    --law-gold2:#b89455;
    --law-beige:#f7f3ea;
    --law-bg:#f8fafc;
    --law-white:#fff;
    --law-text:#222;
    --law-sub:#666;
    --law-line:#e5e7eb;
    --law-shadow:0 18px 45px rgba(15,23,42,.12);
}

*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    font-family:'Noto Sans KR',sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
    color:var(--law-text);
    word-break:keep-all;
    -webkit-font-smoothing:antialiased;
}

body,
input,
button,
select,
textarea{
    font-family:'Noto Sans KR',sans-serif;
}

body{
    background:var(--law-white);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    vertical-align:middle;
}

button{
    border:0;
    background:none;
    cursor:pointer;
}

ul,
ol{
    margin:0;
    padding:0;
    list-style:none;
}

.law-wrap{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 24px;
}

/* Skip */
#skip_to_container a{
    position:absolute;
    top:-50px;
    left:0;
    z-index:9999;
    padding:12px 18px;
    background:var(--law-navy);
    color:#fff;
    font-size:14px;
}

#skip_to_container a:focus{
    top:0;
}

/* Header */
.law-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

.law-header-top{
    background:var(--law-navy);
    color:#fff;
    font-size:14px;
}

.law-header-top .law-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:38px;
    gap:20px;
}

.law-header-msg{
    margin:0;
    color:rgba(255,255,255,.86);
    font-weight:400;
}

.law-header-call{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#fff;
    white-space:nowrap;
}

.law-header-call strong{
    color:var(--law-gold);
    font-weight:800;
    letter-spacing:.02em;
}

.law-header-main{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
}

.law-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:86px;
    gap:30px;
}

.law-logo{
    flex:0 0 auto;
    margin:0;
}

.law-logo a{
    display:flex;
    align-items:center;
}

.law-logo img{
    display:block;
    max-width:210px;
    max-height:62px;
    object-fit:contain;
}

.law-logo-link{
    display:flex;
    align-items:center;
    gap:18px;
}

.law-logo-kh,
.law-logo-band{
    display:flex;
    align-items:center;
}

.law-logo-kh img{
    max-height:80px;
    width:auto;
}

.law-logo-band img{
    max-height:30px;
    width:auto;
}

.law-logo-divider{
    width:1px;
    height:34px;
    background:rgba(15,23,42,.16);
}

/* Main Menu */
.law-gnb{
    flex:1 1 auto;
    display:flex;
    justify-content:center;
}

.law-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.law-menu > li{
    position:relative;
}

.law-menu > li > a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:86px;
    padding:0 18px;
    color:var(--law-navy2);
    font-size:17px;
    font-weight:700;
    letter-spacing:-.03em;
    transition:color .25s ease, background .25s ease;
}

.law-menu > li > a:hover,
.law-menu > li > a:focus{
    color:var(--law-gold2);
}

.law-menu > li > a:after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:20px;
    height:2px;
    background:var(--law-gold);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .25s ease;
}

.law-menu > li > a:hover:after,
.law-menu > li > a:focus:after{
    transform:scaleX(1);
}

/* Header Actions */
.law-header-actions{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:12px;
}

.law-call-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:104px;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:var(--law-navy);
    color:#fff;
    font-size:15px;
    font-weight:800;
    transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.law-call-btn:hover{
    background:var(--law-gold2);
    transform:translateY(-1px);
    box-shadow:0 12px 25px rgba(200,169,107,.28);
}

.law-menu-btn{
    display:none;
    width:44px;
    height:44px;
    border-radius:10px;
    border:1px solid var(--law-line);
    background:#fff;
}

.law-menu-btn span{
    display:block;
    width:22px;
    height:2px;
    margin:5px auto;
    background:var(--law-navy);
    transition:transform .25s ease, opacity .25s ease;
}

.law-menu-btn.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.law-menu-btn.is-open span:nth-child(2){
    opacity:0;
}

.law-menu-btn.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.law-mobile-bg{
    display:none;
}

/* Container */
.law-container{
    width:100%;
    min-height:600px;
}

/* Common Section */
.law-section{
    padding:90px 0;
}

.law-section.bg{
    background:var(--law-bg);
}

.law-section-title{
    margin:0 0 18px;
    color:var(--law-navy);
    font-size:42px;
    font-weight:900;
    line-height:1.25;
    letter-spacing:-.05em;
}

.law-section-desc{
    margin:0;
    color:var(--law-sub);
    font-size:18px;
    line-height:1.8;
}

/* Button */
.law-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 24px;
    border-radius:999px;
    background:#607D8B;
    color:#fff;
    font-size:24px;
    font-weight:800;
    transition:all .25s ease;
}

.law-btn:hover{
    background:#607D8B;
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(96, 125, 139,.25);
}

.law-btn.gold{
    background:var(--law-gold);
    color:var(--law-navy);
}

.law-btn.gold:hover{
    background:var(--law-gold2);
    color:#fff;
}

/* Card */
.law-card{
    background:#fff;
    border:1px solid var(--law-line);
    border-radius:24px;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow:hidden;
}

.law-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--law-shadow);
    border-color:rgba(200,169,107,.45);
}

/* Board Share Base */
.board-share{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin:50px 0 30px;
    padding:24px;
    border-top:1px solid var(--law-line);
    border-bottom:1px solid var(--law-line);
}

.board-share a,
.board-share button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:42px;
    padding:0 16px;
    border-radius:999px;
    background:var(--law-navy);
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.board-share a:hover,
.board-share button:hover{
    background:var(--law-gold2);
}

/* Footer CTA */
.law-footer-cta{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    color:#fff;
    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.82) 0%,
            rgba(15,23,42,.68) 42%,
            rgba(15,23,42,.55) 100%
        ),
        url('../images/footer-cta.jpg') center center / cover no-repeat;
}

.law-footer-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.law-footer-cta strong{
    display:block;
    margin-bottom:14px;
    font-size:42px;
    font-weight:900;
    line-height:1.3;
    letter-spacing:-.04em;
}

.law-footer-cta p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.8;
}

/* Footer */
.law-footer{
    padding:35px 0 30px;
    background:#0b1120;
    color:#d1d5db;
}

.law-footer-menu{
    display:flex;
    flex-wrap:wrap;
    gap:18px 32px;
    padding-bottom:34px;
    margin-bottom:34px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.law-footer-menu a{
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:color .25s ease;
}

.law-footer-menu a:hover{
    color:var(--law-gold);
}

.law-footer-info h2{
    margin:0 0 24px;
    color:#fff;
    font-size:34px;
    font-weight:900;
    letter-spacing:-.04em;
}

.law-footer-info p{
    margin:0 0 20px;
    color:rgba(255,255,255,.7);
    font-size:16px;
    line-height:1.9;
}

.law-footer-info ul{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    flex-direction:column
}

.law-footer-info li{
    color:#fff;
    font-size:15px;
}

.law-footer-info a{
    color:var(--law-gold);
}

.law-footer-copy{
    margin-top:42px;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.08);
}

.law-footer-copy p{
    margin:0;
    color:rgba(255,255,255,.45);
    font-size:14px;
}

/* Mobile Fixed */
.law-mobile-fixed{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:999;
    display:none;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-top:1px solid var(--law-line);
    box-shadow:0 -10px 30px rgba(15,23,42,.08);
}

.law-mobile-fixed a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:58px;
    font-size:15px;
    font-weight:800;
}

.law-mobile-fixed a:first-child{
    background:var(--law-navy);
    color:#fff;
}

.law-mobile-fixed a:last-child{
    background:var(--law-gold);
    color:var(--law-navy);
}

/* Main Hero */
.law-hero{
    position:relative;
    overflow:hidden;
}

.law-hero .swiper-slide{
    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.law-hero-media{
    position:absolute;
    inset:0;
    z-index:1;
}

.law-hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.law-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.68) 0%,
            rgba(15,23,42,.46) 45%,
            rgba(15,23,42,.18) 100%
        );
}

.law-hero .law-wrap{
    position:relative;
    z-index:3;
}

.law-hero-content{
    max-width:760px;
    color:#fff;
    padding:80px 0;
}

.law-hero-label{
    display:inline-flex;
    align-items:center;
    margin-bottom:24px;
    padding:8px 16px;
    border:1px solid rgba(200,169,107,.7);
    border-radius:999px;
    color:var(--law-gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
}

.law-hero-content h2{
    margin:0 0 28px;
    font-size:62px;
    font-weight:900;
    line-height:1.18;
    letter-spacing:-.06em;
}

.law-hero-content p{
    max-width:660px;
    margin:0 0 38px;
    color:rgba(255,255,255,.88);
    font-size:20px;
    line-height:1.85;
    letter-spacing:-.03em;
}

.law-hero-btns{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.law-hero .swiper-pagination{
    bottom:38px;
}

.law-hero .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.45;
}

.law-hero .swiper-pagination-bullet-active{
    width:34px;
    border-radius:999px;
    background:var(--law-gold);
    opacity:1;
}

/* Main Grid */
.law-main-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:42px;
}

.law-main-card{
    position:relative;
    min-height:230px;
    padding:34px 28px;
}

.law-main-card em{
    display:block;
    margin-bottom:26px;
    color:var(--law-gold);
    font-style:normal;
    font-size:15px;
    font-weight:900;
}

.law-main-card strong{
    display:block;
    margin-bottom:16px;
    color:var(--law-navy);
    font-size:26px;
    font-weight:900;
    line-height:1.3;
    letter-spacing:-.05em;
}

.law-main-card p{
    margin:0;
    color:var(--law-sub);
    font-size:16px;
    line-height:1.75;
}

/* Section Head */
.law-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:42px;
}

/* Consult Box */
.law-consult-box{
    position:relative;
    padding:70px;
    border-radius:32px;
    background:
        linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.94));
    color:#fff;
    overflow:hidden;
}

.law-consult-box:after{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(200,169,107,.16);
}

.law-consult-box span{
    display:block;
    margin-bottom:18px;
    color:var(--law-gold);
    font-size:14px;
    font-weight:900;
    letter-spacing:.12em;
}

.law-consult-box h2{
    position:relative;
    z-index:1;
    margin:0 0 20px;
    font-size:44px;
    font-weight:900;
    letter-spacing:-.05em;
}

.law-consult-box p{
    position:relative;
    z-index:1;
    margin:0 0 34px;
    color:rgba(255,255,255,.74);
    font-size:18px;
}

.law-consult-btns{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

/* SEO Box */
.law-seo-box{
    padding:54px;
    border:1px solid var(--law-line);
    border-radius:28px;
    background:#fff;
}

.law-seo-box h2{
    margin:0 0 24px;
    color:var(--law-navy);
    font-size:36px;
    font-weight:900;
    letter-spacing:-.05em;
}

.law-seo-box p{
    margin:0 0 18px;
    color:var(--law-sub);
    font-size:17px;
    line-height:1.9;
}

.law-seo-box p:last-child{
    margin-bottom:0;
}



/* Responsive */
@media (max-width:1200px){
    .law-menu > li > a{
        padding:0 12px;
        font-size:16px;
    }

    .law-logo img{
        max-width:185px;
    }

    /* main */
    .law-hero-content h2{
        font-size:54px;
    }

    .law-main-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:1024px){
    .law-header-inner{
        min-height:76px;
    }

    .law-logo img{
        max-width:170px;
        max-height:54px;
    }

    .law-menu-btn{
        display:block;
    }

    .law-gnb{
        position:fixed;
        top:114px;
        right:-320px;
        width:320px;
        max-width:86%;
        height:calc(100vh - 114px);
        z-index:1002;
        display:block;
        background:#fff;
        border-left:1px solid var(--law-line);
        box-shadow:-18px 0 40px rgba(15,23,42,.14);
        overflow-y:auto;
        transition:right .3s ease;
    }

    body.menu-open .law-gnb{
        right:0;
    }

    .law-menu{
        display:block;
        padding:18px;
    }

    .law-menu > li{
        border-bottom:1px solid var(--law-line);
    }

    .law-menu > li > a{
        justify-content:flex-start;
        min-height:54px;
        padding:0 8px;
        font-size:17px;
    }

    .law-menu > li > a:after{
        display:none;
    }

    .law-mobile-bg{
        position:fixed;
        inset:0;
        z-index:1001;
        background:rgba(15,23,42,.55);
        opacity:0;
        visibility:hidden;
        transition:opacity .25s ease, visibility .25s ease;
    }

    body.menu-open .law-mobile-bg{
        display:block;
        opacity:1;
        visibility:visible;
    }

    body.menu-open{
        overflow:hidden;
    }

    .law-section{
        padding:70px 0;
    }

    .law-section-title{
        font-size:34px;
    }

    /* footer */
    .law-footer-cta{
        padding:70px 0;
    }

    .law-footer-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .law-footer-cta strong{
        font-size:36px;
    }

    /* main */
    .law-hero .swiper-slide{
        min-height:680px;
    }

    .law-hero-content h2{
        font-size:46px;
    }

    .law-hero-content p{
        font-size:18px;
    }

}

@media (max-width:768px){
    .law-wrap{
        padding:0 18px;
    }

    .law-header-top .law-wrap{
        min-height:34px;
        justify-content:center;
    }

    .law-header-msg{
        display:none;
    }

    .law-header-call{
        font-size:13px;
    }

    .law-header-inner{
        min-height:70px;
    }

    .law-logo img{
        max-width:150px;
    }

    .law-logo-link{
        gap:12px;
    }

    .law-logo-kh img{
        max-height:42px;
    }

    .law-logo-band img{
        max-height:26px;
    }

    .law-logo-divider{
        height:24px;
    }

    .law-call-btn{
        display:none;
    }

    .law-gnb{
        top:104px;
        height:calc(100vh - 104px);
    }

    .law-section{
        padding:56px 0;
    }

    .law-section-title{
        font-size:30px;
    }

    .law-section-desc{
        font-size:16px;
    }

    .board-share{
        margin:36px 0 24px;
        padding:18px 0;
    }

    .board-share a,
    .board-share button{
        flex:1 1 calc(50% - 10px);
        min-width:auto;
    }

    /* footer */
    .law-footer{
        padding:56px 0 90px;
    }

    .law-footer-cta{
        padding:56px 0;
    }

    .law-footer-cta strong{
        font-size:30px;
    }

    .law-footer-cta p{
        font-size:16px;
    }

    .law-footer-info h2{
        font-size:28px;
    }

    .law-footer-info p{
        font-size:15px;
    }

    .law-footer-info ul{
        display:block;
    }

    .law-footer-info li{
        margin-bottom:8px;
    }

    .law-mobile-fixed{
        display:grid;
    }

    /* main */
    .law-hero .swiper-slide{
        min-height:620px;
    }

    .law-hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(15,23,42,.58) 0%,
            rgba(15,23,42,.86) 100%
        );
    }

    .law-hero-content{
        padding:70px 0;
    }

    .law-hero-content h2{
        font-size:36px;
    }

    .law-hero-content p{
        font-size:16px;
        line-height:1.75;
    }

    .law-main-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .law-main-card{
        min-height:auto;
        padding:28px 24px;
    }

    .law-section-head{
        display:block;
    }

    .law-section-head .law-btn{
        margin-top:24px;
    }

    .law-consult-box{
        padding:44px 28px;
        border-radius:24px;
    }

    .law-consult-box h2{
        font-size:32px;
    }

    .law-seo-box{
        padding:34px 24px;
    }

    .law-seo-box h2{
        font-size:28px;
    }

    .law-seo-box p{
        font-size:16px;
    }

}

@media (max-width:540px){
    html,
    body{
        font-size:15px;
    }

    .law-wrap{
        padding:0 16px;
    }

    .law-logo img{
        max-width:135px;
    }

    .law-menu-btn{
        width:40px;
        height:40px;
    }

    .law-gnb{
        width:290px;
    }

    .law-section-title{
        font-size:27px;
    }

    /* footer */
    .law-footer-menu{
        gap:14px 20px;
    }

    .law-footer-menu a{
        font-size:14px;
    }

    .law-footer-cta strong{
        font-size:26px;
    }

    .law-footer-info h2{
        font-size:24px;
    }

    /* main */
    .law-hero .swiper-slide{
        min-height:560px;
    }

    .law-hero-content h2{
        font-size:31px;
    }

    .law-hero-label{
        font-size:11px;
        padding:7px 12px;
    }

    .law-hero-btns .law-btn{
        width:100%;
    }

    .law-main-card strong{
        font-size:23px;
    }
    
}

/* ==================================================
   Lawband About Page
   prefix: lb-about-, lb-sub-
   기존 CSS 충돌 방지용 독립 prefix
================================================== */

.lb-about-page {
    width: 100%;
    color: #1d2633;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    background: #f7f3ec;
}

.lb-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 92px 20px;
}

.lb-about-visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(17, 31, 51, .92), rgba(35, 48, 68, .72)),
        url('/images/sub/lawfirm-about-visual.jpg') center/cover no-repeat;
    color: #fff;
}

.lb-about-visual .lb-about-inner {
    padding-top: 120px;
    padding-bottom: 110px;
}

.lb-about-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #d6b36a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
}

.lb-about-visual h1 {
    margin: 0 0 24px;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lb-about-visual p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 19px;
    line-height: 1.85;
}

.lb-about-breadcrumb {
    margin-top: 36px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
}

.lb-about-section-head {
    margin-bottom: 46px;
}

.lb-about-section-head .eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #b8924f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
}

.lb-about-section-head h2 {
    margin: 0 0 18px;
    color: #142238;
    font-size: clamp(30px, 3.3vw, 46px);
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lb-about-section-head p {
    max-width: 820px;
    margin: 0;
    color: #5b6470;
    font-size: 17px;
    line-height: 1.85;
}

/* 섹션별 배경 */
.lb-about-sec-intro {
    background: linear-gradient(180deg, #f8f4ed 0%, #ffffff 100%);
}

.lb-about-sec-philosophy {
    background:
        radial-gradient(circle at top left, rgba(214,179,106,.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f3eee5 100%);
}

.lb-about-sec-service {
    background: #f6f1e9;
}

.lb-about-sec-lawyers {
    background:
        linear-gradient(135deg, rgba(20,34,56,.97), rgba(35,50,75,.94)),
        url('/images/sub/lawfirm-pattern-bg.jpg') center/cover no-repeat;
}

.lb-about-sec-lawyers .lb-about-section-head h2,
.lb-about-sec-lawyers .lb-about-section-head p {
    color: #fff;
}

.lb-about-sec-lawyers .lb-about-section-head p {
    color: rgba(255,255,255,.75);
}

.lb-about-sec-process {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f3ec 100%);
}

.lb-about-sec-cta {
    background: #142238;
}

/* 소개 본문 */
.lb-about-message {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 42px;
    align-items: stretch;
}

.lb-about-message-card {
    padding: 46px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(20,34,56,.08);
}

.lb-about-message-card h3 {
    margin: 0 0 24px;
    color: #142238;
    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.lb-about-message-card p {
    margin: 0 0 18px;
    color: #4f5967;
    font-size: 17px;
    line-height: 1.9;
}

.lb-about-sign {
    margin-top: 30px;
    color: #142238;
    font-weight: 800;
    font-size: 18px;
}

.lb-about-side {
    display: grid;
    gap: 18px;
}

.lb-about-side-box {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, #142238, #263a57);
    color: #fff;
}

.lb-about-side-box strong {
    display: block;
    margin-bottom: 10px;
    color: #d6b36a;
    font-size: 34px;
    line-height: 1;
}

.lb-about-side-box span {
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.65;
}

/* 철학 */
.lb-about-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.lb-about-principle {
    padding: 36px 32px;
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 54px rgba(20,34,56,.07);
}

.lb-about-principle em {
    display: block;
    margin-bottom: 18px;
    color: #c7a35c;
    font-style: normal;
    font-size: 15px;
    font-weight: 800;
}

.lb-about-principle h3 {
    margin: 0 0 14px;
    color: #142238;
    font-size: 23px;
}

.lb-about-principle p {
    margin: 0;
    color: #596371;
    font-size: 16px;
    line-height: 1.75;
}

/* 업무 카드 */
.lb-about-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.lb-about-service {
    min-height: 190px;
    padding: 30px 26px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(20,34,56,.07);
    border: 1px solid rgba(214,179,106,.22);
}

.lb-about-service span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #b8924f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.lb-about-service h3 {
    margin: 0 0 12px;
    color: #142238;
    font-size: 21px;
}

.lb-about-service p {
    margin: 0;
    color: #5d6673;
    font-size: 15.5px;
    line-height: 1.7;
}

/* 변호사 카드 */
.lb-about-lawyer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.lb-about-lawyer-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 300px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lb-about-lawyer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(0,0,0,.25);
}

.lb-about-lawyer-photo {
    background: #d8d2c7;
}

.lb-about-lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-about-lawyer-info {
    padding: 30px 28px;
}

.lb-about-lawyer-info .role {
    display: block;
    margin-bottom: 8px;
    color: #b8924f;
    font-size: 14px;
    font-weight: 800;
}

.lb-about-lawyer-info h3 {
    margin: 0 0 15px;
    color: #142238;
    font-size: 25px;
}

.lb-about-lawyer-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lb-about-lawyer-info li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    color: #4f5967;
    font-size: 15px;
    line-height: 1.55;
}

.lb-about-lawyer-info li:before {
    content: '';
    position: absolute;
    left: 0;
    top: .68em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c7a35c;
}

/* 절차 */
.lb-about-process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.lb-about-process {
    padding: 34px 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(20,34,56,.07);
}

.lb-about-process b {
    display: block;
    margin-bottom: 16px;
    color: #d6b36a;
    font-size: 28px;
}

.lb-about-process h3 {
    margin: 0 0 12px;
    color: #142238;
    font-size: 21px;
}

.lb-about-process p {
    margin: 0;
    color: #5d6673;
    font-size: 15.5px;
    line-height: 1.75;
}

/* CTA */
.lb-about-cta-box {
    padding: 58px;
    border-radius: 34px;
    background:
        linear-gradient(120deg, rgba(20,34,56,.95), rgba(45,61,87,.88)),
        url('/images/sub/lawfirm-about-cta.jpg') center/cover no-repeat;
    color: #fff;
}

.lb-about-cta-box h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.3;
}

.lb-about-cta-box p {
    max-width: 760px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.85;
}

.lb-about-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lb-about-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.lb-about-cta-actions .primary {
    background: #d6b36a;
    color: #142238;
}

.lb-about-cta-actions .secondary {
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
}

/* 반응형 */
@media (max-width: 1100px) {
    .lb-about-message,
    .lb-about-lawyer-list {
        grid-template-columns: 1fr;
    }

    .lb-about-service-grid,
    .lb-about-process-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-about-principle-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .lb-about-inner {
        padding: 68px 18px;
    }

    .lb-about-visual .lb-about-inner {
        padding-top: 92px;
        padding-bottom: 82px;
    }

    .lb-about-message-card,
    .lb-about-cta-box {
        padding: 32px 24px;
    }

    .lb-about-service-grid,
    .lb-about-process-list {
        grid-template-columns: 1fr;
    }

    .lb-about-lawyer-card {
        grid-template-columns: 1fr;
    }

    .lb-about-lawyer-photo {
        height: 300px;
    }
}

/* ==================================================
   Lawband Practice Area Page
   prefix: lb-practice-
================================================== */

.lb-practice-page {
    background: #f7f3ec;
    color: #1d2633;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.lb-practice-visual {
    background:
        linear-gradient(120deg, rgba(17,31,51,.93), rgba(40,54,78,.72)),
        url('/images/sub/practice-visual.jpg') center/cover no-repeat;
    color: #fff;
}

.lb-practice-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.lb-practice-visual .lb-practice-inner {
    padding-top: 120px;
    padding-bottom: 110px;
}

.lb-practice-kicker {
    display: block;
    margin-bottom: 16px;
    color: #d6b36a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
}

.lb-practice-visual h1 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.18;
    font-weight: 800;
}

.lb-practice-visual p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 19px;
    line-height: 1.8;
}

.lb-practice-section {
    background: linear-gradient(180deg, #f8f4ed 0%, #ffffff 48%, #f4efe7 100%);
}

.lb-practice-head {
    margin-bottom: 44px;
}

.lb-practice-head .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #b8924f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
}

.lb-practice-head h2 {
    margin: 0 0 16px;
    color: #142238;
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.28;
    font-weight: 800;
}

.lb-practice-head p {
    max-width: 820px;
    margin: 0;
    color: #5b6470;
    font-size: 17px;
    line-height: 1.85;
}

.lb-practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lb-practice-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(20,34,56,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lb-practice-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 76px rgba(20,34,56,.15);
}

.lb-practice-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d8d2c7;
}

.lb-practice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.lb-practice-card:hover .lb-practice-img img {
    transform: scale(1.06);
}

.lb-practice-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20,34,56,0) 20%,
        rgba(20,34,56,.35) 62%,
        rgba(20,34,56,.86) 100%
    );
}

.lb-practice-img-title {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}

.lb-practice-img-title span {
    display: block;
    margin-bottom: 7px;
    color: #d6b36a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.lb-practice-img-title h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
}

.lb-practice-body {
    padding: 24px 22px 26px;
}

.lb-practice-body p {
    margin: 0 0 17px;
    color: #5c6674;
    font-size: 15.5px;
    line-height: 1.72;
}

.lb-practice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.lb-practice-tags span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3efe7;
    color: #81683d;
    font-size: 12px;
    font-weight: 700;
}

.lb-practice-link {
    display: inline-flex;
    align-items: center;
    color: #142238;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.lb-practice-link:after {
    content: '→';
    margin-left: 7px;
    color: #b8924f;
}

@media (max-width: 1100px) {
    .lb-practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lb-practice-inner {
        padding: 64px 18px;
    }

    .lb-practice-visual .lb-practice-inner {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .lb-practice-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================================
   Subpage - 법무법인 강현 소개
   prefix: lb-kh-about-
================================================== */

.lb-kh-about {
    background:#fff;
    color:var(--law-text);
}

.lb-kh-about-visual {
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.52) 46%, rgba(15,23,42,.18) 100%),
        url('/new_img/about.jpg') center center / cover no-repeat;
    color:#fff;
}

.lb-kh-about-visual .law-wrap {
    position:relative;
    z-index:2;
}

.lb-kh-about-label {
    display:inline-flex;
    margin-bottom:22px;
    padding:8px 16px;
    border:1px solid rgba(200,169,107,.65);
    border-radius:999px;
    color:var(--law-gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:.14em;
}

.lb-kh-about-visual h1 {
    margin:0 0 26px;
    max-width:760px;
    font-size:56px;
    font-weight:900;
    line-height:1.2;
    letter-spacing:-.06em;
}

.lb-kh-about-visual p {
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.86);
    font-size:19px;
    line-height:1.85;
}

.lb-kh-section {
    padding:95px 0;
}

.lb-kh-section.beige {
    background:var(--law-beige);
}

.lb-kh-section.light {
    background:#f8fafc;
}

.lb-kh-head {
    margin-bottom:48px;
}

.lb-kh-head span {
    display:block;
    margin-bottom:12px;
    color:var(--law-gold2);
    font-size:14px;
    font-weight:900;
    letter-spacing:.14em;
}

.lb-kh-head h2 {
    margin:0 0 18px;
    color:var(--law-navy);
    font-size:42px;
    font-weight:900;
    line-height:1.28;
    letter-spacing:-.05em;
}

.lb-kh-head p {
    max-width:820px;
    margin:0;
    color:var(--law-sub);
    font-size:18px;
    line-height:1.85;
}

.lb-kh-greeting-grid {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:34px;
    align-items:stretch;
}

.lb-kh-greeting-card {
    padding:52px;
    border-radius:30px;
    background:#fff;
    border:1px solid var(--law-line);
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.lb-kh-greeting-card h3 {
    margin:0 0 24px;
    color:var(--law-navy);
    font-size:31px;
    font-weight:900;
    line-height:1.35;
    letter-spacing:-.04em;
}

.lb-kh-greeting-card p {
    margin:0 0 18px;
    color:#4b5563;
    font-size:17px;
    line-height:1.95;
}

.lb-kh-greeting-sign {
    margin-top:32px;
    color:var(--law-navy);
    font-size:18px;
    font-weight:900;
}

.lb-kh-point-list {
    display:grid;
    gap:18px;
}

.lb-kh-point {
    padding:32px;
    border-radius:26px;
    background:linear-gradient(135deg, var(--law-navy), #1f2937);
    color:#fff;
}

.lb-kh-point strong {
    display:block;
    margin-bottom:10px;
    color:var(--law-gold);
    font-size:32px;
    font-weight:900;
}

.lb-kh-point p {
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:16px;
    line-height:1.75;
}

.lb-kh-lawyer-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:26px;
}

.lb-kh-lawyer-card {
    display:grid;
    grid-template-columns:250px 1fr;
    overflow:hidden;
    min-height:270px;
    border-radius:28px;
    background:#fff;
    border:1px solid var(--law-line);
    box-shadow:0 16px 42px rgba(15,23,42,.08);
    transition:transform .25s ease, box-shadow .25s ease;
}

.lb-kh-lawyer-card:hover {
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(15,23,42,.14);
}

.lb-kh-lawyer-photo {
    background:#d9d2c4;
}

.lb-kh-lawyer-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.lb-kh-lawyer-info {
    padding:28px 26px;
}

.lb-kh-lawyer-info em {
    display:block;
    margin-bottom:8px;
    color:var(--law-gold2);
    font-style:normal;
    font-size:14px;
    font-weight:900;
}

.lb-kh-lawyer-info h3 {
    margin:0 0 14px;
    color:var(--law-navy);
    font-size:25px;
    font-weight:900;
}

.lb-kh-lawyer-info ul {
    margin:0;
    padding:0;
    list-style:none;
}

.lb-kh-lawyer-info li {
    position:relative;
    margin-bottom:7px;
    padding-left:14px;
    color:#4b5563;
    font-size:15px;
    line-height:1.55;
}

.lb-kh-lawyer-info li:before {
    content:'';
    position:absolute;
    left:0;
    top:.68em;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--law-gold);
}

.lb-kh-service-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.lb-kh-service-card {
    min-height:250px;
    padding:36px 32px;
    border-radius:28px;
    background:#fff;
    border:1px solid var(--law-line);
    box-shadow:0 14px 36px rgba(15,23,42,.06);
}

.lb-kh-service-card span {
    display:inline-flex;
    margin-bottom:22px;
    color:var(--law-gold2);
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
}

.lb-kh-service-card h3 {
    margin:0 0 16px;
    color:var(--law-navy);
    font-size:24px;
    font-weight:900;
}

.lb-kh-service-card p {
    margin:0;
    color:var(--law-sub);
    font-size:16px;
    line-height:1.8;
}

@media (max-width:1100px) {
    .lb-kh-greeting-grid,
    .lb-kh-lawyer-grid {
        grid-template-columns:1fr;
    }

    .lb-kh-service-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .lb-kh-about-visual {
        min-height:430px;
        background:
            linear-gradient(180deg, rgba(15,23,42,.48) 0%, rgba(15,23,42,.88) 100%),
            url('/new_img/about.jpg') center center / cover no-repeat;
    }

    .lb-kh-about-visual h1 {
        font-size:36px;
    }

    .lb-kh-about-visual p {
        font-size:16px;
    }

    .lb-kh-section {
        padding:66px 0;
    }

    .lb-kh-head h2 {
        font-size:31px;
    }

    .lb-kh-head p {
        font-size:16px;
    }

    .lb-kh-greeting-card {
        padding:34px 24px;
    }

    .lb-kh-lawyer-card {
        grid-template-columns:1fr;
    }

    .lb-kh-lawyer-photo {
        height:300px;
    }

    .lb-kh-service-grid {
        grid-template-columns:1fr;
    }
}


/* ==========================
   BUSINESS PAGE
========================== */

.lb-business-page{
    background:#fff;
}

.lb-business-visual{
    min-height:500px;
    display:flex;
    align-items:center;
    color:#fff;

    background:
    linear-gradient(
        90deg,
        rgba(15,23,42,.82) 0%,
        rgba(15,23,42,.55) 50%,
        rgba(15,23,42,.18) 100%
    ),
    url('/new_img/business.jpg') center center / cover no-repeat;
}

.lb-business-label{
    display:inline-flex;
    margin-bottom:20px;
    padding:8px 16px;
    border:1px solid rgba(200,169,107,.6);
    border-radius:999px;
    color:var(--law-gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
}

.lb-business-visual h1{
    margin:0 0 24px;
    max-width:760px;
    font-size:56px;
    font-weight:900;
    line-height:1.2;
}

.lb-business-visual p{
    max-width:720px;
    color:rgba(255,255,255,.82);
    font-size:19px;
    line-height:1.85;
}

.lb-business-section{
    padding:100px 0;
    background:#f8fafc;
}

.lb-business-head{
    margin-bottom:50px;
}

.lb-business-head span{
    color:var(--law-gold2);
    font-size:14px;
    font-weight:900;
}

.lb-business-head h2{
    margin:12px 0 16px;
    font-size:42px;
    font-weight:900;
    color:var(--law-navy);
}

.lb-business-head p{
    color:var(--law-sub);
    font-size:18px;
}

.lb-business-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.lb-business-card{
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    transition:.25s;
}

.lb-business-card:hover{
    transform:translateY(-6px);
}

.lb-business-thumb{
    position:relative;
    aspect-ratio:16 / 9;
    overflow:hidden;
}

.lb-business-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.lb-business-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:26px;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(15,23,42,.85) 100%
    );
}

.lb-business-overlay span{
    display:block;
    margin-bottom:8px;
    color:var(--law-gold);
    font-size:12px;
    font-weight:900;
}

.lb-business-overlay h3{
    margin:0;
    color:#fff;
    font-size:26px;
    font-weight:900;
}

.lb-business-body{
    padding:28px;
}

.lb-business-body p{
    margin:0;
    color:#4b5563;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:1024px){

    .lb-business-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .lb-business-grid{
        grid-template-columns:1fr;
    }

    .lb-business-visual h1{
        font-size:36px;
    }

}

/* ==================================================
   Lawband Practice Area Page
   prefix: lb-practice-
================================================== */

.lb-practice-page {
    background: #f7f3ec;
    color: #1d2633;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.lb-practice-visual {
    background:
        linear-gradient(120deg, rgba(17,31,51,.93), rgba(40,54,78,.72)),
        url('/images/sub/practice-visual.jpg') center/cover no-repeat;
    color: #fff;
}

.lb-practice-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.lb-practice-visual .lb-practice-inner {
    padding-top: 120px;
    padding-bottom: 110px;
}

.lb-practice-kicker {
    display: block;
    margin-bottom: 16px;
    color: #d6b36a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
}

.lb-practice-visual h1 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.18;
    font-weight: 800;
}

.lb-practice-visual p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 19px;
    line-height: 1.8;
}

.lb-practice-section {
    background: linear-gradient(180deg, #f8f4ed 0%, #ffffff 48%, #f4efe7 100%);
}

.lb-practice-head {
    margin-bottom: 44px;
}

.lb-practice-head .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #b8924f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
}

.lb-practice-head h2 {
    margin: 0 0 16px;
    color: #142238;
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.28;
    font-weight: 800;
}

.lb-practice-head p {
    max-width: 820px;
    margin: 0;
    color: #5b6470;
    font-size: 17px;
    line-height: 1.85;
}

.lb-practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lb-practice-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(20,34,56,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lb-practice-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 76px rgba(20,34,56,.15);
}

.lb-practice-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d8d2c7;
}

.lb-practice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.lb-practice-card:hover .lb-practice-img img {
    transform: scale(1.06);
}

.lb-practice-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20,34,56,0) 20%,
        rgba(20,34,56,.35) 62%,
        rgba(20,34,56,.86) 100%
    );
}

.lb-practice-img-title {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}

.lb-practice-img-title span {
    display: block;
    margin-bottom: 7px;
    color: #d6b36a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.lb-practice-img-title h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
}

.lb-practice-body {
    padding: 24px 22px 26px;
}

.lb-practice-body p {
    margin: 0 0 17px;
    color: #5c6674;
    font-size: 15.5px;
    line-height: 1.72;
}

.lb-practice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.lb-practice-tags span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3efe7;
    color: #81683d;
    font-size: 12px;
    font-weight: 700;
}

.lb-practice-link {
    display: inline-flex;
    align-items: center;
    color: #142238;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.lb-practice-link:after {
    content: '→';
    margin-left: 7px;
    color: #b8924f;
}

@media (max-width: 1100px) {
    .lb-practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lb-practice-inner {
        padding: 64px 18px;
    }

    .lb-practice-visual .lb-practice-inner {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .lb-practice-grid {
        grid-template-columns: 1fr;
    }
}


/* Business card full-link */
.lb-business-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.lb-business-link:hover,
.lb-business-link:focus{
    color:inherit;
    text-decoration:none;
}

.lb-business-link:focus-visible{
    outline:3px solid var(--law-gold);
    outline-offset:4px;
    border-radius:28px;
}


/* 오시는길 */
.lb-location-page{
    background:#faf7f1;
}

.lb-sub-visual{
    min-height:380px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(120deg,rgba(31,47,70,.88),rgba(72,88,108,.58)),
        url('/new_img/location.jpg') center/cover no-repeat;
    color:#fff;
}

.lb-sub-inner,
.lb-location-inner{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

.lb-sub-kicker,
.lb-location-head span,
.lb-location-card span{
    color:#c8a15a;
    font-weight:800;
    letter-spacing:.16em;
    font-size:14px;
}

.lb-sub-visual h1{
    margin:18px 0;
    font-size:56px;
    line-height:1.2;
    font-weight:900;
}

.lb-sub-visual p{
    max-width:760px;
    font-size:19px;
    color:rgba(255,255,255,.86);
}

.lb-location-section,
.lb-court-section{
    padding:90px 0;
}

.lb-location-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:42px;
}

.lb-location-card{
    padding:42px;
    border-radius:28px;
    background:#fffaf3;
    border:1px solid #eadfcf;
    box-shadow:0 18px 45px rgba(31,47,70,.1);
}

.lb-location-card h2{
    margin:14px 0 18px;
    color:#1f2f46;
    font-size:32px;
}

.lb-location-card p,
.lb-location-card li{
    color:#5f5a52;
    font-size:16px;
    line-height:1.8;
}

.lb-location-card ul{
    margin-top:24px;
}

.lb-location-card li{
    margin-bottom:8px;
}

.lb-location-card strong{
    display:inline-block;
    min-width:86px;
    color:#1f2f46;
}

.lb-location-card a{
    color:#a77c36;
    font-weight:800;
}

.lb-location-card.gold{
    background:#1f2f46;
    color:#fff;
}

.lb-location-card.gold h2,
.lb-location-card.gold p{
    color:#fff;
}

.lb-location-card.gold a{
    display:inline-flex;
    margin-top:20px;
    padding:14px 24px;
    border-radius:999px;
    background:#c8a15a;
    color:#1f2f46;
}

.lb-location-map{
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 18px 45px rgba(31,47,70,.12);
}

.lb-location-map .root_daum_roughmap{
    width:100% !important;
}

.lb-location-head{
    margin-bottom:34px;
}

.lb-location-head h2{
    margin:12px 0;
    color:#1f2f46;
    font-size:38px;
}

.lb-location-head p{
    color:#6f6a62;
}

.lb-court-table-wrap{
    overflow-x:auto;
    border-radius:24px;
    background:#fff;
    border:1px solid #eadfcf;
    box-shadow:0 18px 45px rgba(31,47,70,.08);
}

.lb-court-table{
    width:100%;
    border-collapse:collapse;
    min-width:820px;
}

.lb-court-table th{
    padding:18px 16px;
    background:#1f2f46;
    color:#fff;
    font-weight:800;
}

.lb-court-table td{
    padding:16px;
    border-bottom:1px solid #eadfcf;
    color:#3f3a34;
}

.lb-court-table tbody tr:hover{
    background:#faf7f1;
}

.lb-court-table .empty{
    text-align:center;
    color:#777;
}

@media(max-width:768px){
    .lb-sub-visual{
        min-height:300px;
    }

    .lb-sub-visual h1{
        font-size:38px;
    }

    .lb-sub-visual p{
        font-size:16px;
    }

    .lb-location-section,
    .lb-court-section{
        padding:64px 0;
    }

    .lb-location-info{
        grid-template-columns:1fr;
    }

    .lb-location-card{
        padding:30px 24px;
    }

    .lb-location-card h2,
    .lb-location-head h2{
        font-size:28px;
    }
}