/* ===== Help page typography ===== */

.section {
  margin: 1.5em 0 2.5em 0;
  max-width: 60em;
}

.section h2 {
  font-family: system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.text {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0.4em 0 0.8em 0;
}

/* ===== Figures ===== */

.figure {
  margin: 0.8em 0;
  max-width: 420px;
}

.figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.figure figcaption {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.3em;
}

.figure a {
  position: relative;
}

.figure a::after {
  content: "↗";
  position: absolute;
  top: 8px;
  right: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.figure a:hover::after {
  opacity: 1;
}

/* ===== Text flow / floating ===== */
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w85 {
  width: 85%;
}

.figure.right {
  float: right;
  margin-left: 1.2em;
}

.figure.left {
  float: left;
  margin-right: 1.2em;
}

.no-wrap {  /* no floating */
  clear: both;
}

/* Clear floats after sections */
.section::after {
  content: "";
  display: block;
  clear: both;
}

