.weather-section {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .tile-list {
    display: flex;
    flex-shrink: 0;
    padding: 0 16px; /* 좌우 패딩 추가 */
  }
  
  .tile {
    flex: 1;
    margin: 0 8px; /* 좌우 마진 추가 */
  }
  
  .flex-grow-1 {
    flex-grow: 1;
    display: flex;
  }
  
  #responsive-div {
    flex: 1;
    background-color: #6c757d;
  }
  