.location-page-wrapper{
    max-width:1400px;
    margin:auto;
    padding:30px;
}

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

.location-hero{
    height:300px;
    background:#0d3b66;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.location-hero-overlay h1{
    color:#fff;
    font-size:48px;
    margin-bottom:10px;
    margin-top: 10px; /* Aligned for breadcrumbs spacing */
}

.location-hero-overlay p{
    color:#fff;
    font-size:18px;
}

/* =========================================
BREADCRUMBS STYLE
========================================= */

.hero-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.hero-breadcrumbs .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.hero-breadcrumbs .breadcrumb-current {
    color: #fff;
    font-weight: 600;
}
.hero-breadcrumbs a.breadcrumb-current-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.hero-breadcrumbs a.breadcrumb-current-link:hover {
    text-decoration: underline;
}

/* =========================================
MENU
========================================= */

.location-menu-wrapper{
    margin-bottom:40px;
}

.location-menu{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.location-menu a{
    background:#f5f5f5;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:0.3s;
}

.location-menu a:hover{
    background:#0d3b66;
    color:#fff;
}

/* =========================================
NEWS GRID
========================================= */

.location-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.location-news-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.location-news-card:hover{
    transform:translateY(-5px);
}

.location-news-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.location-news-content{
    padding:20px;
}

.location-news-content h3{
    font-size:20px;
    line-height:1.5;
}

.location-news-content a{
    text-decoration:none;
    color:#111;
}
/* =========================================
MATTRAVAI DIRECTORY
========================================= */

.mattravai-directory{

    width:100% !important;

    display:grid !important;

    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;

    gap:28px !important;

    align-items:start !important;

}

/* =========================================
DIRECTORY CARD
========================================= */

.directory-card{

    width:100% !important;

    min-width:0 !important;

    display:block !important;

    background:#fff;

    border-radius:22px;

    border:1px solid #ececec;

    box-shadow:0 4px 14px rgba(0,0,0,0.06);

    overflow:hidden;

    transition:0.3s;

}

.directory-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 24px rgba(0,0,0,0.08);

}

/* =========================================
PARENT BUTTON
========================================= */

.directory-parent{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    cursor:pointer;

}

/* =========================================
LEFT SIDE
========================================= */

.directory-parent-left{

    display:flex;

    align-items:center;

    gap:16px;

    min-width:0;

}

/* =========================================
ICON
========================================= */

.directory-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.directory-icon span{

    font-size:28px;

    line-height:1;

}

/* =========================================
PARENT TITLE
========================================= */

.directory-parent-title{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:17px;

    font-weight:700;

    color:#1f2937;

    line-height:1.4;

}

/* =========================================
ARROW
========================================= */

.directory-arrow{

    font-size:13px;

    transition:0.3s;

    color:#888;

}

.directory-parent.active .directory-arrow{

    transform:rotate(180deg);

}

/* =========================================
BADGE
========================================= */

.directory-badge{

    min-width:40px;

    height:40px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:13px;

    font-weight:700;

    flex-shrink:0;

}

/* =========================================
CHILDREN
========================================= */

.directory-children{

    display:none;

    padding:0 20px 20px;

    gap:12px;

}

.directory-children.active{

    display:grid;

}

/* =========================================
CHILD ITEM
========================================= */

.directory-child-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 16px;

    border-radius:12px;

    background:#f7f7f7;

    color:#003366;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;

}

.directory-child-item:hover{

    background:#003366;

    color:#fff;

}

/* =========================================
SMALL BADGE
========================================= */

.directory-badge.small{

    min-width:28px;

    height:28px;

    font-size:11px;

    padding:0;

    background:#D22B2B !important;

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

.location-news-grid{

    grid-template-columns:repeat(2,1fr);

}

.mattravai-directory{

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

}

}

/* =========================================
MOBILE
========================================= */

@media(max-width:767px){

.location-news-grid{

    grid-template-columns:1fr;

}

.location-hero-overlay h1{

    font-size:32px;

}

.mattravai-directory{

    grid-template-columns:1fr !important;

}

.directory-parent{

    padding:18px;

}

.directory-icon{

    width:50px;

    height:50px;

}

.directory-icon span{

    font-size:24px;

}

.directory-parent-title{

    font-size:16px;

}

.directory-badge{

    min-width:34px;

    height:34px;

    font-size:12px;

}

}