@charset "utf-8";

.store-cont{
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 80%;
}

.store-list{
  display: flex;
  flex-direction: column;
}

.store-list-item{
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #000;
  width: 100%;
}

.store-list-item p{
  font-weight: bold;
}

.store-list-item p:nth-child(1){
  background-color: #EBE7D3;
  padding: 1rem;
  text-align: center;
}

.store-map{
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .store-list-item{
    grid-template-columns: 1fr 2.5fr;
  }
}

@media screen and (max-width: 960px) {
  .store-cont{
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 90%;
  }
  .store-list-item p:nth-child(2){
    font-size: 12px;
  }
}

@media screen and (max-width: 414px) {
  .store-list-item p:nth-child(1){
    background-color: #EBE7D3;
    padding: .5rem;
    text-align: center;
  }
}