/* Market photographs from a Cowboys & Country Saturday. */
.hr-market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.hr-market__shot {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: box-shadow .2s ease;
}
.hr-market__shot:hover { box-shadow: 0 6px 20px rgba(0,0,0,.22); }
.hr-market__shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.hr-market__shot:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .hr-market__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .hr-market__grid { grid-template-columns: 1fr; }
}

.hr-market__shot--wide { grid-column: span 2; }
.hr-market__shot--wide img { aspect-ratio: 16 / 10; }

.hr-market__more {
  text-align: center;
  margin: 26px 0 0;
  font-size: 17px;
}

@media (max-width: 560px) {
  .hr-market__shot--wide { grid-column: span 1; }
  .hr-market__shot--wide img { aspect-ratio: 4 / 5; }
}

/* Upcoming market days, in the intro band. */
.hr-daystrip {
  list-style: none;
  margin: 34px auto 0;
  padding: 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hr-daystrip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 20px 10px 16px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 12px;
  font-family: var(--rm-font-ui);
}
.hr-daystrip__item.is-next {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(188,81,40,.18);
}
.hr-daystrip__flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.hr-daystrip__num {
  font-family: var(--rm-font-heading);
  font-size: 40px;
  line-height: 1;
  color: var(--rm-text);
}
.hr-daystrip__mon {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.hr-daystrip__dow { font-size: 12.5px; color: var(--rm-text-light); }
.hr-daystrip__foot {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--rm-font-ui);
  font-size: 14.5px;
  color: var(--rm-text-light);
}

@media (max-width: 700px) {
  .hr-daystrip { grid-template-columns: repeat(2, 1fr); }
}

/* Tick-and-choose blocks in the application form. */
.hr-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.hr-fieldset legend {
  padding: 0;
  font-family: var(--rm-font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rm-text-light);
}
.hr-hint {
  font-family: var(--rm-font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--rm-text-light);
}
.hr-field .hr-hint { margin: 2px 0 0; }
.hr-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.hr-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.hr-choice:hover { border-color: var(--accent); }
.hr-choice input {
  margin: 2px 0 0;
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex: none;
}
.hr-choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--rm-white);
  box-shadow: 0 2px 10px rgba(188,81,40,.14);
}
.hr-choice__body { display: flex; flex-direction: column; gap: 2px; }
.hr-choice__title {
  font-family: var(--rm-font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--rm-text);
}
.hr-choice__note {
  font-family: var(--rm-font-ui);
  font-size: 12.5px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--rm-text-light);
}
.hr-choice__other {
  margin-top: 10px;
  width: 100%;
  padding: 13px 16px;
  font-family: var(--rm-font-ui);
  font-size: 16px;
  color: var(--rm-text);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: 9px;
}
.hr-choice__other:focus { outline: none; border-color: var(--accent); background: var(--rm-white); }

/* File pickers sit lower than text inputs, so they get their own frame. */
.hr-field input[type="file"] {
  padding: 11px 14px;
  font-family: var(--rm-font-ui);
  font-size: 14px;
  background: var(--rm-bg);
  border: 1px dashed var(--rm-border);
  border-radius: 9px;
  cursor: pointer;
}
.hr-field input[type="file"]:hover { border-color: var(--accent); }

/* Where the site fee is paid. */
.hr-pay {
  padding: 22px 24px 20px;
  background: var(--rm-bg-footer);
  border: 1px solid var(--rm-border);
  border-radius: 12px;
}
.hr-pay__head {
  margin: 0 0 8px;
  font-family: var(--rm-font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rm-text-light);
}
.hr-pay__body { margin: 0; font-size: 16px; line-height: 1.6; color: var(--rm-text); }
.hr-bank {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 9px;
  display: grid;
  gap: 8px;
}
.hr-bank__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: baseline;
}
.hr-bank dt {
  min-width: 150px;
  font-family: var(--rm-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rm-text-light);
}
.hr-bank dd {
  margin: 0;
  font-family: var(--rm-font-ui);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--rm-text);
}
.hr-bank--absent { display: block; font-size: 16px; font-weight: 400; }
.hr-pay__warn {
  margin: 12px 0 0;
  font-family: var(--rm-font-ui);
  font-size: 13px;
  color: var(--rm-text-light);
}
