/* Suburbs List Styles */
    .entry-content .suburbsList.other {
        margin-top: 100px !important;
    }

    .suburbsList.other ul {
        grid-template-columns: repeat(1, minmax(220px, 1fr));
    }

    .suburbsList ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 10px;
        text-align: left;
        margin-top: 7%;
        margin-left: 12%;
        color: var(--BRAND-GREY, #262626);
        font-family: Helvetica;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 150% */
        list-style-type: none;
        padding: 0 !important;
    }

    .suburbsList li {
        margin: 0;
    }

    .suburbsList li {
        margin: 0 !important;
    }

    .suburbsList h5 {
        margin: 0px;
        font-weight: 400;
        font-size: 22px;
    }

    .suburbsList h5::before,
    .suburbsList a::before {
        content: none !important;
    }

    .suburbsList a {
        text-decoration: none;
        color: #333;
    }

    .suburbsList a:hover {
        text-decoration: underline;
    }

    .suburbsListGroup ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .suburbsListGroup li {
        text-align: left;
        width:max-content;
        margin-bottom: 20px; /* Space between items */
    }

    .suburbsListGroup a {
        padding: 0 0 0 20px;
        background: url(../img/location-dot-solid.svg) no-repeat left 2px;
        font-size: 17px;
        line-height: 22px;
        display: inline-block;
        text-decoration: none;  
    }

    .suburbsListGroup a:hover {
        text-decoration: underline;
    }
    
    .suburbsListGroup {
        display: none; /* Hide both lists by default */
        grid-template-columns: repeat(3, 1fr); /* Create 3 equal-width columns */
        gap: 10%; /* Space between columns */
                    
    }

    .information.dlWrapper .suburbsListGroup {
        gap: 15%;
	}

    @media (max-width: 768px){
        .suburbsListGroup{
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }
    }

    @media screen and (max-width: 1024px) {
        .information.dlWrapper .suburbsListGroup {
            gap: 40px;
        }
    }

/* Container Styles */
    #tab {
        display: flex;
        width: 100%;
        margin-bottom: 40px;
        margin-top: 0;
        margin-left: 0;
    }

    /* Left Tab Styles */
    .tabLeft {
        border-radius: 6px 0 0 6px;
        background: #fff;
        color: var(--brandCol-1);
        width: 27%;
        padding-right: 40px;  
    }

    .tabLeft .tab_title, .tabRight .tab_title {
        font-size: 24px;
        font-weight: 700;
        line-height: 30px;
        border-bottom: 1px solid #dadada;
        margin-bottom: 30px !important;
        padding-bottom: 20px;
    }

    /* Right Tab Styles */
    .tabRight {
        border-radius: 0 6px 6px 0;
        background: #fff;
        width: 73%;
        padding-bottom: 50px;

    }

    .tabRight h5 {
        color: var(--brandCol-1);
        border-bottom: 1px solid #dadada;
        margin-bottom: 30px;
        padding-bottom: 20px;
        width:120%;
        color: #7C7C7C;
    }

    .tabRight h5 a:hover {
        color: #000;
    }

    .tabRight .suburbsListGroup.suburbsList {
        gap: 20px !important;
    }

    .tabRight .suburbsListGroup.suburbsList li a {
        font-weight: 400 !important;
    }

    /* Navigation Styles */
    .tabLeft ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tabLeft li {
        margin-bottom: 10px; /* Space between items */
    }

    .tabLeft a {
        color: var(--brandCol-1);
        text-decoration: none;
        display: block; /* Make links block-level for full-width clickable area */
        padding: 6px; /* Adjust padding as needed */
        position: relative;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        
    }

    .tabLeft a:before {
        display: block;
        width: 8px;
        height: 18px;
        background-size: 100%;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background-repeat: no-repeat;   
    }

    .tabLeft a:after {
        content: "";
        display: block;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.60);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .tabLeft a.active:after {
        border-color: transparent;
    }

    .tabLeft a.active {
        border-radius: 0;
        background: var(--maincolor);
        color: #fff;
        border-radius: 4px;
    }

    .tabLeft a:not(.active):hover {
        color: var(--maincolor);
    }

    .tabLeft a:hover:before {
    }

    .tabLeft .active:hover {
    }
    
    
    
            /* Navigation Styles */

    .tabRight .suburbs-cont {
        display: none;
    }

    .tabRight .suburbs-cont.active {
        display: block;
    }

    .tabRight ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tabRight li {
        margin-bottom: 10px; /* Space between items */
        width:100%;
    }

    /* Responsive Styles */
    @media (max-width: 767px) {
        #tab {
            flex-direction: column; /* Stack tabs vertically on mobile */
            margin-left: 0;
            gap:  40px;
        }

        .tabLeft, .tabRight {
            width: 100%; /* Full width on mobile */
        }

        .tabLeft {
            border-radius: 0;
            padding-right: 0;
        }

        .tabRight {
            border-radius: 0;
        }
    }
    
    #suburbsHeading {
        text-decoration: none; /* Remove underline from heading link */
        color: #7C7C7C; /* Default font color */
    }
