.subcomponent-2 {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.subcomponent-2 .main-img {
  width: 100%;
  height: 42.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
}
.subcomponent-2 .bottom-images {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.subcomponent-2 .bottom-images > img {
  flex: 1;
  min-width: 0;
  height: 14.5rem;
  border-radius: 0.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@container (max-width: 60rem) {
  .subcomponent-2 .main-img {
    height: 30rem;
    border-radius: 0.25rem;
  }
  .subcomponent-2 .bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .subcomponent-2 .bottom-images > img {
    width: 100%;
    height: 19rem;
  }
}
@container (max-width: 30rem) {
  .subcomponent-2 .main-img {
    height: 20rem;
  }
  .subcomponent-2 .bottom-images {
    gap: 0.75rem;
  }
  .subcomponent-2 .bottom-images > img {
    width: 100%;
    height: 8rem;
  }
}
