/* Section 7: Photomontage */
.msv-photomontage {
  width: 100%;
  background: #f7f7f7;
}
.msv-photomontage-inner {
  width: calc(100% - 40px);
  padding: 60px 20px 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.msv-photomontage-card {
  background: #fff;
  border-radius: 14px;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 32px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.msv-photomontage-title {
  font-size: 1.35rem;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 400;
  color: #066;
  margin-bottom: 18px;
}
.msv-photomontage-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: flex-start;
  align-items: flex-start;
}
.msv-photomontage-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 260px;
  min-width: 0;
}
.msv-photomontage-img {
  width: 100%;
  max-height: 150px;

  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
}
.msv-photomontage-caption {
  font-size: 1rem;
  color: #066;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 900px) {
  .msv-photomontage-card {
    padding: 24px 5% 20px 5%;
  }
  .msv-photomontage-row {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .msv-photomontage-title {
    font-size: 1.2rem;
    text-align: center;
  }
  .msv-photomontage-inner {
    gap: 24px;
  }
  .msv-photomontage-card {
    padding: 16px 3% 12px 3%;
  }
  .msv-photomontage-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 12px;
  }
  .msv-photomontage-col {
    max-width: 100%;
    min-width: 0px;
  }
  .msv-photomontage-img {
    max-width: 100%;
    max-height: 80px;
    aspect-ratio: 16/9;
  }
}