/* One photograph leads each existing category; the remaining records form an index. */
.training-showcase {
  --training-line: #bfd2c526;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, 1fr);
  align-items: start;
  column-gap: clamp(28px, 4vw, 60px);
  row-gap: 26px;
  padding-top: 28px;
  min-width: 0;
}
.training-showcase * { box-sizing: border-box; }
.training-showcase .training-showcase-stage { min-width: 0; }
.training-showcase .training-showcase-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #142019;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
}
.training-showcase .training-showcase-photo::after {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #061109c9);
  pointer-events: none;
}
.training-showcase .training-showcase-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.training-showcase .training-showcase-photo-hint,
.training-showcase .training-showcase-photo-count {
  position: absolute;
  bottom: 19px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  text-shadow: 0 1px 8px #000a;
}
.training-showcase .training-showcase-photo-hint { left: 22px; font-weight: 500; }
.training-showcase .training-showcase-photo-hint > span { display: inline-block; margin-left: 9px; font-size: 16px; }
.training-showcase .training-showcase-photo-count { right: 22px; }
.training-showcase .training-showcase-story { padding-top: 22px; }
.training-showcase .training-showcase-location {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 14px;
  margin: 0 0 11px;
  color: #b1c6b9;
  font-size: 12px;
  line-height: 1.7;
}
.training-showcase .training-showcase-location time { font-variant-numeric: tabular-nums; }
.training-showcase .training-showcase-story h4 {
  margin: 0;
  color: #f3f5ee;
  font-size: clamp(23px, 2.25vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.035em;
  text-wrap: pretty;
}
.training-showcase .training-showcase-focus {
  max-width: 42em;
  margin: 12px 0 0;
  color: #c7d3ca;
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}
.training-showcase .training-showcase-index { min-width: 0; }
.training-showcase .training-showcase-index-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--training-line);
  color: #a9c0b2;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .07em;
}
.training-showcase .training-showcase-index > .activity-card {
  display: block;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
.training-showcase .training-showcase-choice {
  position: relative;
  display: block;
  width: 100%;
  padding: 17px 10px 15px 17px;
  border: 0;
  border-bottom: 1px solid var(--training-line);
  border-radius: 0;
  color: #d5dfd8;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.training-showcase .training-showcase-choice::before {
  content: '';
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 0;
  width: 2px;
  background: transparent;
  transition: background-color .18s ease;
}
.training-showcase .training-showcase-choice-name { display: block; font-size: 14px; line-height: 1.65; font-weight: 400; }
.training-showcase .training-showcase-choice-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
  color: #9cb3a4;
  font-size: 11px;
  line-height: 1.7;
  font-variant-numeric: tabular-nums;
}
.training-showcase .training-showcase-choice-mark { color: #708c7a; font-size: 15px; line-height: 1.3; }
.training-showcase .training-showcase-choice[aria-pressed="true"] { background: #75ebae0c; color: #eef8ed; }
.training-showcase .training-showcase-choice[aria-pressed="true"]::before { background: var(--green, #a7f3a0); }
.training-showcase .training-showcase-choice[aria-pressed="true"] .training-showcase-choice-name { font-weight: 500; }
.training-showcase .training-showcase-choice[aria-pressed="true"] .training-showcase-choice-mark { color: var(--green, #a7f3a0); }
.training-showcase button:focus-visible { outline: 2px solid var(--green, #a7f3a0); outline-offset: 4px; z-index: 2; }
@media (hover: hover) and (pointer: fine) {
  .training-showcase .training-showcase-photo:hover > img { transform: scale(1.018); }
  .training-showcase .training-showcase-choice:hover { color: #f4f7f1; background: #75ebae0a; }
}
@media (max-width: 960px) and (min-width: 701px) {
  .training-showcase { grid-template-columns: minmax(0, 1.15fr) minmax(220px, 1fr); column-gap: 25px; }
  .training-showcase .training-showcase-choice { padding-top: 13px; padding-bottom: 12px; }
}
@media (max-width: 700px) {
  .training-showcase { grid-template-columns: minmax(0, 1fr); padding-top: 20px; row-gap: 27px; }
  .training-showcase .training-showcase-stage { scroll-margin-top: 90px; }
  .training-showcase .training-showcase-photo-hint { left: 16px; bottom: 14px; font-size: 11px; }
  .training-showcase .training-showcase-photo-count { right: 16px; bottom: 14px; font-size: 11px; }
  .training-showcase .training-showcase-story { padding-top: 18px; }
  .training-showcase .training-showcase-story h4 { font-size: 24px; }
  .training-showcase .training-showcase-focus { margin-top: 10px; font-size: 14px; line-height: 1.85; }
  .training-showcase .training-showcase-choice { padding: 14px 10px 12px 15px; }
  .training-showcase .training-showcase-choice-name { font-size: 14px; }
  .training-showcase .training-showcase-choice-meta { margin-top: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .training-showcase .training-showcase-photo > img,
  .training-showcase .training-showcase-choice,
  .training-showcase .training-showcase-choice::before { transition: none; }
  .training-showcase .training-showcase-photo:hover > img { transform: none; }
}
