@import "business.css";

.consult {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery {
  background-color: #ffffff;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 32px;
  grid-column-gap: 10px;
}

.gallery__card {
  color: #59595C;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery__card img {
  width: 100%;
}

.mice {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.mice__title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-smtown);
  line-height: initial;
  text-align: center;
  padding: 40px 0 24px 0;
}

.mice__title > small {
  font-size: 0.8em;
  font-weight: 400;
}

.mice__card {
  display: grid;
  grid-template-columns: 680px 1fr;
  padding: 20px 0;
}

.mice__card:nth-of-type(odd) {
  grid-template-columns: 1fr 680px;
}

.mice__card:nth-of-type(odd) .mice__image {
  order: 2;
}

.mice__card:nth-of-type(odd) .mice__info {
  order: 1;
}

.mice__image {
  aspect-ratio: 680 / 320;
}

.mice__image img {
  width: 100%;
}

.mice__info {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap:40px;
}

.mice__card:nth-of-type(odd) .mice__info {
  text-align: left;
  padding-left: 0;
}

.mice__summary,
.mice__event {
  color: #7B7B7B;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mice__summary strong,
.mice__event strong {
  color: #2E2D2D;
  font-size: 24px;
}