.container {
  margin-top: 2rem;
}

.innerContainer {
  width: min(92%, 1250px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.innerContainer .title_explore {
  width: 70%;
}

.innerContainer .title_explore div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  gap: 1rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  padding: 0.5rem 0;
  border-radius: 50rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--darker-second-primary-background-color);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  margin-bottom: 1.25rem;
}


.innerContainer .title_explore div i {
  font-size: 1rem;
}

.title_explore h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--primary-background-color);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.title_explore h1 span {
  font-weight: 700;
  color: var(--secondary-background-color);
  font-style: italic;
  position: relative;
}

.title_explore h1 span::after {
  content: '';
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  width: 100%;
  height: 0.3125rem;
  background: rgba(249, 115, 22, 0.2);
  z-index: -1;
}

.title_explore p {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 550px;
}

.innerContainer a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 14px 35px;
  text-decoration: none;
  font-size: 0.8125rem;
  background: #fff;
  color: var(--lighter-primary-background-color);
  border: 2px solid var(--lighter-primary-background-color);
  border-radius: 50rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0.625rem 1.875rem var(--primary-shadow-color);
}

.innerContainer a:hover {
  background: linear-gradient(135deg, var(--darker-second-primary-background-color) 0%, var(--darker-primary-background-color) 100%);
  color: #fff;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 1.25rem 3.125rem;
}

@media (max-width: 1200px) {
  .innerContainer {
    width: 90%;
  }

  .innerContainer .title_explore {
    width: 65%;
  }
}

@media (max-width: 992px) {
  .innerContainer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .innerContainer .title_explore {
    width: 100%;
  }

  .title_explore p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    margin-top: 1.5rem;
  }

  .innerContainer {
    width: 92%;
    gap: 1.5rem;
  }

  .innerContainer .title_explore div {
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .innerContainer .title_explore div i {
    font-size: 0.9rem;
  }

  .title_explore h1 {
    line-height: 1.15;
  }

  .title_explore p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .innerContainer a {
    padding: 12px 28px;
    font-size: 0.75rem;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .title_explore h1 {
    font-size: 2rem;
  }

  .title_explore p {
    font-size: 0.95rem;
  }

  .innerContainer a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .innerContainer .title_explore div {
    font-size: 0.65rem;
    letter-spacing: 0.08rem;
  }

  .title_explore h1 {
    font-size: 1.7rem;
  }

  .title_explore p {
    font-size: 0.9rem;
  }

  .innerContainer a {
    font-size: 0.7rem;
    padding: 10px 20px;
  }
}