#homeTopicRequestCard {
  box-sizing: border-box;
  width: 100%;
}

#homeTopicRequestCard > .home-topic-request-toggle {
  --home-topic-request-art-image: url("home-topic-request-desire-soul.jpg");
  --home-topic-request-art-position: center 20%;
  --home-topic-request-art-size: cover;
  --home-topic-request-title-panel-left: 32px;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  align-content: start;
  justify-content: stretch;
  gap: 14px;
  min-height: 136px;
  padding: 16px 18px;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  color: #1a5c3d;
  background:
    linear-gradient(180deg, rgba(245, 233, 214, 0.28) 0%, rgba(245, 233, 214, 0.04) 100%),
    linear-gradient(90deg, rgba(255, 252, 245, 0.96) 0%, rgba(255, 251, 245, 0.84) 44%, rgba(255, 251, 245, 0.18) 100%);
}

#homeTopicRequestCard > .home-topic-request-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--home-topic-request-art-image);
  background-position: var(--home-topic-request-art-position);
  background-size: var(--home-topic-request-art-size);
  background-repeat: no-repeat;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto;
}

#homeTopicRequestCard .home-topic-request-title[hidden],
#homeTopicRequestCard .mission-topic-request-help[hidden] {
  display: none !important;
}

body.native-app.home-topic-request-active #homeTopicRequestCard,
body.compact-layout.home-topic-request-active #homeTopicRequestCard {
  left: 0;
  right: 0;
  width: 100%;
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle {
  background:
    linear-gradient(180deg, rgba(245, 233, 214, 0.28) 0%, rgba(245, 233, 214, 0.04) 100%),
    linear-gradient(90deg, rgba(255, 252, 245, 0.96) 0%, rgba(255, 251, 245, 0.84) 44%, rgba(255, 251, 245, 0.18) 100%);
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-toggle-copy,
#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-toggle-side {
  backdrop-filter: none;
}

#homeTopicRequestCard > .home-topic-request-toggle > * {
  position: relative;
  z-index: 1;
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-toggle-copy {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: max-content;
  max-width: calc(100% - 18px);
  padding: 1px 18px 4px var(--home-topic-request-title-panel-left);
  margin: -1px -18px -4px calc(-1 * var(--home-topic-request-title-panel-left));
  isolation: isolate;
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-toggle-copy::before {
  content: "";
  position: absolute;
  inset: 0 -18px 0 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(
    90deg,
    rgba(255, 251, 241, 0.94) 0%,
    rgba(255, 249, 238, 0.82) 44%,
    rgba(255, 249, 238, 0.62) 64%,
    rgba(255, 249, 238, 0) 100%
  );
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-eyebrow,
#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-title:not(:empty) {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  max-width: 100%;
}

#homeTopicRequestCard:not(.is-open) > .home-topic-request-toggle .home-topic-request-eyebrow {
  margin: 0;
  font-size: clamp(18px, 4.6vw, 22px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
  color: #4b3310;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34),
    0 8px 18px rgba(255, 244, 220, 0.42);
}

#homeTopicRequestCard > .home-topic-request-toggle .home-topic-request-toggle-side {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 10px;
}

#homeTopicRequestCard > .home-topic-request-toggle .mission-fold-chevron {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-right: 2px solid rgba(113, 84, 37, 0.72);
  border-bottom: 2px solid rgba(113, 84, 37, 0.72);
  transform: rotate(45deg);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

#homeTopicRequestCard.is-open > .home-topic-request-toggle .mission-fold-chevron {
  transform: rotate(225deg);
}

@media (max-width: 640px) {
  #homeTopicRequestCard > .home-topic-request-toggle {
    min-height: 132px;
    padding: 12px;
  }
}

@media (max-width: 430px) {
  #homeTopicRequestCard > .home-topic-request-toggle {
    min-height: 144px;
  }
}
