/* === Unlock Playbook Section === */
.unlock {
  background: var(--color-light-gray-blue);
  padding: 70px 40px;
}

.unlock__card {
  max-width: 1152px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.unlock__content {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unlock__heading {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
  margin: 0 0 16px;
}

.unlock__heading--orange {
  color: var(--color-orange);
}

.unlock__text {
  font-family: var(--font-nav);
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.5;
  margin: 0 0 32px;
}

.unlock__btn {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.unlock__btn:hover {
  opacity: 0.85;
}

.unlock__btn-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.unlock__image-wrap {
  width: 526px;
  flex-shrink: 0;
}

.unlock__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  .unlock {
    padding: 50px 20px;
  }

  .unlock__image-wrap {
    width: 400px;
  }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  .unlock {
    padding: 40px 16px;
  }

  .unlock__card {
    flex-direction: column;
  }

  .unlock__image-wrap {
    width: 100%;
    height: 220px;
  }

  .unlock__content {
    padding: 32px 24px;
  }

  .unlock__heading {
    font-size: 22px;
  }

  .unlock__text {
    font-size: 16px;
  }
}
