/*=========================================================================
SECTION 02
BODY FOUNDATION
=========================================================================*/

.guide-page{
    background:#ffffff;
    overflow:hidden;
}

/*=========================================================================
SKIP LINK
=========================================================================*/

.skip-link{
    position:absolute;
    left:-9999px;
    top:0;
    background:#0B4F9C;
    color:#fff;
    padding:12px 18px;
    border-radius:0 0 6px 6px;
    font-weight:600;
    text-decoration:none;
    z-index:9999;
}

.skip-link:focus{
    left:20px;
    top:0;
}

/*=========================================================================
BREADCRUMB
=========================================================================*/

.breadcrumb-nav{
    background:#F7F9FC;
    border-top:1px solid #e7edf5;
    border-bottom:1px solid #e7edf5;
}

.breadcrumb-list{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    list-style:none;
    margin:0;
    padding:12px 0;
    font-size:.92rem;
}

.breadcrumb-list li{
    display:flex;
    align-items:center;
}

.breadcrumb-list li+li::before{
    content:"›";
    margin-right:8px;
    color:#7b8794;
}

.breadcrumb-list a{
    color:#0B4F9C;
    text-decoration:none;
}

.breadcrumb-list a:hover{
    text-decoration:underline;
}

.breadcrumb-list .active{
    color:#555;
    font-weight:600;
}

/*=========================================================================
SECTION 03
GUIDE HERO
=========================================================================*/

.guide-hero{
    padding:48px 0 32px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.guide-hero-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:48px;
    align-items:center;
}

.guide-label{
    display:inline-block;
    padding:7px 14px;
    margin-bottom:18px;
    border-radius:40px;
    background:#EAF4FF;
    color:#0B4F9C;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.guide-hero h1{
    margin:0 0 12px;
    font-size:2.55rem;
    line-height:1.15;
}

.guide-subtitle{
    margin:0 0 22px;
    font-size:1.25rem;
    font-weight:600;
    color:#2E9E44;
}

.guide-intro{
    margin:0;
    max-width:720px;
    line-height:1.8;
    color:#555;
}

/*=========================================================================
HERO BUTTONS
=========================================================================*/

.guide-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:30px 0;
}

/*=========================================================================
HIGHLIGHTS
=========================================================================*/

.guide-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.guide-highlight{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:#fff;
    border:1px solid #E7EDF5;
    border-radius:8px;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.guide-highlight i{
    color:#2E9E44;
    font-size:1rem;
}

/*=========================================================================
HERO IMAGE
=========================================================================*/

.guide-hero-image{
    text-align:center;
}

.guide-hero-image img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:auto;
}

/*=========================================================================
FEATURE STRIP
=========================================================================*/

.guide-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:46px;
}

.guide-feature{
    padding:28px;
    background:#fff;
    border:1px solid #E6ECF3;
    border-radius:14px;
    box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.guide-feature-primary{
    border-top:4px solid #2E9E44;
}

.guide-feature h3{
    margin:0 0 12px;
    font-size:1.18rem;
}

.guide-feature p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/*=========================================================================
RESPONSIVE
=========================================================================*/

@media (max-width:992px){

.guide-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
}

.guide-feature-grid{
    grid-template-columns:1fr;
}

.guide-hero{
    padding:40px 0 28px;
}

}

@media (max-width:768px){

.guide-hero h1{
    font-size:2rem;
}

.guide-subtitle{
    font-size:1.1rem;
}

.guide-hero-actions{
    flex-direction:column;
}

.guide-highlight{
    width:100%;
}

}

/*=========================================================================
SECTION 02 END
BODY FOUNDATION
=========================================================================*/

