/* ======================================
   Dryer – specific styles
   (intentionally mirrors Washing Machine)
   ====================================== */

/* --------------------------------------
   Layout helpers
   -------------------------------------- */

.tools {
  margin-top: 32px;
}

body {
  color: #875053;
}

/* --------------------------------------
   Tool cards
   -------------------------------------- */

.tool-card h2 {
  font-size: 20px;
}

.tool-card p {
  line-height: 1.5;
}

/* --------------------------------------
   Back link
   -------------------------------------- */

.back-link {
  margin-top: 32px;
  text-align: center;
}

.back-link a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

/* ======================================
   Textarea surface
   (SAFE, PREDICTABLE PATTERN)
   ====================================== */

.textarea-surface {
  margin-top: 12px;
  margin-bottom: 20px;

  background-color: #ffffff;
  border-radius: 12px;
  border: 2px solid #d6dde8;

  padding: 16px 18px;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;

  cursor: text;
}

.textarea-surface:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

/* --------------------------------------
   Textarea
   -------------------------------------- */

.textarea-surface textarea {
  width: 100%;
  min-height: 220px;

  border: none;
  outline: none;
  background: transparent;

  resize: vertical;

  font-family: "Nunito", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;

  box-sizing: border-box;
}

.textarea-surface textarea::placeholder {
  color: #9ca3af;
}

/* --------------------------------------
   Field hint
   -------------------------------------- */

.field-hint {
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #6b7280;
  font-weight: 800;
}

/* --------------------------------------
   Expand button
   -------------------------------------- */

.expand-btn {
  color: #1e3a8a;
}

.expand-btn:hover {
  color: #1d4ed8;
}

/* --------------------------------------
   Compact preview
   -------------------------------------- */

.compact-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compact-section-title {
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e3a8a;
}
