/* Vrouwveiliger – Methode V op de homepage */
.method-section {
  padding-top: 58px;
  padding-bottom: 48px;
}

.method-v-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.method-v-header__brand {
  min-width: 0;
}

.method-v-header__logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 0 18px;
}

.method-v-header__title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.method-v-header__title-row h2 {
  flex: 0 0 auto;
  margin: 0;
  color: var(--vv-blue, #082b57);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.method-v-header__title-row p {
  margin: 0 0 4px;
  color: var(--vv-blue, #082b57);
  font-size: 18px;
  line-height: 1.45;
}

.method-v-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  margin-bottom: 2px;
  border: 2px solid var(--vv-blue, #082b57);
  border-radius: 8px;
  color: var(--vv-blue, #082b57);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.method-v-button:hover,
.method-v-button:focus-visible {
  color: #fff;
  background: var(--vv-blue, #082b57);
  transform: translateY(-1px);
}

.method-v-visual {
  max-width: 940px;
  margin: 0 auto;
}

.method-v-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .method-section {
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .method-v-header {
    gap: 28px;
    margin-bottom: 28px;
  }

  .method-v-header__title-row {
    gap: 14px;
  }

  .method-v-header__title-row p {
    font-size: 17px;
  }

  .method-v-visual {
    max-width: 860px;
  }
}

@media (max-width: 767px) {
  .method-section {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .method-v-header {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
  }

  .method-v-header__logo {
    width: 155px;
    margin-bottom: 14px;
  }

  .method-v-header__title-row {
    display: block;
  }

  .method-v-header__title-row h2 {
    margin-bottom: 10px;
  }

  .method-v-header__title-row p {
    margin: 0;
    font-size: 16px;
  }

  .method-v-button {
    justify-self: start;
    min-height: 46px;
  }

  .method-v-visual {
    max-width: 100%;
  }
}
