.saha-detail-page{
    padding:34px 0 46px;
    background:
        radial-gradient(circle at 10% 4%, rgba(37,99,235,.10), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(249,115,22,.08), transparent 26%),
        linear-gradient(180deg,#f8fafc 0%,#ffffff 44%);
}

.saha-detail-page > .container{
    width:min(1180px, calc(100% - 32px));
    max-width:none;
    margin:0 auto;
}

.saha-detail-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:8px;
    width:100%;
    margin:0 0 18px;
    padding:0;
    text-align:left;
}

.saha-detail-hero{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
    gap:30px;
    align-items:center;
    width:100%;
    padding:30px;
    border:1px solid #e2e8f0;
    border-radius:30px;
    background:
        linear-gradient(135deg,#ffffff 0%,#f8fafc 100%);
    box-shadow:0 24px 66px rgba(15,23,42,.09);
}

.saha-detail-hero:before{
    content:"";
    position:absolute;
    left:30px;
    top:26px;
    width:78px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(90deg,#f97316,#1d4ed8);
}

.saha-detail-hero__content{
    position:relative;
    z-index:1;
    order:1;
    display:grid;
    gap:16px;
    min-width:0;
    padding-top:18px;
}

.saha-detail-hero__content h1{
    margin:0;
    max-width:780px;
    color:#0f172a;
    font-size:clamp(36px,4.3vw,56px);
    line-height:1.05;
    letter-spacing:-.05em;
    text-align:left;
}

.saha-detail-hero__content p{
    margin:0;
    max-width:760px;
    color:#334155;
    font-size:17px;
    line-height:1.76;
    text-align:left;
}

.saha-detail-hero__image{
    position:relative;
    z-index:1;
    order:2;
    aspect-ratio:4 / 3;
    overflow:hidden;
    border:1px solid #dbe3ef;
    border-radius:24px;
    background:#f8fafc;
    box-shadow:0 18px 48px rgba(15,23,42,.10);
}

.saha-detail-hero__image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.saha-detail-hero__placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#64748b;
    font-weight:900;
    background:#f1f5f9;
}

.saha-detail-content{
    display:grid;
    gap:22px;
    width:100%;
    max-width:none;
    margin:28px 0 0;
}

.saha-detail-card{
    width:100%;
    padding:30px;
    border:1px solid #e2e8f0;
    border-radius:26px;
    background:#ffffff;
    box-shadow:0 18px 48px rgba(15,23,42,.065);
}

.saha-detail-card h2{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 20px;
    color:#0f172a;
    font-size:29px;
    line-height:1.14;
    font-weight:900;
    letter-spacing:-.04em;
    text-align:left;
}

.saha-detail-card h2:before{
    content:"";
    width:10px;
    height:28px;
    flex:0 0 auto;
    border-radius:999px;
    background:linear-gradient(180deg,#f97316,#1d4ed8);
}

.saha-detail-card .content-body{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.saha-detail-card .content-body p{
    position:relative;
    margin:0;
    padding:18px 18px 18px 20px;
    border:1px solid #e2e8f0;
    border-left:4px solid #f97316;
    border-radius:17px;
    background:#f8fafc;
    color:#334155;
    font-size:15.5px;
    line-height:1.76;
    text-align:left;
}

.saha-detail-card .content-body p:first-child{
    grid-column:1 / -1;
    padding:20px 22px;
    border-left-color:#0f172a;
    background:#ffffff;
    color:#1e293b;
    font-size:16.5px;
    line-height:1.78;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.saha-detail-card .content-body a{
    color:#b45309;
    font-weight:850;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-thickness:1.5px;
}

.saha-detail-card .content-body a:hover{
    color:#0f172a;
}

.saha-detail-docs a{
    display:inline-flex;
    align-items:center;
    padding:12px 15px;
    border:1px solid #dbe3ef;
    border-radius:14px;
    color:#0f172a;
    font-weight:850;
    text-decoration:none;
    background:#f8fafc;
}

.saha-detail-docs a:hover{
    border-color:#bfdbfe;
    color:#1d4ed8;
    background:#eff6ff;
}

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

.saha-detail-gallery figure{
    margin:0;
    overflow:hidden;
    border:1px solid #e2e8f0;
    border-radius:18px;
    background:#f8fafc;
    box-shadow:0 12px 30px rgba(15,23,42,.055);
}

.saha-detail-gallery img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:transform .22s ease;
}

.saha-detail-gallery figure:hover img{
    transform:scale(1.035);
}

.saha-detail-faq{
    margin-top:0;
}

.saha-detail-faq .container{
    width:min(1180px, calc(100% - 32px));
    max-width:none;
}

@media (max-width: 920px){
    .saha-detail-hero{
        grid-template-columns:1fr;
        padding:22px;
        gap:22px;
    }

    .saha-detail-hero__content{
        order:1;
    }

    .saha-detail-hero__image{
        order:2;
    }

    .saha-detail-card .content-body{
        grid-template-columns:1fr;
    }

    .saha-detail-card .content-body p:first-child{
        grid-column:auto;
    }

    .saha-detail-gallery{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 560px){
    .saha-detail-page{
        padding:22px 0 30px;
    }

    .saha-detail-page > .container,
    .saha-detail-faq .container{
        width:min(100% - 24px, 1180px);
    }

    .saha-detail-hero{
        padding:16px;
        border-radius:22px;
    }

    .saha-detail-hero:before{
        left:18px;
        top:16px;
        width:58px;
    }

    .saha-detail-hero__content{
        padding-top:16px;
    }

    .saha-detail-hero__image{
        border-radius:18px;
    }

    .saha-detail-hero__content h1{
        font-size:31px;
        line-height:1.08;
    }

    .saha-detail-hero__content p{
        font-size:15px;
        line-height:1.65;
    }

    .saha-detail-card{
        padding:18px;
        border-radius:20px;
    }

    .saha-detail-card h2{
        font-size:24px;
    }

    .saha-detail-card .content-body{
        gap:12px;
    }

    .saha-detail-card .content-body p,
    .saha-detail-card .content-body p:first-child{
        padding:15px 15px 15px 17px;
        font-size:15px;
        line-height:1.7;
    }

    .saha-detail-gallery{
        grid-template-columns:1fr;
    }
}
