/* =============================== */
/*         Location Section        */
/* =============================== */

.location-section {
    background-color: var(--bg-color);
    color: var(--primary-color);
  }
  
  .location-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .location-section h1 {
    margin: 0;
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
    font-size: calc(var(--headline) * var(--cfactor-f));
    font-weight: normal;
    text-align: center;
  }
  
  .location-section .location-description {
    margin: 0;
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
    width: calc(var(--cw-text) * var(--cfactor));
    text-align: left;
    font-size: calc(var(--text1) * var(--cfactor-f));
    line-height: calc(var(--text1-lh) * var(--cfactor-f) * 1.25);
  }

  .location-description p {
    margin: 0;
  }
  
  .location-section .location-element-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(var(--element-gap) * var(--cfactor));
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
  }
  
  .location-section .location-element {
    width: calc(var(--about-img-w) * var(--cfactor));
    height: auto;
    background-color: var(--image-bg, #e0e0e0);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 24px var(--shadow-color), 0 6px 10px rgba(0, 0, 0, 0.1);
  }
  
  .location-section .location-element img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  @media screen and (max-width: 768px) {    
    .location-section .content-wrapper {
      width: 90%;
      padding: 0;
    }

    .location-section .location-element {
      width: 100%;
    }

    .location-section .location-element-grid {
      flex-direction: column;
      gap: 40px;
    }

    .location-section .location-description {
      width: 90%;
    }
  }