.bamboo-wrapper {
  display: grid;
  gap: 2rem;
}

.bamboo-panel {
  position: relative;
  border: 1px solid var(--primary-400);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.bamboo-panel.open {
  background: var(--primary-input-gradient);
}

.bamboo-panel.open .bamboo-button {
  color: var(--black);
}

.bamboo-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 100;
}

.bamboo-panel .bamboo-icon.minus-icon {
  opacity: 0;
}

.bamboo-panel.open .bamboo-icon.minus-icon {
  opacity: 1;
}

.bamboo-panel.open .bamboo-icon.plus-icon {
  opacity: 0;
}

.bamboo-panel-copy-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  margin-top: 0;
  max-width: 16.5625rem;
}

.bamboo-panel.open .bamboo-panel-copy-wrapper {
  height: 100px;
  margin-top: 0.5rem;
}

.bamboo-panel-copy {
  color: var(--gray-500);
  margin-bottom: 0;
}

.bamboo-panel.open .bamboo-panel-copy {
  color: var(--gray-900);
}

@media (min-width: 48rem) {
  .grid-container.bamboo {
    grid-template-columns: 1fr;
  }
  
  .bamboo-panel-copy-wrapper {
    max-width: 36.625rem;
  }
  
  .bamboo-button {
    padding: 1.5rem 2rem;
  }
  
  .bamboo-icon {
    right: 2rem;
  }
}

@media (min-width: 80rem) {
  .grid-container.bamboo {
    grid-template-columns: 30.5rem 1fr;
  }
  
  .intro-wrapper.bamboo {
    margin-block: 0 auto;
	position: sticky;
	top: 160px;
  }
  
  .bamboo-panel-copy-wrapper {
    max-width: 34.75rem;
  }
}

.BambooHR-ATS-Department-List, .BambooHR-ATS-Jobs-List {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.BambooHR-ATS-board h2 {
  display: none;
}

.BambooHR-ATS-Location {
	display: none;
}

.BambooHR-ATS-Department-Item, .BambooHR-ATS-Jobs-Item {
  list-style: none;
}

.BambooHR-ATS-Department-Header {
  display: none;
}

.BambooHR-ATS-Jobs-Item a {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--primary-400);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.5555;
  text-decoration: none;
  width: 100%;
  display: block;
  transition: color 200ms ease-in-out, background 400ms ease-in-out;
}

.BambooHR-ATS-Jobs-Item a:after {
  content: '';
  position: absolute;
	width: 15px;
	height: 14px;
	background-image: url(//22036085.fs1.hubspotusercontent-na1.net/hubfs/22036085/raw_assets/public/Glance/images/module-icons/arrow-right.svg);
	top: 50%;
	transform: translateY(-50%);
	right: 32px;
}

.BambooHR-ATS-Jobs-Item a:hover {
  color: var(--black);
  background: var(--primary-input-gradient);
}

.subheading.bamboo {
  color: var(--white);
  font-size: var(--text-lg);
}

