:root {
  --bg: #ebe6db;
  --surface: #f7f2e8;
  --text: #454545;
  --muted: #697962;
  --primary: #ad6f7d;
  --primary-dark: #8c5865;
  --accent: #bdab9c;
  --line: rgba(173, 111, 125, 0.18);
  --shadow: 0 18px 35px rgba(69, 69, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(173, 111, 125, 0.12) 0%, transparent 38%),
    radial-gradient(circle at left bottom, rgba(189, 171, 156, 0.18) 0%, transparent 32%),
    linear-gradient(180deg, #f7f3eb 0%, var(--bg) 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin-top: 0;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.background-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.shape-one {
  width: 300px;
  height: 300px;
  background: linear-gradient(140deg, rgba(173, 111, 125, 0.28), rgba(235, 230, 219, 0.1));
  top: 5rem;
  right: -90px;
}

.shape-two {
  width: 250px;
  height: 250px;
  background: linear-gradient(140deg, rgba(105, 121, 98, 0.18), rgba(189, 171, 156, 0.12));
  left: -70px;
  bottom: 12%;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(247, 243, 235, 0.88);
  border-bottom: 1px solid rgba(173, 111, 125, 0.12);
  z-index: 40;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: 74px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  padding: 5.5rem 0 3.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 62ch;
  color: #5d5652;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: #fff;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.9s ease both;
}

.hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel li {
  display: grid;
  gap: 0.2rem;
  border-left: 2px solid var(--line);
  padding-left: 0.7rem;
}

.hero-panel strong {
  font-size: 0.96rem;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-panel-link:hover {
  text-decoration: underline;
}

.section {
  padding: 3.2rem 0;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.post-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(69, 69, 69, 0.12);
}

.post-tag {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.post-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.post-card p {
  color: #5f5a55;
}

.post-card a {
  font-weight: 600;
  color: var(--primary-dark);
}

.post-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.post-card-empty {
  grid-column: 1 / -1;
  max-width: 520px;
}

.section-band {
  background: linear-gradient(180deg, rgba(247, 242, 232, 0.7) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
  gap: clamp(3rem, 5vw, 4.5rem);
  align-items: start;
}

.manifesto-main-column {
  min-width: 0;
}

.manifesto-side-column {
  min-width: 0;
}

.manifesto-copy h2 {
  max-width: 16ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1.6rem, 2.45vw, 2.2rem);
  line-height: 1.08;
}

.manifesto-title-line {
  display: block !important;
  white-space: nowrap !important;
}

.manifesto-copy .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 0.95rem;
}

.manifesto-copy p {
  max-width: 34rem;
  margin: 0;
  color: #5d5652;
  font-size: 1.04rem;
}

.manifesto-copy p + p {
  margin-top: 1rem;
}

.manifesto-card-stack {
  display: grid;
  gap: 1rem;
}

.manifesto-card {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.manifesto-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(69, 69, 69, 0.08);
  border-color: rgba(173, 111, 125, 0.24);
}

.manifesto-card-media {
  min-height: 164px;
  border-radius: 16px;
  background-color: #efe8dd;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.manifesto-card-media::before,
.manifesto-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.manifesto-card-media-work {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    url("assets/image-manifesto-card1.png");
  background-size: cover;
  background-position: center;
}

.manifesto-card-media-work::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(35, 28, 24, 0.16));
}

.manifesto-card-media-work::after {
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(32, 24, 20, 0), rgba(32, 24, 20, 0.24));
}

.manifesto-card-media-intention {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 35%),
    url("assets/image-manifesto-card2.png");
  background-size: cover;
  background-position: center;
}

.manifesto-card-media-intention::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(35, 28, 24, 0.14));
}

.manifesto-card-media-intention::after {
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(32, 24, 20, 0), rgba(32, 24, 20, 0.2));
}

.manifesto-card-media-life {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    url("assets/image-manifesto-card3.png");
  background-size: cover;
  background-position: center;
}

.manifesto-card-media-life::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(35, 28, 24, 0.16));
}

.manifesto-card-media-life::after {
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(32, 24, 20, 0), rgba(32, 24, 20, 0.24));
}

.manifesto-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.2rem 0.2rem;
}

.manifesto-card-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.28rem;
  line-height: 1.12;
}

.manifesto-card-body p {
  color: var(--muted);
  margin: 0;
}

.partners-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.partner-card h3 {
  margin: 0;
}

.partner-card p,
.partner-card li {
  color: #5f5a55;
}

.partner-card-featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(235, 230, 219, 0.9));
}

.partner-card-head {
  display: block;
  margin-bottom: 1rem;
}

.partner-copy {
  display: grid;
  gap: 0.8rem;
}

.partner-copy p {
  margin: 0;
}

.partner-email {
  color: var(--primary-dark);
  font-weight: 600;
}

.partner-email:hover {
  text-decoration: underline;
}

.partner-actions {
  margin-top: 1.25rem;
}

.partner-action-title {
  margin: 0 0 0.8rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.partner-button-group {
  display: grid;
  gap: 0.75rem;
}

.partner-button,
.partner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(173, 111, 125, 0.24);
  background: var(--primary);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 22px rgba(173, 111, 125, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.partner-button:hover,
.partner-cta:hover {
  transform: translateY(-2px);
  border-color: var(--primary-dark);
  box-shadow: 0 14px 24px rgba(173, 111, 125, 0.24);
  background: var(--primary-dark);
}

.about-card {
  background: linear-gradient(135deg, rgba(247, 242, 232, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

.newsletter {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 171, 156, 0.45);
  border-radius: 16px;
  padding: 1rem;
  align-self: start;
}

.newsletter label {
  font-weight: 600;
  display: block;
}

.newsletter-fields {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.newsletter-field span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter-row {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  width: 100%;
  border: 1px solid rgba(189, 171, 156, 0.75);
  border-radius: 16px;
  padding: 0.65rem 0.9rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(173, 111, 125, 0.12);
}

.newsletter button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.newsletter button:hover {
  background: var(--primary-dark);
}

.newsletter small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.newsletter-honeypot {
  position: absolute;
  left: -5000px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
}

.section-tight {
  padding-top: 1rem;
}

.blog-hero {
  padding-bottom: 0.8rem;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}

.blog-hero p {
  color: #5d5652;
  max-width: 70ch;
}

.blog-listing {
  display: grid;
  gap: 1rem;
}

.post-list-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.post-list-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: 0.6rem;
}

.post-list-card p {
  color: #5f5a55;
  max-width: 80ch;
}

.post-list-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.post-list-card .btn {
  margin-top: 0.5rem;
}

.post-list-card-empty {
  max-width: 760px;
}

.article-shell {
  width: min(980px, 92vw);
}

.article-layout {
  max-width: 860px;
}

.article-layout h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.article-layout h2 {
  margin-bottom: 0.5rem;
  margin-top: 1.8rem;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.article-layout p {
  color: #5d5652;
}

.article-back,
.article-header,
.article-body,
.article-tip {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 1.2rem;
}

.article-header {
  margin-bottom: 1.6rem;
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-cover,
.article-inline-media,
.article-inline-image {
  max-width: 720px;
  margin: 1.6rem auto 2rem;
}

.article-body figure,
.article-body > img {
  max-width: 720px;
  margin: 1.6rem auto 2rem;
}

.article-cover,
.article-cover img,
.article-inline-media img,
.article-inline-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

img.article-cover,
.article-cover img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  max-height: 460px;
}

.article-body > img,
.article-inline-media img,
.article-inline-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  max-height: 360px;
}

.article-quote {
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid rgba(173, 111, 125, 0.34);
}

.article-quote p {
  margin: 0;
  font-family: "Fraunces", serif;
  color: #4c4642;
}

.article-lead {
  font-size: 1.08rem;
  color: #514c48;
  max-width: 74ch;
}

.article-tip {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.article-tip a {
  color: var(--primary-dark);
  font-weight: 600;
}

.article-tip a:hover {
  text-decoration: underline;
}

.article-resource-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: #5d5652;
}

.article-resource-list li + li {
  margin-top: 0.35rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(247, 242, 232, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  box-shadow: var(--shadow);
}

.contact-details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 171, 156, 0.45);
  border-radius: 18px;
  padding: 1.1rem;
}

.contact-details p {
  margin: 0 0 0.45rem;
}

.contact-page {
  padding-top: 4.4rem;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  align-items: start;
}

.contact-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.contact-intro {
  max-width: 62ch;
  color: #5d5652;
  margin-bottom: 1.5rem;
}

.contact-mail {
  margin: 1.2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-mail a {
  color: var(--primary-dark);
}

.contact-note {
  color: #5d5652;
}

.contact-profile-card {
  align-self: start;
  width: 220px;
  max-width: 220px;
  justify-self: end;
}

.contact-photo {
  display: block;
  width: 160px;
  max-width: 160px;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.contact-profile-copy {
  max-width: 200px;
  margin-left: auto;
  margin-top: 1rem;
  padding: 0.2rem 0.2rem 0 0.2rem;
}

.contact-profile-copy h2 {
  margin-bottom: 0.2rem;
}

.contact-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.contact-editorial-card {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-editorial-card p {
  margin: 0 0 1.2rem;
  max-width: 62ch;
  color: #5d5652;
  font-size: 1.04rem;
}

.contact-mail-label {
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.about-page {
  padding-top: 4.2rem;
}

.about-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2.4rem;
  align-items: start;
}

.about-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.about-copy h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.about-copy p {
  max-width: 66ch;
  color: #5d5652;
  margin: 0 0 1rem;
}

.about-list-card {
  margin: 1.4rem 0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.about-list-card p {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 600;
}

.about-list-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #5d5652;
}

.about-list-card li + li {
  margin-top: 0.4rem;
}

.about-side {
  width: 190px;
  max-width: 190px;
  justify-self: end;
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 150px;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-photo-caption {
  max-width: 150px;
  margin-left: auto;
  margin-top: 0.9rem;
}

.about-photo-caption h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.about-photo-caption p {
  color: var(--muted);
  margin: 0;
}

.about-newsletter {
  margin-top: 2.4rem;
  max-width: 760px;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes riseIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .hero,
  .about-card,
  .contact-card,
  .contact-page-layout,
  .about-page-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-copy h2,
  .manifesto-copy p {
    max-width: none;
  }

  .main-nav {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .manifesto-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .brand img {
    height: 58px;
  }

  .hero {
    padding-top: 3rem;
  }

  .cards-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .manifesto-card-media {
    min-height: 170px;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter button {
    width: 100%;
  }

  .post-list-card {
    padding: 1.1rem;
  }

  .article-cover,
  .article-inline-media,
  .article-inline-image {
    max-width: 100%;
  }

  .article-body figure,
  .article-body > img {
    max-width: 100%;
  }

  img.article-cover,
  .article-cover img {
    max-height: 280px;
  }

  .article-body > img,
  .article-inline-media img,
  .article-inline-image {
    max-height: 230px;
  }

  .contact-editorial-card {
    padding: 1.4rem;
  }

  .contact-photo,
  .contact-profile-copy {
    margin-left: 0;
  }

  .about-side {
    width: auto;
    max-width: none;
    justify-self: start;
  }

  .about-photo,
  .about-photo-caption {
    margin-left: 0;
  }

  .contact-profile-card {
    max-width: none;
    justify-self: start;
  }
}
