/* TURE 6.7 — Living Diary photographs use the same visual grammar as the automobile cards.
   Text, order and diary content remain unchanged. */
.bt-page .tg-events .tg-event > a:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}
.bt-page .tg-events .tg-event > a:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 54%;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.bt-page .tg-events .tg-event:hover > a:first-child img,
.bt-page .tg-events .tg-event:focus-within > a:first-child img {
  transform: scale(1.035);
}
/* Preserve the useful crop emphasis already established for the three diary entries. */
.bt-page .tg-events .tg-event:nth-child(1) > a:first-child img { object-position: 50% 54%; }
.bt-page .tg-events .tg-event:nth-child(2) > a:first-child img { object-position: 52% 52%; }
.bt-page .tg-events .tg-event:nth-child(3) > a:first-child img { object-position: 46% 54%; }
@media (max-width:700px) {
  .bt-page .tg-event img { max-height: none; }
}
