* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 68.75%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Inter, "Segoe UI", Roboto, Arial,
    sans-serif;

  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.25;
  letter-spacing: 0.01rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 30-column editorial grid
   Columns roughly map to:
   1–12  : left info
   14–18 : misc
   19–24 : inquiries
   26–30 : awards
*/

/* STICKY */

.header-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  position: sticky;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  top: 0;
  z-index: 10;
  background: white;
}

.grid-container {
  margin: 0 1rem 3rem 1rem;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1rem;
  row-gap: 1.5rem;
}

.header-left {
  grid-column: 1/5;
  padding-bottom: 3rem;
}

.header-center-left {
  grid-column: 5/8;
  padding-top: 1rem;
}

.clock {
  margin: 0;
}

.header-center {
  grid-column: 11/13;
  display: flex;
  align-items: flex-start;
}

.header-center-right {
  grid-column: 15/19;
}

.header-right {
  grid-column: 21/25;
}

.body-left {
  grid-column: 5/10;
}

.body-light {
  padding-bottom: 1rem;
  color: #bbb;
}

.body-right {
  grid-column: 11/25;
  position: relative;
}

/* HEADER BEHAVIOR */

.header-heading,
.body-heading {
  all: unset;
  display: block;
}

.header-heading {
  margin: 1rem 0;
}

.misc-trigger {
  all: unset;
  cursor: pointer;
  display: block;
}

.misc-trigger .header-heading {
  transition: color 0.5s ease;
}

.misc-trigger:hover .header-heading {
  color: #ccc;
}

.misc-trigger:focus-visible {
  outline: 1px dotted #999;
  outline-offset: 2px;
}

/* LIST BEHAVIOR */

.header-list,
.image-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* TEXT BEHAVIOR */

.lighter-text {
  color: #bbb;
}

.body-text-first {
  margin-top: 2rem;
  padding-bottom: 0.75rem;
}

/* LINKS */

a:link {
  text-decoration: none;
  color: #000;
  transition: color 0.5s ease;
}

a:visited {
  color: #000;
}

a:hover {
  cursor: pointer;
  color: #bbb;
}

/* a:active {
} */

.previously-at {
  display: inline;
}

.compound-link {
  display: inline; /* NOT inline-block */
  color: #000;
  text-decoration: none;
}

.compound-link span {
  transition: color 0.5s ease;
}

.compound-link:hover span {
  color: #bbb;
}

/* CAROUSEL ELEMENTS*/

.image-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.image-list::-webkit-scrollbar {
  display: none;
}

.image-list li {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}

.image-list li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.image-list img,
.image-list video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-list img.portrait {
  max-width: 60%;
}

/* BUTTONS */

.btn {
  background-color: rgba(125, 125, 125, 0.4);
  border: none;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn--left {
  left: 3%;
  top: 50%;
  transform: translate(0, -50%);
}

.btn--right {
  right: 3%;
  top: 50%;
  transform: translate(0, -50%);
}

.btn-icon-left {
  height: 1.4rem;
  width: 1.4rem;
  stroke: #fff;
  transform: translate(-9%, 0);
}

.btn-icon-right {
  height: 1.4rem;
  width: 1.4rem;
  stroke: #fff;
  transform: translate(9%, 0);
}

/* DIVIDING LINE */

.line {
  grid-column: 5 / -1;
  border-top: 1px solid #bbb;
}

/* FOOTER */

.footer-inner {
  margin: 3rem 2rem 1rem 1rem;
}

.floating-favicon {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none; /* don't block clicks */
  z-index: 9999;
}
