/* =========================
   ROOT VARIABLES
========================= */
:root {
  --sidePadding: clamp(3rem, 6vw, 8rem);
  --topMargin: 1rem;
  --radius-md: 12px;
  --sidebar-width: 280px;
}

/* =========================
   GLOBAL RESETS & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--light);
  overflow-y: auto;
}

/* =========================
   HERO SECTION
========================= */
.hero-left-align {
  padding: 4rem var(--sidePadding) 2rem var(--sidePadding);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .hero-left-align {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.hero-inner {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem; /* Increased gap for better spacing */
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.hero-left-align .name-wrapper,
.hero-left-align .heroCopy,
.hero-left-align .metadata,
.hero-left-align .heroImage {
  align-items: flex-start;
  text-align: left;
}
.projectHeader {
  font-size: 2.75rem;
  text-align: left;
  line-height: 1.1;
}

.heroCopy {
  text-align: left;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.metadata {
  margin-bottom: 1.2rem;
}
.projectHeader {
  font-size: 2.75rem;
  text-align: left;
}
.heroCopy {
  text-align: left;
}
.heroImage img {
  max-width: 1100px !important;
  width: 100% !important;
  display: block;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--squircle);
}

.hero-center-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   METADATA ROW
========================= */
.metadataTitle {
  margin-bottom: 0.2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.metadataInfo {
  font-weight: 400;
  font-size: 14px;
  color: #555;
}
.metadata-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.metadata-row > div {
  min-width: 120px;
}
@media (max-width: 700px) {
  .hero-left-align {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .metadata-row {
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
  }
  .metadata-row > div {
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 100%;
    margin-bottom: 0.7rem;
    text-align: left; /* <-- add this line */
  }
}

/* =========================
   SQUIGGLE UNDERLINE
========================= */
.squiggle-underline {
  margin-top: .85rem;
  display: flex;
  justify-content: center;
}
.squiggle-underline svg {
  width: 100%;
  max-width: 340px;
}
.squiggle-path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw 0.9s ease-out forwards;
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}

/* =========================
   MAIN LAYOUT
========================= */
main.project-layout {
 width: calc(100vw - var(--sidebar-width));
  max-width: calc(100vw - var(--sidebar-width));
  margin-left: var(--sidebar-width);
  margin-right: 0; /* Remove the right margin */
  padding: 0 0 4rem 0;
  box-sizing: border-box;
  top: 0 !important;
    border-bottom-left-radius: var(--exploreSquircle);
  border-bottom-right-radius: var(--exploreSquircle);
}
@media (max-width: 1200px) {
  main.project-layout {
     width: calc(100vw - var(--sidebar-width));
    max-width: 100vw;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1024px), (max-width: 900px) {
  main.project-layout {
    margin-left: 0;
    width: 100vw;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  main.project-layout {
    padding-bottom: 2rem;
  }
}
.textUnderBold {
  margin: 0 0 0.75rem 0;
}

/* =========================
   PROJECT COLUMNS LAYOUT
========================= */
.project-columns {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100%;
  margin: 4rem 0 0 0 ;
   padding: 0 calc(var(--sidePadding)/1.2) 0 0;
  align-items: center;

  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: var(--sidePadding);
  /* gap:3rem; */
  box-sizing: border-box;
}


.project-columns.tinker{
    grid-template-columns: 50% 50%;
}


@media (max-width: 1200px) {
  .project-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .project-columns {
    grid-template-columns: 1fr;
    height: auto;
    align-items: stretch;
  }
}
/* =========================
   LEFT COLUMN (TEXT)
========================= */

ul, ol {
  text-align: left !important;
}
li {
  text-align: left !important;
}

.leftCol {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow-y: visible;
  height: 100%;
}

.rightCol {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  padding: 0 !important;
  justify-content: center;
  width: 90%;

}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: left; */
  height: 100%;
  padding: 1rem calc(var(--sidePadding)/1.2) 2.5rem var(--sidePadding);

  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
/* 
@media (max-width: 1200px) {
  .details {
    padding: 0 1.5rem 2rem 1.5rem;
  }
} */

@media (max-width: 900px) {
  .leftCol,
  .rightCol {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
    overflow: visible;
    display: block;
    padding-right: var(--sidePadding);
  }

}
@media (max-width: 600px) {
  .details {
    padding: 1rem 0.5rem 1.5rem 0.5rem;
  }
}

.posterGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  grid-template-rows: repeat(4, 1fr);    /* 4 rows */
  gap: 1rem;
}

.posterGrid > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rightCol > div,
.rightCol .projectGallery,
.rightCol .photo-grid,
.rightCol .row{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projectGallery .row {
  row-gap: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.projectGallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  background: #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
  left:0;
}
.photo-grid {
  padding: 2rem var(--sidePadding) 2rem var(--sidePadding) !important;
}
@media (max-width: 1200px) {
  .photo-grid {
    margin: 2rem 1rem 2rem 1rem !important;
  }
}
@media (max-width: 900px) {
  .photo-grid {
    margin: 1.5rem 0 !important;
  }
}
@media (max-width: 600px) {
  .photo-grid {
    margin: 1rem 0 !important;
  }
}

/* =========================
   PROJECT TITLES & SUBTITLES
========================= */
.projectTitle {
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 750;
  line-height: 1.05;
  margin-top: 0;
  text-align: center;
  justify-content: start;
}
.projectSubsectionTitle {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-align: left;
  left: 0;
  align-self: flex-start;
}

.projectSubsectionTitle sub{
  font-size: 1.25rem;
  font-weight: 600;
  /* letter-spacing: 0.08em; */
  color: var(--primary);
  text-align: left;
  left: 0;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .projectTitle {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .projectTitle {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .projectSubsectionTitle {
    font-size: 1rem;
  }
}

/* =========================
   BLUE PROJECT SECTION
========================= */
.blue section {
  margin: 3rem auto;
}
.blue .details {
  padding-top: 0 !important;
  margin-top: 0 !important;
  height: auto;
}

/* Final cards row: keep in one line on desktop */
@media (min-width: 992px) {
  .image-hover-row {
    flex-wrap: nowrap;
  }
  .image-hover-row  > .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}


/* Image captions */
.imgCaption {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary, #0042A6);
  margin-top: 0.5rem;
  margin-bottom: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .exploreRow {
    flex-direction: row;      /* Always keep row direction */
    align-items: flex-start;
    gap: 1rem;
  }
  .exploreTile {
    width: 38vw;              /* or 40%, adjust as needed */
    min-width: 100px;
    max-width: 50vw;
    margin-bottom: 0;
    align-self: flex-start;
    display: flex;
  }
  .exploreLabel {
    width: 60vw;              /* or 60%, adjust as needed */
    min-width: 120px;
    max-width: 100%;
    margin-left: 0;
    align-self: flex-start;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  .exploreDescription, .viewProject {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }
}


@media (max-width: 900px) {
  .exploreTile,
  .exploreTextBlock {
    width: 45%;         /* or another value that fits your design */
    min-width: 120px;
    max-width: 60vw;
  }
  .exploreTile {
    margin-bottom: 0;
  }
  .exploreTextBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
  }
  .exploreLabel,
  .exploreDescription {
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
  }
}

/* =========================
   PERSONA CARDS
========================= */
.persona-card {
  /* background: var(--accentLight); */
  border: 2px solid var(--primary);
  border-radius: 40px;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 2rem;
}
.persona-subtitle {
  font-size: 1.2rem;
  /* font-style: italic; */
}
.persona-text {
  margin-bottom: 1.5rem;
}

/* =========================
   VISUAL DESIGN / STYLE GUIDE
========================= */
.style-guide {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.color-blocks {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 15px;
}
.color-square {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: black;
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.color-1 { background-color: #F8F8F8; }
.color-2 { background-color: #5D9DFE; }
.color-3 { background-color: #0A0A0A; }
.color-4 { background-color: #0042A6; }
.heading1 {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 30pt;
  color: #0042A6;
  line-height: 50px;
}
.heading2 {
  font-weight: 700;
  font-size: 20pt;
  color: #0A0A0A;
    line-height: 40px;
}
.copy {
  font-weight: 400;
  font-size: 16pt;
  color: #0A0A0A;
      line-height: 35px;

}



/**BURST



  .image-burst {
  position: relative;
  width: 280px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

/* All images stacked */
.image-burst .img {
  position: absolute;
  inset: 0;
  width: 60%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    opacity 0.3s ease;
}

/* Top image */
.image-burst .main {
  z-index: 4;
}

/* Hidden images start underneath */
.image-burst .burst {
  z-index: 1;
  opacity: 0;
  transform: translate(0, 0) scale(0.95);
}

/* Hover state */
.image-burst:hover .burst {
  opacity: 1;
}

.image-burst:hover .sideEar {
  transform: translate(280%, 25%) rotate(8deg);
}

/* back ear */
.image-burst:hover .backEar {
  transform: translate(0%, 100%) rotate(-8deg);
}

    .projectSectionTitle {
      text-align: left;
      font-size: 2rem;
      font-weight: 550;
      align-self: start;
    }

.details-cols {
  display: grid;
  grid-template-columns: 200px 1fr;
  /* gap: 2rem; */
  align-items: start;
  margin-bottom: 2.5rem;
}

p{
  margin-bottom: 0;
}

.details-label {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding-top: 0.2em;
  margin-right: 3rem;
  width: 14ch;
}

.details-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;      /* Let children control their own alignment */
  justify-content: center;
  text-align: left;
  width: 100%;
}

.details-content img,
.details-content iframe,
.details-content video,
.details-content .centered {
  align-self: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.details-content img, .details-content iframe {
  display: block;
  margin: 1.5rem 0 auto 0;
}

@media (max-width: 700px) {
  .details-cols {
    grid-template-columns: 1fr;
    /* gap: 1rem; */
  }
  .details-label {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}


    /* ===============================
   PROCESS SECTION (Scoped)
================================ */

.theProcess {
  width: 65vw;
  border: 2px solid var(--primary);
  /* background: var(--accentLight); */
  display: flex;
  justify-content: center;
  border-radius: var(--squircle);
  margin-bottom: 5rem;
  padding: 1rem 2rem;
}

.theProcess .process-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.theProcess .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  width: 100%;

}

.details-content > .theProcess {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
/* Individual items */
.theProcess .process-item {
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.theProcess .process-item img {
  height: 100px;
  margin-bottom: .5rem;
  transition: transform 0.3s ease;
}

.theProcess .process-item h5 {
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
}

/* Hover effect */
.theProcess .process-item:hover {
  transform: translateY(-8px);
}
.process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.process-title h5 {
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
}
.theProcess .process-item:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

/* Responsive */
@media (max-width: 992px) {
  .theProcess .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theProcess .process-headline {
    transform: scale(0.8);
  }
}

@media (max-width: 576px) {
  .theProcess .process-grid {
    grid-template-columns: 1fr;
  }
}
.blue.heroImage {
  background: linear-gradient(135deg, #5D9DFE 0%, #79edfc 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.heroImage img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(93,157,254,0.12);
}

.details blue{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  box-sizing: border-box;
}

html, main{
  background-color: var(--light);
}

body {
  background-color: var(--accentLight);
}

.projSubHead {
  color: var(--primary);
}

@media (max-width: 1024px) {
  main.project-layout {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  @media (max-width: 1024px) {
  main.project-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 1rem;  /* optional padding for breathing room */
    padding-right: 1rem; /* optional */
    box-sizing: border-box; /* important to include padding in width */
  }
}

}@media (max-width: 900px) {
  .details,
  .leftCol,
  .rightCol {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 1024px) {
  aside.sidebar {
    position: fixed; /* optional: keep it visible or collapsed */
    width: 0;        /* hide it from layout flow */
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  main.project-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 1rem;  /* optional padding for breathing room */
    padding-right: 1rem; /* optional */
    box-sizing: border-box; /* important to include padding in width */
  }
}
@media (max-width: 1024px) {
  aside.sidebar {
    position: absolute;  /* removes it from normal flow */
    left: 0;
    width: 80%;          /* whatever width you want */
    z-index: 100;
  }
}
img, .leftCol, .rightCol {
  max-width: 100%;   /* ensures they shrink to container */
  width: 100%;       /* optional if you want full width */
  box-sizing: border-box;
}


.exploreMore {
  margin-left: var(--sidebar-width, 0);
  width: calc(100vw - var(--sidebar-width, 0));
  max-width: 1100px;
  padding: var(--sidePadding, 2rem);
  background-color: var(--accentLight);
  box-sizing: border-box;
  transition: padding 0.2s;
}
@media (max-width: 1200px) {
  .exploreMore {
    margin-left: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 900px) {
  .exploreMore {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .exploreMore {
    padding: 1rem 0.5rem;
  }
}

.exploreGrid {
  width: 100%;
  max-width: 1000px;
  margin: 1.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.25rem 0;
}

.exploreRow {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.exploreTile {
  flex-shrink: 0;
  width: 25%;
  min-width: 140px;
  aspect-ratio: 17 / 11;
  overflow: hidden;
  border-radius: var(--squircle, 16px);
  box-shadow: var(--tile-shadow, 0 4px 16px rgba(0,0,0,0.07));
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exploreImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--squircle, 16px);
}

.exploreLabel {
  padding: 0.9rem 1rem;
  color: var(--dark, #222);
  font-weight: 550;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
}

.exploreDescription {
  font-weight: 350;
  margin: 0.3rem 0 0 0;
}

/* Stack image above text on small screens */
@media (max-width: 900px) {
  .exploreRow {
    flex-direction: column;

    gap: 1rem;
  }
  .exploreTile {
    width: 80%;
    align-self: center;
    display: flex;
    min-width: 0;
    aspect-ratio: 17 / 11;
    margin-bottom: 0.5rem;
  }
  .exploreLabel {
    padding: 0.7rem 5rem;
    font-size: 1rem;
    align-self: left;
  }
}
@media (max-width: 600px) {
  .exploreGrid {
    gap: 1rem;
    padding: 0.5rem 0;
  }
  .exploreLabel {
    font-size: 0.98rem;
    padding: 0.5rem 0.2rem;
  }
}

.exploreMore {
  margin-left: var(--sidebar-width, 0);
  width: calc(100vw - var(--sidebar-width, 0));
  max-width: 1100px !important;
  padding: var(--sidePadding, 2rem);
  background-color: var(--accentLight);
  box-sizing: border-box;
  transition: padding 0.2s;
}
@media (max-width: 1200px) {
  .exploreMore {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .exploreMore {
           margin: 0 !important;

    padding: 1.5rem 1rem;
  }
}
@media (max-width: 900px) {
  .exploreMore {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .exploreMore {
    padding: 1rem 0.5rem;
  }
}

.featuredTile {
  /* ...other styles... */
  background: #fff;
  /* ... */
}

.featuredTile--special {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  /* ...other styles... */
}@media (max-width: 900px) {
  .exploreRow {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .exploreTile {
    width: 75%;
    align-self: center;
    min-width: 0;
    aspect-ratio: 17 / 11;
    margin-bottom: 0.5rem;
    display: flex;
  }
  .exploreTextBlock {
    width: 75%;
    align-self: center;
    display: flex;
    flex-direction: column;
  }
  .exploreLabel {
    width: 75%;
    margin-left: 12.5%;
    text-align: left;
    align-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
}


.image-hover-row {
  display: flex;
  gap: 1.5rem;
}
.image-hover-row .final-img {
  filter: grayscale(0) brightness(1);
  transition: filter 0.3s, transform 0.3s;
  z-index: 1;
  cursor: pointer;
}

/* dim all images except the one being hovered */
.image-hover-row:hover .final-img:not(:hover) {
  filter: grayscale(0.6) brightness(0.8);
}

/* hover effect for the specific image */
.image-hover-row .final-img:hover {
  filter: grayscale(0) brightness(1); 
  transform: scale(1.09);
  z-index: 2;
}

@media (max-width: 700px) {
  .project-columns.tinker {
    display: flex !important;
    flex-direction: column-reverse !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .leftCol, .rightCol {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
  }
   .rightCol {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .project-columns.tinker .leftCol .projectSubsectionTitle{
    margin-top: 5rem;
  }
}

.chair-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chair-img {
      height: 90%;
    width: auto;
  margin-top: 2rem;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .chair-images {
    gap: 1rem;
  }
  .chair-img {
   
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .chair-images {
    flex-direction: column;
    align-items: center;
  }
  .chair-img {
    margin-bottom: 1rem;
  }
}

.htp-media-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.htp-img-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.htp-img-row img {
  width: 50%;
  height: auto;
}

.htp-video-row {
  width: 100%;
}