:root {
  --bg: #f3f3f3;
  --sidebar-bg: #f1f4f6;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #6b6b6b;
  --ink-faint: #9a9a9a;
  --rule: #e2e2e2;
  --select: #3b82f6;
  --select-soft: rgba(59, 130, 246, 0.18);
  --sticky-yellow: #f5e07a;
  --sticky-pink: #f5b8c8;
  --sidebar-w: 280px;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --tracking-tight: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.65;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* —— Layout —— */

.page {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}

.sidebar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  height: 100vh;
  padding: 40px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--rule);
}

.sidebar,
.sidebar * {
  letter-spacing: 0;
}

.main {
  flex: 1;
  min-width: 0;
  background: var(--surface);
}

/* —— Sidebar —— */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 64px;
}

.brand:hover {
  opacity: 1;
}

.brand__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #c8c8c8;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-group + .nav-group {
  margin-top: 44px;
}

.nav-group__label {
  margin: 0 0 10px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-group a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #6d6d6d;
  padding: 2px 0;
  transition: color 0.15s ease;
}

.nav-group a:hover {
  opacity: 1;
  color: #6ea8ff;
}

.nav-group a.is-active {
  color: #474747;
}

.nav-group a.is-active:hover {
  color: #474747;
  opacity: 1;
}

.sidebar__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar__email {
  font-size: 16.5px;
  font-weight: 400;
  color: #6d6d6d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}

.sidebar__email:hover {
  opacity: 1;
  color: #6ea8ff;
}

.sidebar__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #6d6d6d;
  max-width: 17em;
}

.sidebar__role {
  margin: 0;
  font-size: 14px;
  color: #6d6d6d;
}

/* —— Hero board —— */

.hero-board {
  height: 80vh;
  min-height: 600px;
  background: #ffffff;
  border-bottom: none;
}

.figma-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #d6d6d6 0.9px, transparent 1px);
  background-size: 18px 18px;
  user-select: none;
  touch-action: none;
}

.figma-viewport.is-dragging {
  cursor: grabbing;
}

.whiteboard-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 3000px;
  height: 3000px;
  transform-origin: 0 0;
  will-change: transform;
}

.board-draggable {
  position: absolute;
  cursor: grab;
  z-index: 2;
}

.board-draggable:active,
.sticky-note--dragging {
  cursor: grabbing;
  z-index: 10;
}

/* Hint */

.board-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9a9a9a;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.75;
}

.board-hint__icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Media assets on the board */

.board-media img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.board-media video {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: cover;
  background: #f0f0ee;
}

.board-media--headline {
  width: 680px;
  opacity: 0.9;
}

.board-media--figjam,
.board-media--video-wide,
.board-media--video-phone,
.board-media--compose,
.board-media--tall {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.board-media--figjam {
  width: 528px;
}

.board-media--figjam.board-media--sm {
  width: 440px;
}

.board-media--totalis,
.board-media--figjam.board-media--totalis {
  width: 528px;
}

.board-media--figjam2 {
  line-height: 0;
}

.board-media--figjam2 img {
  margin-top: -12%;
  width: 100%;
  height: auto;
}

.board-media--figjam.board-media--md {
  width: 572px;
}

.board-media--video-wide {
  width: 616px;
}

.board-media--video-wide.board-media--sm {
  width: 506px;
}

.board-media--video-phone {
  width: 396px;
}

.board-media--video-phone.board-media--hero {
  width: 440px;
}

.board-media--compose {
  width: 374px;
}

.board-media--figma-edu {
  width: 299px;
  border: none;
  box-shadow: none;
}

.board-media--tall {
  width: 165px;
}

.board-media--sticky {
  width: 211px;
}

.board-media--mouse {
  width: 300px;
}

.board-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  width: 418px;
  min-height: 110px;
  padding: 18px 22px;
  border: 1px solid #e2e2e2;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  color: #626262;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.board-clock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  width: 31px;
  height: 31px;
}

.board-clock__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #b8b8b8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.board-clock__icon.is-sun .board-clock__moon,
.board-clock__icon.is-moon .board-clock__sun {
  display: none;
}

.board-music {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 528px;
  min-height: 121px;
  padding: 15px 20px;
  overflow: hidden;
  border: 1px solid #171717;
  border-radius: 15px;
  background: #000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  color: #fff;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.board-music__cover {
  display: block;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.55s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.board-music__details {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.55s ease;
}

.board-music__title,
.board-music__artist {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-music__title {
  font-size: 24px;
  font-weight: 600;
}

.board-music__artist {
  font-size: 18px;
  font-weight: 400;
  color: #c2c2c2;
  opacity: 1;
}

.board-music.is-changing .board-music__cover,
.board-music.is-changing .board-music__details {
  opacity: 0;
}

.board-gallery {
  position: absolute;
  width: 396px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 15px;
  background: #f2f2f2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
}

.board-gallery--link {
  cursor: grab;
}

.board-gallery--link:active,
.board-gallery--link.sticky-note--dragging {
  cursor: grabbing;
}

.board-gallery__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.7s ease;
  -webkit-user-drag: none;
}

.board-gallery__image.is-active {
  opacity: 1;
}

.board-gallery__icon {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: block;
  width: 77px;
  height: 77px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.board-bio {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 700px;
  min-height: 0;
  padding: 40px 48px 72px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  color: #626262;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.board-bio p {
  margin: 0;
}

.board-bio__link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.board-bio__link:hover {
  color: #454545;
  opacity: 1;
}

.board-bio__signature {
  position: absolute;
  right: 70px;
  bottom: 40px;
  display: block;
  width: 84px;
  height: auto;
  opacity: 0.16;
  filter: brightness(0);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (prefers-reduced-motion: reduce) {
  .board-gallery__image,
  .board-music__cover,
  .board-music__details {
    transition: none;
  }
}

.board-draggable.is-selected:not(.board-hint):not(.board-media--sticky) {
  outline: 1.5px solid var(--select);
  outline-offset: 3px;
}

/* Insight cards */

.board-card {
  width: 200px;
  padding: 16px;
  background: #fff;
  border-radius: 0;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.1);
}

.board-card--list {
  width: 210px;
}

.board-card__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.board-card__sub {
  margin: -6px 0 10px;
  font-size: 11px;
  color: var(--ink-muted);
}

.pricing-range__track {
  position: relative;
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  margin: 8px 0 6px;
}

.pricing-range__fill {
  width: 48%;
  height: 100%;
  background: var(--select);
  border-radius: 2px;
}

.pricing-range__thumb {
  position: absolute;
  left: 48%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: #fff;
  border: 2px solid var(--select);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pricing-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.pricing-metrics {
  display: flex;
  gap: 20px;
}

.pricing-metrics__label {
  display: block;
  font-size: 10px;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

.pricing-metrics strong {
  font-size: 16px;
  font-weight: 600;
}

.sales-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sales-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.sales-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sales-list span {
  color: var(--ink-muted);
}

.sales-list strong {
  font-weight: 600;
}

/* —— Selected work —— */

.selected-work {
  padding: 36px 96px 80px;
  background: var(--surface);
}

.selected-work__heading {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #8a8a8a;
}

.selected-work__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 40px;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: center;
  scroll-margin-top: 48px;
}

.work-item__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  border: 1px solid #e2e2e2;
  text-decoration: none;
  min-height: 235px;
  width: 84%;
  background: var(--sidebar-bg);
}

.work-item__media--preview {
  position: relative;
  aspect-ratio: 16 / 10;
}

.work-item__media--preview:hover .work-item__visual,
.work-item__media--preview:hover .work-item__visual-shell {
  opacity: 0.96;
}

.work-item__visual {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: auto;
  height: 58%;
  max-width: 58%;
  object-fit: contain;
  object-position: bottom right;
  border-radius: 14px;
  display: block;
  pointer-events: none;
}

.work-item__media--seatgeek .work-item__visual-shell,
.work-item__media--userapproved .work-item__visual-shell {
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 108%;
  max-width: 112%;
  min-width: 96%;
  width: max-content;
  transform: translate(20%, 18%);
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.work-item__media--seatgeek .work-item__visual,
.work-item__media--userapproved .work-item__visual {
  position: static;
  right: auto;
  bottom: auto;
  width: auto;
  height: 100%;
  max-width: none;
  min-width: 100%;
  transform: none;
  border-radius: 0;
  object-fit: contain;
  object-position: bottom right;
}

.work-item__media:not(.work-item__media--preview) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.work-item__media:hover {
  opacity: 1;
  filter: brightness(0.97);
}

.work-item__copy {
  max-width: 280px;
}

.work-item__title {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: #474747;
}

.work-item__title a:hover {
  opacity: 0.65;
}

.work-item__role,
.work-item__date {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
  line-height: 1.25;
  color: #6d6d6d;
}

.work-item__role {
  margin-bottom: 2px;
}

.work-item__date {
  margin-bottom: 40px;
}

.work-item__body {
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
  line-height: 1.25;
  color: #6d6d6d;
}

.work-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-item__tags li,
.work-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--sidebar-bg);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  color: #6d6d6d;
  white-space: nowrap;
}

/* Sticky case-study dots */

.work-dots {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

.work-dots[hidden] {
  display: none;
}

.work-dots__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d0d0d0;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-dots__dot:hover {
  opacity: 1;
  background: #9a9a9a;
}

.work-dots__dot.is-active {
  background: #8a8a8a;
  transform: scale(1.15);
}

.about-page {
  padding: clamp(80px, 12vh, 140px) clamp(72px, 22vw, 360px) 0;
  background: var(--surface);
  font-family: var(--font-sans);
}

.about-page,
.about-page * {
  font-family: var(--font-sans);
}

.about-page__container {
  max-width: 500px;
  margin: 0 auto;
}

.about-page__intro {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 96px;
}

.about-page__bio {
  text-align: left;
}

.about-page__bio p,
.about-page__lead {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: var(--tracking-tight);
  color: #6d6d6d;
}

.about-page__lead {
  color: #8a8a8a;
}

.about-page__lead strong {
  font-weight: 500;
  color: #474747;
}

.about-page__bio p:last-of-type {
  margin-bottom: 0;
}

.about-page__bio a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.about-page__bio a:hover {
  opacity: 1;
  color: #474747;
}

.about-page__photo {
  margin: 0;
  width: 100%;
}

.about-page__photo img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.about-experience {
  margin-bottom: 96px;
  text-align: left;
}

.about-talk {
  margin-bottom: 96px;
  text-align: left;
}

.about-talk__heading {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #474747;
}

.about-talk__rule {
  height: 1px;
  margin-bottom: 28px;
  background: var(--rule);
}

.about-talk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 56px;
}

.about-talk__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-talk__line {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6d6d6d;
}

.about-talk__line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.about-talk__line a:hover {
  opacity: 1;
  color: #474747;
}

.about-page .about-page__footer {
  margin: 0 96px;
  padding-left: 0;
  padding-right: 0;
}

.about-experience__heading {
  margin: 0 0 28px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #8a8a8a;
}

.about-experience__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-experience__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}

.about-experience__role {
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.35;
  color: #474747;
}

.about-experience__company {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #474747;
}

.about-experience__title {
  color: #6d6d6d;
}

.about-experience__date {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9a9a;
  white-space: nowrap;
}

/* —— Photos page —— */

.photos-page {
  padding: 36px 96px 0;
}

.photos-page__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.photos-page__heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #8a8a8a;
}

.photos-page__count {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 12px;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.photos-grid__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #f3f3f3;
  aspect-ratio: 4 / 5;
}

.photos-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 96px;
  padding: 30px 0 34px;
  border-top: 1px solid #eeeeee;
  color: #9a9a9a;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

/* —— Responsive —— */

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 20px;
    gap: 28px;
  }

  .sidebar__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .brand {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .hero-board {
    height: 80vh;
    min-height: 448px;
  }

  .selected-work,
  .about-page,
  .photos-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-page__intro {
    gap: 32px;
  }

  .about-talk__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-experience__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    margin-right: 24px;
    margin-left: 24px;
  }

  .selected-work__heading {
    font-size: 16px;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-dots {
    display: none;
  }
}
