.mdc-hero {
  width: 100%;
  margin: 16px 0;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
}

.mdc-hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.mdc-hero-left {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mdc-hero-woman {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}

.mdc-hero-right {
  flex: 1 1 auto;
}

.mdc-hero-link {
  display: inline-block;
  font-size: 22px;
  line-height: 1.2;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.07);
}

.mdc-hero-link:focus,
.mdc-hero-link:hover {
  background: rgba(0,0,0,0.10);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .mdc-hero-left,
  .mdc-hero-woman {
    width: 72px;
    height: 72px;
  }
  .mdc-hero-link {
    font-size: 18px;
  }
}
