/* =========================================================
   1. Fonts and design variables
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0f0f10;
  --bg-soft: #141416;

  --text: #f4f1eb;
  --text-bright: #fbf8f2;
  --muted: #b9b2aa;
  --quiet: #8b8580;

  --line: #2c2927;
  --accent: #c83a32;
  --accent-deep: #79211e;
  --accent-soft: rgba(200, 58, 50, 0.13);
  --accent-line: rgba(200, 58, 50, 0.55);
  --accent-faint: rgba(200, 58, 50, 0.28);

  --card: #181819;
  --card-strong: #202022;

  --max-width: 1040px;
  --reading-width: 720px;

  --font-heading: "TeX Gyre Adventor", "URW Gothic L", "Avant Garde", Futura, "Avenir Next", "Noto Sans", Arial, sans-serif;
  --font-body: "Noto Sans", Arial, Helvetica, sans-serif;
}


/* =========================================================
   2. Base page styles
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  position: relative;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.2rem 1.25rem 4rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

strong {
  color: var(--text-bright);
}

a {
  color: var(--text-bright);
  text-decoration-color: var(--accent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffffff;
}


/* =========================================================
   3. Header and navigation
   ========================================================= */

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 16, 0.94);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-mark {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--text-bright);
  border-bottom-color: var(--accent);
}


/* =========================================================
   4. Shared page title blocks
   Used by Practice, Research and About.
   ========================================================= */

.simple-page-title {
  margin-bottom: 3rem;
  max-width: var(--reading-width);
}

.simple-page-title h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  text-transform: none;
  margin-bottom: 0.85rem;
}

.simple-page-title h1::after,
.entry-section > h2::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 3px;
  background: var(--accent);
  margin-top: 0.65rem;
}

.simple-page-title p {
  max-width: var(--reading-width);
  margin-top: 1.2rem;
}


/* =========================================================
   5. General prose helpers
   ========================================================= */

.prose {
  max-width: 820px;
}

.prose p {
  font-size: 1.02rem;
}

.bright-prose p {
  color: var(--text-bright);
}


/* =========================================================
   6. Landing home page
   Full-screen video opening section.
   ========================================================= */

.landing-page .site-header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(244, 241, 235, 0.08);
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.72), rgba(15, 15, 16, 0.18));
}

.landing-page .site-header:hover,
.landing-page .site-header:focus-within {
  background: rgba(15, 15, 16, 0.94);
}

.landing-home-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: end start;
  background:
    radial-gradient(circle at 82% 72%, rgba(200, 58, 50, 0.32), transparent 18rem),
    linear-gradient(135deg, #272626 0%, #111112 55%, #050505 100%);
}

.landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.landing-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 15, 16, 0.36) 0%, rgba(15, 15, 16, 0.18) 42%, rgba(15, 15, 16, 0.82) 100%),
    radial-gradient(circle at bottom right, rgba(200, 58, 50, 0.2), transparent 22rem);
}

.landing-title-block {
  position: absolute;
  z-index: 3;
  left: clamp(1.5rem, 7vw, 6rem);
  bottom: clamp(5rem, 13vh, 9rem);
  width: fit-content;
  max-width: 88vw;
  pointer-events: none;
}

.landing-title-block h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6.2vw, 3.9rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: rgba(241, 238, 232, 0.94);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.62);
}

.landing-tagline {
  margin: 1rem 0 0 0.12rem;
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.35vw, 1.15rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.landing-title-block::after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  margin-top: 1rem;
  margin-left: 0.12rem;
  background: var(--accent);
}

.scroll-cue {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4.5rem);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-bright);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.35rem;
}


/* =========================================================
   7. Home page lower introduction and feature tiles
   ========================================================= */

.home-introduction {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(15rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.home-introduction-copy {
  max-width: var(--reading-width);
}

.home-introduction-copy p {
  margin: 0 0 1.25rem;
  color: var(--text-bright);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.home-introduction-copy p:nth-child(3) {
  color: var(--muted);
}

.home-feature-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  position: sticky;
  top: 6.5rem;
}

.feature-tile {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(15, 15, 16, 0.2), rgba(15, 15, 16, 0.76)),
    linear-gradient(135deg, #242323 0%, #19191a 62%, #111112 100%);
  display: flex;
  align-items: end;
  padding: 0.9rem;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.feature-tile::before {
  content: "";
  position: absolute;
  width: 62%;
  height: 2px;
  left: 19%;
  top: 44%;
  background: var(--accent);
  opacity: 0.88;
  transform: rotate(-8deg);
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(15, 15, 16, 0.92));
}

.feature-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.feature-tile:hover {
  border-color: var(--accent-line);
}

.feature-tile:hover .feature-title {
  color: #ffffff;
}

.home-image-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  background: var(--card);
  box-shadow: -0.18rem 0.18rem 0 #242323;
}

.home-image-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 16, 0.62);
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-image-tile span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--text-bright);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.home-image-tile:hover img,
.home-image-tile:focus-visible img {
  transform: scale(1.035);
  filter: grayscale(20%);
}

.home-image-tile:hover::after,
.home-image-tile:focus-visible::after,
.home-image-tile:hover span,
.home-image-tile:focus-visible span {
  opacity: 1;
}

.home-image-tile:hover span,
.home-image-tile:focus-visible span {
  transform: translateY(0);
}

.home-closing-profile {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.home-closing-profile img {
  width: min(32vw, 16rem);
  height: auto;
  border: 1px solid var(--line);
  box-shadow: -0.22rem 0.22rem 0 #242323;
}

@media (max-width: 760px) {
  .home-image-tile::after {
    opacity: 0.42;
  }

  .home-image-tile span {
    opacity: 1;
    transform: none;
    font-size: 0.72rem;
  }

  .home-closing-profile {
    justify-content: flex-start;
  }

  .home-closing-profile img {
    width: min(70vw, 16rem);
  }
}

.home-side-column {
  position: sticky;
  top: 6.5rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-side-column .home-feature-area {
  position: static;
}

.home-closing-profile-side {
  max-width: none;
  margin: auto 0 0;
  padding: 0;
  display: block;
}

.home-closing-profile-side img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  box-shadow: -0.22rem 0.22rem 0 #242323;
}

/* =========================================================
   8. Legacy home/banner placeholders
   Safe to keep in case an older block still appears.
   ========================================================= */

.home-main {
  padding-top: 2.4rem;
}

.home-banner {
  margin: 0 0 2.8rem;
}

.banner-placeholder {
  min-height: clamp(14rem, 34vw, 26rem);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(15, 15, 16, 0.42), rgba(15, 15, 16, 0.62)),
    linear-gradient(135deg, #272626 0%, #19191a 42%, #0f0f10 100%);
  position: relative;
  overflow: hidden;
}

.banner-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(200, 58, 50, 0.13) 55%, transparent 100%),
    radial-gradient(circle at 78% 68%, rgba(200, 58, 50, 0.22), transparent 16rem);
}

.banner-placeholder span {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(244, 241, 235, 0.88);
}

.home-text {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.home-text p {
  margin: 0 0 1.25rem;
  color: var(--text-bright);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.home-text p:nth-child(3) {
  color: var(--muted);
}


/* =========================================================
   9. Practice and Research entry lists
   Shared row layout for project/publication entries.
   ========================================================= */

.entry-section {
  margin: 0 0 4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--accent-faint);
}

.entry-section > h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  text-transform: none;
}

.entry-list {
  display: grid;
  gap: 0;
}

.entry-row {
  display: grid;
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 6rem;
}

.entry-row:last-child {
  border-bottom-color: transparent;
}

.entry-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 6.5rem;
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: -0.2rem 0.2rem 0 #242323;
}

.entry-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.entry-copy h3 {
  margin-bottom: 0.45rem;
  color: var(--text-bright);
}

.entry-copy p {
  margin: 0;
  max-width: 760px;
}

.entry-title-link,
.entry-description-link {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.entry-title-link:hover,
.entry-title-link:focus-visible,
.entry-description-link:hover,
.entry-description-link:focus-visible {
  color: var(--accent);
}


/* =========================================================
   10. Research-specific image proportions
   Practice uses 16:9. Research uses 3:2.
   ========================================================= */

#journal-articles .entry-media,
#book-chapters .entry-media,
#conference-proceedings .entry-media,
#reviews .entry-media,
#presentations .entry-media {
  aspect-ratio: 3 / 2;
}

#journal-articles .entry-row,
#book-chapters .entry-row,
#conference-proceedings .entry-row,
#reviews .entry-row,
#presentations .entry-row {
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
}


/* =========================================================
   11. Placeholder media boxes
   Used only where an image has not yet been inserted.
   ========================================================= */

.placeholder-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(15, 15, 16, 0.35), rgba(15, 15, 16, 0.7)),
    linear-gradient(135deg, #242323 0%, #19191a 62%, #111112 100%);
}

.placeholder-media::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 2px;
  background: var(--accent);
  top: 42%;
  left: 26%;
  opacity: 0.9;
}

.placeholder-media span {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
}


/* =========================================================
   12. About page
   Full-width bio area with floated editorial images.
   ========================================================= */

.about-layout,
.about-grid {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.about-copy,
.about-copy.prose,
.profile-copy,
.bio-copy {
  display: block;
  width: 100%;
  max-width: 100%;
}

.about-copy p,
.profile-copy p,
.bio-copy p {
  max-width: none;
}

.about-display {
  margin: -0.35rem 0 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text-bright);
  text-shadow: none;
  max-width: 64rem;
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(15, 15, 16, 0.36), rgba(15, 15, 16, 0.7)),
    linear-gradient(140deg, #252424 0%, #171718 70%);
  color: var(--quiet);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-image {
  margin: 0.25rem 0 1.5rem;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: -0.22rem 0.22rem 0 #242323;
}

.about-image-left {
  float: left;
  width: min(34%, 16rem);
  margin: 0.2rem 1.5rem 1rem 0;
}

.about-image-right {
  float: right;
  width: min(34%, 16rem);
  margin: 0.2rem 0 1rem 1.5rem;
}

.about-image-wide {
  clear: both;
  width: min(100%, 46rem);
  margin: 2.5rem auto;
}

.about-image-portrait {
  clear: both;
  width: min(100%, 34rem);
  margin: 2.5rem auto;
}

.about-image-side-right {
  float: right;
  clear: none;
  width: min(44%, 34rem);
  margin: 0.25rem 0 1.25rem 1.75rem;
}

.about-image-side-left {
  float: left;
  clear: none;
  width: min(44%, 34rem);
  margin: 0.25rem 1.75rem 1.25rem 0;
}

.about-image-closing {
  width: min(100%, 38rem);
}

.about-image figcaption {
  margin-top: 0.55rem;
  color: var(--quiet);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy::after {
  content: "";
  display: block;
  clear: both;
}

.about-page .prose {
  max-width: none;
  width: 100%;
}

.about-page .prose {
  max-width: none;
  width: 100%;
}

.about-page .prose p {
  max-width: none;
  line-height: 1.58;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* =========================================================
   13. Footer and social links
   ========================================================= */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.9rem;
}

.site-footer p {
  color: var(--quiet);
  margin: 1.2rem 0 0;
  text-align: center;
}

.social-footer {
  border-top: 0;
  padding-top: 2.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  color: var(--text-bright);
}


/* =========================================================
   14. Anchor-scroll helpers
   Keeps linked sections clear of sticky header.
   ========================================================= */

.content-section,
.section-heading {
  scroll-margin-top: 6rem;
}


/* =========================================================
   15. Responsive layout
   Tablet and small desktop adjustments.
   ========================================================= */

@media (max-width: 880px) {
  .home-introduction {
    grid-template-columns: 1fr;
  }

  .home-side-column {
    position: static;
    display: block;
    max-width: 28rem;
  }

  .home-feature-area {
    position: static;
    max-width: 28rem;
  }

  .home-closing-profile-side {
    width: 100%;
    margin: 1.5rem 0 0;
  }

  .home-closing-profile-side img {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   16. Responsive layout
   Mobile adjustments.
   ========================================================= */

@media (max-width: 760px) {
  body {
    font-size: 0.94rem;
  }

  main {
    padding-top: 2.2rem;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .landing-page .site-header {
    position: sticky;
    background: rgba(15, 15, 16, 0.94);
  }

  .landing-hero {
    min-height: 82vh;
  }

  .landing-title-block {
    left: 1.25rem;
    bottom: 5rem;
    max-width: calc(100vw - 2.5rem);
  }

  .landing-title-block h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    white-space: nowrap;
  }

  .landing-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .scroll-cue {
    margin-left: 1.25rem;
  }

  .home-main {
    padding-top: 1.25rem;
  }

  .home-feature-area {
    grid-template-columns: 1fr 1fr;
  }

  .home-introduction-copy p,
  .entry-copy p,
  .about-copy p,
  .page-intro p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .entry-row,
  #journal-articles .entry-row,
  #book-chapters .entry-row,
  #conference-proceedings .entry-row,
  #reviews .entry-row,
  #presentations .entry-row {
    grid-template-columns: 1fr;
  }

  .entry-copy h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .entry-media {
    max-width: none;
    box-shadow: -0.18rem 0.18rem 0 #242323;
  }

  .section-heading h2 {
    font-size: 1.25rem;
  }

  .banner-placeholder {
    min-height: 12rem;
  }

  .about-display {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .portrait-placeholder {
    max-width: 18rem;
  }
}

@media (max-width: 760px) {
  .about-image-left,
  .about-image-right,
  .about-image-wide,
  .about-image-portrait,
  .about-image-closing,
  .about-image-side-right,
  .about-image-side-left {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }
}

@media (max-width: 760px) {
  .home-side-column {
    position: static;
    display: block;
  }

  .home-closing-profile-side {
    margin: 1.5rem 0 0;
  }

  .home-closing-profile-side img {
    width: min(70vw, 16rem);
  }
}

/* =========================================================
   17. Reduced motion
   Hides the landing video for users requesting reduced motion.
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .landing-video {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-side-column {
    width: 100%;
    max-width: none;
  }

  .home-feature-area {
    width: 100%;
    max-width: none;
  }

  .home-closing-profile,
  .home-closing-profile-side {
    width: 100%;
    max-width: none;
  }

  .home-closing-profile-side img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
}