.watch11 {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.watch11__image {
  position: relative;
  background-color: #fff;
  display: flex;
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 8vw, 11rem);
}

.watch11__imageText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 316px;
  padding-block: 6rem 2.5rem;
  text-align: center;
}

.watch11__subtitle {
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.1;
  margin-block: .75em 1em; 
}

.watch11__image--pc {
  display: block;
  max-height: 400px;
  width: auto;
}

.watch11__claim {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.1;
  margin-block: auto 0;
}

.watch11__textWrap {
  background-color: #f7f7f7;
  display: flex;
  padding: 1.5rem;
}

.watch11__text {
  color: #000;
  font-size: 1.5rem;
  text-align: center;
  margin: auto;
  text-transform: none;
}

.watch11__price {
  font-size: 1.938rem;
  font-weight: 500;
  line-height: 1;
  margin-block: 0.6em 0.8em;
}

.watch11__button {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 500;
  padding: 0.25em 1.7em;
  border: 3px solid #000;
  border-radius: 1.75rem;
  color: #000;
  transition: all 0.2s ease-in;
}

.watch11__button:hover,
.watch11__button:focus-visible {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.watch11__price span {
  font-size: 3.438rem;
  font-weight: 600;
}

@media (max-width: 1050px) {
  .watch11__imageText {
    padding-top: 3rem;
  }

  .watch11__subtitle {
    font-size: 1.75rem;
  }
  .watch11__price {
    font-size: 1.5rem;
  }

  .watch11__price span {
    font-size: 2.5rem;
  }

  .watch11__button {
    font-size: 1.25rem;
  }
}

@media (max-width: 860px) {
  .watch11 {
    grid-template-columns: 1fr;
    padding-inline-end: 0;
    margin-block-end: 2rem;
  }

  .watch11 .dropsLogo {
    transform: scale(0.35);
  }
}

@media (min-width: 519px) {
  .watch11__image--mobile {
    display: none;
  }
}

@media (max-width: 520px) {
  .watch11__image {
    flex-direction: column;
    gap: 1rem;
    padding-top: 3rem;
    padding: 0 0 4rem;
    position: relative;
  }

  .watch11__imageText {
    padding: 0
  }

  .watch11__claim {
    font-size: .75rem;
    position: absolute;
    width: 30ch;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
  }

  .watch11__image--pc {
    display: none;
  }

  .watch11__image--mobile {
    display: block;
  }

  .watch11__text {
    font-size: 1.125rem;
  }
  .watch11__price {
    font-size: 1.125rem;
  }

  .watch11__price span {
    font-size: 1.75rem;
  }
}