.contactBlock {
  width: 100%;
  color: #000000;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding: 112px 64px;
  box-sizing: border-box;
}

.contactBlock__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.contactBlock__stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

/* Top two-column layout */
.contactBlock__top {
  width: 100%;
  display: flex;
  align-items: flex-end; /* matches Figma */
  justify-content: center;
  gap: 80px;
}

.contactBlock__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.contactBlock__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contactBlock__title {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}

.contactBlock__text {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.contactBlock__text p {
  margin: 0;
}

.contactBlock__text a,
.contactBlock__infoText a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contactBlock__text a:hover,
.contactBlock__infoText a:hover {
  filter: brightness(1.1);
}

/* Opening hours cards row */
.contactBlock__hours {
  display: flex;
  gap: 40px;
  width: 100%;
}

.contactBlock__hoursCard {
  width: 100%;
  min-height: 126px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 17px;
  box-sizing: border-box;
  color: #ffffff;
}

.contactBlock__hoursHead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contactBlock__hoursIcon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contactBlock__hoursIconImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contactBlock__hoursTitle {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}

.contactBlock__hoursRows {
  display: grid;
  gap: 10px;
}

.contactBlock__hoursRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.contactBlock__hoursDay {
  color: #d3d3d3;
}

.contactBlock__hoursTime {
  color: #ffffff;
  white-space: nowrap;
}

/* Right info list */
.contactBlock__right {
  width: 500px;
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0;
}

.contactBlock__infoItem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.contactBlock__infoIcon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contactBlock__infoIconImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contactBlock__infoBody {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contactBlock__infoTitle {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.contactBlock__infoText {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.contactBlock__infoText p {
  margin: 0;
}

/* Map */
.contactBlock__map {
  width: 100%;
  height: var(--contactBlock-map-h, 720px);
  overflow: hidden;
}

.contactBlock__map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .contactBlock {
    padding: 96px 40px;
  }
  .contactBlock__top {
    gap: 48px;
  }
  .contactBlock__right {
    width: 420px;
    flex-basis: 420px;
  }
}

@media (max-width: 900px) {
  .contactBlock__top {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .contactBlock__right {
    width: 100%;
    flex: 0 0 auto;
    padding: 0;
  }
  .contactBlock__hours {
    gap: 20px;
  }
  .contactBlock__hoursCard {
    width: 100%;
    max-width: 520px;
  }
  .contactBlock__map {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .contactBlock {
    padding: 72px 20px;
  }
  .contactBlock__stack {
    gap: 48px;
  }
  .contactBlock__title {
    font-size: 36px;
  }
  .contactBlock__text {
    font-size: 16px;
  }
  .contactBlock__map {
    height: 420px;
  }
  .contactBlock__hours {
    flex-wrap: wrap;
  }
}
