/* COLUMNS LAYOUT (double.html) */

.double-col {
  width: 100%;
  column-count: 2;
  column-gap: 2rem;
}

.panel {
  background: rgba(0, 128, 0, 0.07);
  border: solid 1px rgba(0, 128, 0, 0.4);
  border-radius: 8px;
  padding: 1.2rem;
  width: 100%;
  box-shadow:
    rgba(200, 255, 200, 0.3) 0px 2px 2px inset,
    rgba(0, 100, 0, 0.15) 0px 2px 4px;
}

.double-col .panel {
  margin-bottom: 2rem;
  margin-top: 0px;
  font-size: 1rem;
  line-height: 1.5em;
}

.panel .panel {
  box-shadow: none;
  margin-bottom: 1rem;
  transition: background 0.2s ease;
  position: relative;
}

@media (max-width: 1000px) {
  .double-col {
    column-count: 1;
  }
}
