/**
 * wc-text-block.css
 *
 * Styles the body prose area.
 * sec-label, t-h1, btn-text-link are all in tokens.css — not repeated here.
 */

/* Apply t-body styles to every <p> the editor outputs inside the body slot */
.wc-text-block__body p {
  font-size: var(--t-body);
  color: var(--body-text);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: var(--sp-sm);
  overflow-wrap: break-word;
}

.wc-text-block__body p:last-child {
  margin-bottom: 0;
}

.btn-join-wc {
    display: inline-flex;
    align-items: center;
    background: var(--red-bright);
    color: #fff;
    font-family: var(--ff-ui);
    font-size: var(--t-body);
    font-weight: 700;
    letter-spacing: .03em;
    padding: 13px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s ease;
    gap: 6px;
}