/* Google Preferred Sources CTA.
   Loaded only on /blog/ pages (blog/landing.php, blog/articles_and_tips/article.php)
   via blog/google-preferred-source.php. All rules are scoped to .google-preferred-source. */

.google-preferred-source {
  width: 100%;
  box-sizing: border-box;
  margin: 40px 0;
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--light-blue, #e9f4ff);
}

.google-preferred-source__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.google-preferred-source__text {
  flex: 1 1 320px;
  min-width: 0;
}

.google-preferred-source__title {
  color: var(--Black, #212427);
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin: 0 0 6px;
}

.google-preferred-source__desc {
  color: var(--Black, #212427);
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.google-preferred-source__action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.google-preferred-source-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid #dadce0;
  background: var(--White, #fff);
  color: #3c4043;
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
}

.google-preferred-source-btn:hover {
  background: #f8f9fa;
  border-color: #c6c6c6;
  color: #202124;
}

.google-preferred-source-btn__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 767px) {
  .google-preferred-source {
    margin-top: 30px;
    padding: 20px 16px;
  }

  .google-preferred-source__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-preferred-source__text {
    flex-basis: auto;
  }

  .google-preferred-source__action {
    width: 100%;
  }

  .google-preferred-source-btn {
    max-width: 100%;
    white-space: normal;
    height: auto;
    min-height: 40px;
    padding: 8px 16px;
  }
}
