.gigs-part {
  width: 100%;
  /*margin: 30px 0;*/
}

.gig-item {
  display: grid;
  grid-template-columns: 100px auto 60px;
  /*grid-template-columns: 50px 1fr 30px auto;*/
  align-items: center;
  column-gap: 25px;

  min-height: 75px;
  padding: 3px 10px 3px 20px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
/* left side: weekday + date */
.gig-date-area {
  display: grid;
  grid-template-columns: 35px auto;
  align-items: baseline;
  column-gap: 12px;
  grid-column: 1;
}

.gig-weekday {
  /*font-size: 14px;*/
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
}

.gig-date {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #d33131;
}

/* city + place */
.gig-info {
  display: grid;
  grid-column: 2;
  text-align: left;
}

.gig-city {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 5px;
  color: #d33131;
}

.gig-place {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* button on far right */
.gig-button {
  grid-column: 3;
  display: grid;
  /*display: inline-block; */

  padding: 10px 16px;
  border: 1px solid #b90000;
   border-radius: 2px; /* rounds all corners */
  text-decoration: none;

  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #a18383;
  /* background-color: #160000; */ 
  background: #161414;
}

@media (max-width: 380px) {

.gig-item {
  display: grid;
  grid-template-columns: 50px auto 60px;
  /*grid-template-columns: 50px 1fr 30px auto;*/
  align-items: center;
  column-gap: 25px;

  min-height: 75px;
  padding: 3px 10px 3px 20px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.gig-date-area {
  flex-direction: column;
  display: flex;
  align-items: baseline;
  column-gap: 12px;
  grid-column: 1;
}

.gig-weekday {
  /*font-size: 14px;*/
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
  padding-bottom: 5px;
}

.gig-date {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  color: #d33131;
}
}
