
.blok-ychh {
  max-width: 1200px;
  margin: 4rem auto;
  height: auto;
  background: var(--prgrey);
  display: flex;
  border-radius: 4px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  filter: drop-shadow(0 0 1px var(--black));
}
.blok-a {
  margin: 0;
  padding: 0;
  width: 30%;
  height: 100%;
  border-radius: 4px 0 0 0;
}
.blok-a-h {
  text-align: center;
  background: var(--prblack);
  height: 60px;
  width: 100%;
  padding: 1rem;
  border-radius: 4px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blok-a-h h2 {
  color: var(--orangered);
  font-family: "MyFont2";
  text-shadow: 1px 1px 2px var(--black);
  font-size: 2rem;
}
.blok-a-img {
  height: 80%;
  width: 100%;
  background: var(--pryelow);
  border-radius: 0 0 0 4px;
}
.blok-a-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 4px;
}
.blok-b {
  width: 70%;
  display: grid;
  justify-content: center;
  place-items: center;
  border-radius: 0 4px 4px 0;
  background: var(--white);
}
.blok-b-p {
  width: 100%;
  border-radius: 0 4px 0 0;
}
.blok-b-p p {
  color: var(--black);
  margin: 2rem;
  font-size: 1.3rem;
}
@media (max-width: 600px) {
  .blok-b-p p {
    margin: 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
 .blok-ychh {
  display: grid;
}
.blok-a {
  width: 100%;
  height: 30%;
}
.blok-a-img {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.blok-a-img img {
  width: 120px;
}
.blok-b {
  width: 100%;
}
}