.junction-thanks-wrapper {
  min-height: 100vh !important;
  padding: 40px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  background: none !important;
  background-color: transparent !important;
}

.junction-thanks {
  max-width: 600px !important;
  width: 100% !important;
  text-align: center !important;
  color: #2C2416 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.jt-image-container {
  margin-top: 0 !important;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jt-image-placeholder {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.junction-thanks .jt-title {
  font-size: 32px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
  color: #2C2416 !important;
  letter-spacing: -0.02em !important;
}

.junction-thanks .jt-datetime {
  font-size: 18px !important;
  margin: 0 0 32px 0 !important;
  color: #5C4A37 !important;
  font-weight: 500 !important;
}

.jt-content {
  background: #E5D9CC !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 16px !important;
  padding: 32px 24px !important;
  margin-bottom: 32px !important;
  border: 1px solid rgba(214, 180, 150, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.junction-thanks .jt-p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin: 0 0 16px 0 !important;
  color: #3D3325 !important;
}

.junction-thanks .jt-quote {
  margin-top: 24px !important;
  font-size: 16px !important;
  font-style: italic !important;
  color: #5C4A37 !important;
  line-height: 1.7 !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(214, 180, 150, 0.4) !important;
}

.jt-calendar-button-container {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.jt-calendar-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8B9A7A;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 154, 122, 0.3);
  border: none;
  cursor: pointer;
}

.jt-calendar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 154, 122, 0.4);
  background: #7A8870;
}

.jt-calendar-button:active {
  transform: translateY(0);
}

.jt-calendar-button svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .junction-thanks-wrapper {
    padding: 32px 16px;
  }

  .junction-thanks .jt-title {
    font-size: 28px;
  }

  .jt-content {
    padding: 24px 20px;
  }

  .junction-thanks .jt-p {
    font-size: 16px;
  }

  .jt-image-placeholder {
    width: 150px;
    height: 150px;
  }

  .jt-calendar-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .junction-thanks-wrapper {
    padding: 24px 12px;
  }

  .junction-thanks .jt-title {
    font-size: 24px;
  }

  .jt-content {
    padding: 20px 16px;
  }

  .junction-thanks .jt-datetime {
    font-size: 16px;
  }

  .junction-thanks .jt-p {
    font-size: 15px;
  }

  .junction-thanks .jt-quote {
    font-size: 14px;
  }

  .jt-image-placeholder {
    width: 120px;
    height: 120px;
  }

  .jt-calendar-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}


