/* Layout for /redcircles/ — mirrors the live page's 12-column row grid.
   Page-scoped so it layers over style.css without touching shared rules. */

.rc {
  padding: 0 1vw;
}

.rc-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rc-col {
  min-width: 0;
}

.rc-span-1 { flex: 1 1 0%; }
.rc-span-2 { flex: 2 1 0%; }
.rc-span-3 { flex: 3 1 0%; }
.rc-span-4 { flex: 4 1 0%; }
.rc-span-5 { flex: 5 1 0%; }
.rc-span-6 { flex: 6 1 0%; }
.rc-span-7 { flex: 7 1 0%; }
.rc-span-8 { flex: 8 1 0%; }
.rc-span-9 { flex: 9 1 0%; }
.rc-span-10 { flex: 10 1 0%; }
.rc-span-11 { flex: 11 1 0%; }
.rc-span-12 { flex: 12 1 0%; }

.rc-fig {
  margin: 0 0 20px;
}

.rc-fig img {
  width: 100%;
  height: auto;
}

.rc-fig figcaption {
  font-size: 12.5px;
  letter-spacing: 0.9px;
  line-height: 1.6;
  margin-top: 8px;
  text-align: left;
}

.rc-show-logo {
  margin: 1.5em auto;
  height: auto;
  max-width: 100%;
}

.rc-h {
  text-align: center;
  margin: 1.2em 0;
}

.rc-vspace {
  height: 34px;
}

.rc .text-center {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .rc-row {
    flex-direction: column;
    gap: 0;
  }

  .rc-col {
    width: 100%;
  }
}

/* mailing-list form (replaces the platform form; posts to Apps Script endpoint) */
.ml-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1em 0;
}

.ml-form label {
  font-size: 15px;
}

.ml-form input {
  font-family: inherit;
  font-size: 16px;
  letter-spacing: inherit;
  color: inherit;
  padding: 12px;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.ml-form .button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  align-self: center;
  min-width: 160px;
}

.ml-status {
  text-align: center;
  min-height: 1.5em;
  margin: 0;
}
