/* A quiet pause between still photography and film */
.gallery-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:230px;
  padding:48px 24px;
  background:#f4f1eb;
}
.gallery-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-width:min(420px,88vw);
  padding:14px 32px 16px;
  border:1px solid #1c1b19;
  border-radius:50%;
  font:500 clamp(17px,2.1vw,28px)/1 'DM Sans',sans-serif;
  letter-spacing:-.055em;
  text-transform:uppercase;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.gallery-cta a span{font-size:1.15em;transition:transform .25s ease}
.gallery-cta a:hover{background:#1c1b19;color:#f4f1eb;transform:translateY(-3px)}
.gallery-cta a:hover span{transform:translateY(3px)}
@media(max-width:700px){
  .gallery-cta{min-height:170px;padding:35px 20px}
  .gallery-cta a{min-width:88vw;padding:13px 24px 15px;font-size:18px}
}
