/**
 * 搬家方案頁面樣式
 *
 * @package mytheme
 */

.plan-page {
  color: #53bf6f;
}

/* proposal */
.moving-proposal-container-parent {
  width: 100%;
  position: relative;
  background-color: #fff;
  text-align: center;
  font-size: 30px;
  color: #5a8164;
  font-family: Inter;
}
.moving-proposal-container {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  gap: 76px 120px;
  margin: 48px auto 136px;
}
.proposal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.proposal-des-wrapper {
  max-width: 616px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.proposal-title-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.proposal-title {
  align-self: stretch;
  position: relative;
  line-height: 42px;
  font-weight: 600;
}
.proposal-sub {
  align-self: stretch;
  position: relative;
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  color: #53bf6f;
}
.proposal-hr-line {
  width: 100%;
  height: 3px;
  position: relative;
  border-top: 3px dashed #000;
  box-sizing: border-box;
}
.proposal-text {
  align-self: stretch;
  position: relative;
  color: #000;
}
.proposal-img-wrapper {
  width: 616px;
  height: 378px;
  border-radius: 4px 4px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  font-size: 24px;
  color: #fff;
}
.proposal-img-link {
  display: block;
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.proposal-img-link:hover .proposal-img {
  filter: brightness(1.1);
}
.proposal-img {
  transition: filter 0.3s ease;
}
.proposal-btn {
  width: 100%;
  background-color: #53bf6f;
  display: flex;
  align-items: center;
  padding: 4px 99.5px 4px 226px;
  box-sizing: border-box;
  gap: 96.8px;
  transition: all 0.3s ease;
}

.proposal-btn:hover {
  filter: brightness(1.1);
}

.proposal-btn:hover .proposal-btn-text {
  transform: scale(1.01);
}

.proposal-btn:hover .proposal-right-arrow-icon {
  transform: translateX(2px);
}

.proposal-btn-text {
  width: 162.7px;
  position: relative;
  line-height: 56.49px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proposal-right-arrow-icon {
  position: relative;
  max-height: 100%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 480px) {
  .moving-proposal-container {
    margin: 0 auto 106px;
    gap: 40px;
  }
  .proposal-title-wrapper {
    gap: 8px;
  }
  .proposal-des-wrapper {
    gap: 12px;
  }
  .proposal-item {
    gap: 7px;
  }
  .proposal-title {
    font-size: 1rem !important;
    line-height: normal;
  }
  .proposal-sub {
    font-size: 12px !important;
    line-height: normal;
  }
  .proposal-text {
    font-size: 10px !important;
  }

  .proposal-img-wrapper {
    width: auto;
    height: auto;
  }

  .proposal-btn {
    padding: 0 0 0 136px;
    gap: 56px;
    justify-content: flex-start;
    height: 40px;
  }

  .proposal-btn-text {
    line-height: normal;
    width: auto;
    font-size: 12px;
  }

  .proposal-right-arrow-icon {
    width: 32px;
  }
}
