/*
==========
Styles for question.
==========
*/

.purchase-guide {
  background: var(--lowgrey-color);
}

.purchase-guide__container {
  max-width: 1100px;
  margin: auto;
}

.purchase-guide__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--redwine-color);
  padding: 1em;
}

.purchase-guide__subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.purchase-guide__steps {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em;
}

.purchase-guide__step {
  width: 350px;
  height: 200px;
  background: var(--white-color);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--grey-color-transparent);
  transition: all .3s ease;
  cursor: pointer;
}

.purchase-guide__step:hover {
  transform: translateY(-5px);
}

.purchase-guide__step--active {
  border: 2px solid var(--redwine-color);
  box-shadow: 0 0px 20px var(--dark-color-transparent);
}

.purchase-guide__step-number {
  width: 50px;
  height: 50px;
  background: var(--redwine-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 25px;
}

.purchase-guide__step-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--redwine-color);
}

.purchase-guide__step-description {
  font-size: 0.95rem;
  color: var(--dark-color);
  line-height: 1.5;
}

@media (max-width:700px){
    .purchase-guide__step {
        width: 100%;
        height: auto;
        background: var(--white-color);
        border-radius: 10px;
        padding: 20px;
        border: 1px solid var(--grey-color-transparent);
        transition: all .3s ease;
        cursor: pointer;
    }
}
