/* layout.css */
.wrapper {
  background: #fff;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.page-content {
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero-caption {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero-text {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

.quotecolumn {
  width: 330px;
  margin: 0 auto;
}

.contentcolumn {
  width: 360px;
  margin: 0 auto;
}

.emailcolumn {
  width: 400px;
  margin: 0 auto;
}

.card {
  border: 1px solid #999;
  margin: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  padding: 0 30px 10px 30px;
  background: #fcfcfc;
  box-shadow: 1px 1px 5px #999;
}

.card > h4 {
  font-size: 14pt;
}

.tvcard,
.haikucard {
  border: 1px solid #999;
  margin: 25px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  padding: 10px;
  background: #fcfcfc;
  box-shadow: 1px 1px 5px #999;
}

.tvcolumn {
  width: 300px;
  margin: 0 auto;
}

.tvcontentcolumn {
  width: 350px;
  margin: 0 auto;
}

.haikucolumn {
  width: 550px;
  margin: 0 auto;
}

.fixed-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.is-hidden {
  display: none;
}

.random-art-container {
  width: 75%;
  margin: 0 auto;
  display: block;
}

.copy-group {
  display: flex;
  flex-direction: column;
  gap: 24px; /* or adjust to taste */
  align-items: center;
}

/* layout the two copy iframes nicely */
.copy-group {
  display: grid;
  gap: 32px;
  justify-content: center;
}

/* remove any chrome around the iframe boxes */
.copy-group iframe {
  display: block;
  border: 0;
  outline: none;
  box-shadow: none;
}

/* avoid focus rings on iframe focus */
.copy-group iframe:focus,
.copy-group iframe:focus-visible {
  outline: none;
  box-shadow: none;
}
/* Quotes page tiny overrides */
.q-sub1 { margin-bottom: 3px; }
.q-sub2 { margin-top: 3px; }
