  /* =====================================================
           MAIN CONTAINER
        ===================================================== */
      .four-container {
        width: 100%;
        display: grid;
        /*
                Left = 35%
                Right = 65%
            */
        grid-template-columns:
          35% 65%;
        /*
                VERY IMPORTANT

                This prevents the right image
                from stretching when accordion
                becomes taller.
            */
        align-items: start;
        background: #D1BBA7;
        overflow: hidden;
      }

      /* =====================================================
           LEFT SIDE
        ===================================================== */
      .four-content {
        position: relative;
        width: 100%;
        min-width: 0;
        min-height: 595px;
        padding:
          0px 55px 20px;
        background: #D1BBA7;
        display: flex;
        flex-direction: column;
      }

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

      .location-icon img {
        width: 30px;
        height: auto;
      }

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

      /* =====================================================
           ACCORDION
        ===================================================== */
      .custom-accordion {
        --bs-accordion-bg: transparent;
        --bs-accordion-border-color: transparent;
        --bs-accordion-btn-bg: transparent;
        --bs-accordion-active-bg: transparent;
        --bs-accordion-active-color: #704d39;
        --bs-accordion-btn-focus-box-shadow: none;
        width: 100%;
      }

      .custom-accordion .accordion-item {
        border: 0;
        border-radius: 0;
        background: transparent;
      }

      /* =====================================================
           ACCORDION BUTTON
        ===================================================== */
      .custom-accordion .accordion-button {
        position: relative;
        padding:
          7px 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        color: #73513d;
        font-size: 13pt;
        font-weight: 700;
      }

      .custom-accordion .accordion-button:not(.collapsed) {
        background: transparent;
        color: #73513d;
        box-shadow: none;
      }

      .custom-accordion .accordion-button:focus {
        box-shadow: none;
      }

      /* Remove Bootstrap default arrow */
      .custom-accordion .accordion-button::after {
        display: none;
      }

      /* =====================================================
           ACCORDION HEADING
        ===================================================== */
      .accordion-heading {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
      }

      .accordion-heading img {
        width: 22px;
        height: 22px;
        margin-right: 9px;
        object-fit: contain;
      }

      .accordion-heading span {
        color: #73513d;
      }

      /* =====================================================
           PLUS / MINUS
        ===================================================== */
      .accordion-heading::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform:
          translateY(-50%);
        color: #73513d;
        font-size: 16px;
        font-weight: 700;
      }

      .accordion-button:not(.collapsed) .accordion-heading::after {
        content: "−";
      }

      /* =====================================================
           ACCORDION BODY
        ===================================================== */
      .custom-accordion .accordion-body {
            padding: 0px 0 0px 48px;
        color: #73513d;
        font-size: 11px;
      }

      .location-content strong {
        display: block;
       
        font-size: 11px;
      }

      /* =====================================================
           LOCATION ROW
        ===================================================== */
      .location-row {
        display: grid;
        grid-template-columns:
          42px minmax(0, 1fr);
        gap: 6px;
        margin-bottom: 3px;
        line-height: 1.3;
      }

      .distance {
        font-weight: 600;
      }

      /* =====================================================
           VIEW ALL
        ===================================================== */
      .view-all-wrapper {
        margin-top: auto;
        padding-top: 20px;
        display: flex;
        justify-content: flex-end;
      }

      .location-view-all {
        min-width: 112px;
        padding:
          9px 20px;
        border: 0;
        border-radius: 7px;
        background: #79543e;
        color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition:
          background-color 0.25s ease,
          transform 0.25s ease;
      }

      .location-view-all:hover {
        background: #654531;
        transform:
          translateY(-1px);
      }

      .location-view-all:active {
        transform:
          scale(0.97);
      }

      /* =====================================================
           RIGHT SIDE
        ===================================================== */
      .four-maps {
    position: relative;

    width: 100%;
    min-width: 0;

    /*
        IMPORTANT:
        stretch the RIGHT AREA,
        but NOT the actual image.
    */
    align-self: stretch;

    /*
        Remove old fixed aspect ratio here.
    */
    aspect-ratio: auto;

    overflow: hidden;

    /*
        Match the background colour of your map.
        This removes the brown bottom gap.
    */
    background: #f6d9cc;
}

      /* =====================================================
           MAP IMAGE
        ===================================================== */
      .location-map-image {
        display: block;
        width: 100%;
        height: 100%;
        /*
                contain = entire image visible
                without cropping
            */
        object-fit: contain;
        object-position: center;
        opacity: 1;
        transition:
          opacity 0.4s ease-in-out;
      }

      /* =====================================================
           FADE EFFECT
        ===================================================== */
      .location-map-image.location-image-hide {
        opacity: 0;
      }

      /* =====================================================
           TABLET
        ===================================================== */
      @media (max-width: 991.98px) {
        .four-container {
          grid-template-columns:
            42% 58%;
        }

        .four-content {
          padding:
            35px 30px 20px;
        }

        .location-title {
          font-size: 29px;
        }
      }

      /* =====================================================
           MOBILE
        ===================================================== */
      @media (max-width: 767.98px) {
        .four-container {
          display: flex;
          flex-direction: column;
        }

        /*
                MAP FIRST
            */
        .four-maps {
          order: 1;
          width: 100%;
          align-self: auto;
       
        }

        /*
                CONTENT AFTER MAP
            */
        .four-content {
          order: 2;
          width: 100%;
          min-height: auto;
          padding:
            0px 24px 30px;
        }

        .location-map-image {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }

        .location-title {
          font-size: 28px;
          margin-bottom: 20px;
        }

        .custom-accordion .accordion-button {
          min-height: 44px;
          padding:
            8px 0;
          font-size: 14px;
        }

        .accordion-heading img {
          width: 24px;
          height: 24px;
        }

        .custom-accordion .accordion-body {
          padding-left: 33px;
          font-size: 12px;
        }

        .location-row {
          grid-template-columns:
            45px minmax(0, 1fr);
        }

        .view-all-wrapper {
          margin-top: 20px;
          justify-content: center;
        }

        .location-view-all {
          min-width: 150px;
          min-height: 44px;
        }
      }