  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 3rem 1.25rem;
    box-sizing: border-box;
  }
  
  .modal-content {
    position: relative;
    background-color: #fff7db;
    border-radius: 1.6px;
    max-width: 56rem;
    margin: auto;
    padding: 0;
    overflow: hidden;
  }
  
  .close-button {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #282626;
    cursor: pointer;
    z-index: 10;
  }
  
  .modal-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .modal-image {
    flex: 1 1 40%;
    min-width: 18.8rem;
    max-height: 100%;
  }
  
  .modal-info {
    flex: 1 1 60%;
    padding: 2.5rem;
    box-sizing: border-box;
  }
  
  .modal-info h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .modal-info .location {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .modal-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .modal-info form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  
  .modal-info input[type="email"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 0.1rem solid #cce;
    border-radius: 1rem;
  }
  
  .modal-info button {
    background-color: #66c0d3;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    box-shadow: 0 0.4rem 0.375rem rgba(0,0,0,0.1);
    transition: 1s ease;
  }
  
  .modal-info button:hover {
    background-color: #56a9bd;
  }
  