/* ============================================================
   ABOUT PAGE — v41
   Desktop: each section = 100vh, content centred vertically
   Mobile:  natural content height, no 100vh constraint
   ============================================================ */

.about-page {
  background: #fff;
}

/* ================================================================
   BASE SECTION
   ================================================================ */
.about-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vh, 160px) clamp(40px, 8vw, 160px);
  box-sizing: border-box;
  position: relative;
}

.about-section--centered {
  align-items: center;
  text-align: center;
}

/* ---- Hairline between sections ---- */
.about-divider {
  border: none;
  border-top: 0.5px solid #e8e8e8;
  margin: 0;
}

/* ---- Section label ---- */
.about-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: clamp(24px, 3.5vh, 44px);
}

/* ================================================================
   DISPLAY HEADINGS
   ================================================================ */
.about-display-heading {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(64px, 7.2vw, 140px);
  font-weight: 400;
  color: #111;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(10px, 1.4vh, 20px);
  text-transform: none !important;
}

/* Italic subtitle "to perfection." */
.about-display-sub {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: #999;
  margin: 0 0 clamp(32px, 5vh, 60px);
}

/* ---- Shared body text ---- */
.about-body-text,
.about-body-text p {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.9;
  color: #111;
  max-width: 520px;
  margin: 0 auto;
}

/* ================================================================
   WHO WE ARE
   ================================================================ */
.about-section--who {
  justify-content: center;
}

.about-who-wrap {
 flex: 1;
    display: flex;
    grid-template-columns: 50% 42%;
    gap: 140px;
    align-items: stretch;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    max-height: 600px;
    flex-direction: column;
}

/* Left column */
.about-who-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-who-heading {
  font-family: 'Tenor Sans', sans-serif;
  text-align: left;
    font-size: clamp(54px, 7.2vw, 140px);  font-weight: 400;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none !important;
  /* Force 2 lines at all scales — em is relative to font-size so it scales */
  max-width: 9em;
}

/* Right column — body text pushed to bottom */
.about-who-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 0;
  align-items: flex-end;
}

.about-who-text {
  max-width: 50%;
}

.about-who-text,
.about-who-text p {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #333 !important;
  margin: 0;
  text-align: left;
}

.about-who-text p:empty { display: none; }

/* ================================================================
   CAPABILITIES
   ================================================================ */
.about-cap-wrap {
  max-width: 860px;
  width: 100%;
}

.about-section--capabilities .about-display-heading {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.about-section--capabilities .about-display-sub {
  display: none;
}

/* Body text: wider max-width to land on ~2 lines */
.about-section--capabilities .about-body-text,
.about-section--capabilities .about-body-text p {
  max-width: 800px;
}

/* ================================================================
   CLIENTS / TRUSTED BY
   ================================================================ */
.about-clients-wrap {
  max-width: 720px;
  width: 100%;
}

/* Body text: wider for ~2 lines */
.about-section--clients .about-body-text,
.about-section--clients .about-body-text p {
  max-width: 1200px;
}

/* "Trusted by" super-heading */
.about-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  margin-bottom: 30px !important;
  display: block;
  color: #111;
	letter-spacing: 3px;
	font-weight: 700;
	text-transform: uppercase;
}
.about-section--clients .about-display-heading {
	    font-size: clamp(64px, 5.2vw, 140px);
}
/* Logo row */
.about-logos {
  list-style: none;
  margin: clamp(48px, 7vh, 80px) 0 0;
  padding: 0;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

.about-logos__item {
  flex: 0 0 calc(20% - 13px); 
  max-width: calc(20% - 13px);
  display: flex;
  justify-content: center;
  align-items: center;
	margin-bottom: 30px;
}

.about-logos__img {
/*   height: clamp(16px, 1.55vw, 28px);
  width: auto;
  max-width: 120px; */
	height: auto;
    width: 100%;
    max-width: 120px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

.about-logos li:nth-child(5) .about-logos__img {
  height: clamp(22px, 2.2vw, 40px);
}

.about-logos__item:hover .about-logos__img { opacity: 1; }

/* ================================================================
   AT A GLANCE
   ================================================================ */
.about-section--glance {
  justify-content: center;
}

.about-glance-wrap {
  max-width: max-content;
  width: 100%;
  margin: 0;
}

.about-section--glance .about-label {
  margin-bottom: clamp(44px, 6.5vh, 72px);
}

.about-glance-table {
  display: flex;
  flex-direction: column;
}

.about-glance-row {
  display: grid;
  grid-template-columns: clamp(100px, 11vw, 170px) 1fr;
  align-items: baseline;
  gap: clamp(24px, 16vw, 450px);
  padding: clamp(24px, 3.2vh, 40px) 0;
}

.about-glance-row__label {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9a9a9a;
  white-space: nowrap;
}

.about-glance-row__value {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
}

.about-glance-wrap .about-display-heading {
  margin-bottom: 60px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.about-testimonials-head {
  margin-bottom: clamp(28px, 4vh, 48px);
  text-align: center;
}

.about-testimonials-head .about-display-heading {
/*   font-size: 80px; */
}

.about-testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6.5vh, 72px);
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.about-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-testimonial__text {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.65;
  color: #111;
  margin: 0 0 20px;
}

/* Attribution: stacked — name bold, company light beneath */
.about-testimonial__cite {
  display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
}

.about-testimonial__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
	font-style: normal;
}

.about-testimonial__company {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #111;
  font-style: normal;
}
.about-testimonial__separator{
	    font-size: 20px;
    position: relative;
    top: -6px;

}

.about-testimonial__sep { display: none; }

.about-testimonial.about-testimonial--hidden { display: none; }

.about-testimonials-more {
  text-align: center;
  margin-top: clamp(36px, 5.5vh, 60px);
}

.about-reviews-link {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #111;
  text-decoration: none;
  border: none;
  padding: 0;
  background: none !important;
  display: inline-block;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-style: italic;
  user-select: none;
}

.about-reviews-link__inner {
  display: inline-block;
  white-space: nowrap;
}

.about-reviews-link:hover,
.about-reviews-link:focus,
.about-reviews-link:active {
  color: #666;
  background: none !important;
  outline: none;
  box-shadow: none !important;
}

.about-reviews-link:hover .about-reviews-link__inner,
.about-reviews-link:focus .about-reviews-link__inner {
  border-bottom-color: #aaa;
}

/* ================================================================
   MANAGEMENT
   ================================================================ */
.about-mgmt-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.about-section--management .about-label {
  margin-bottom: clamp(44px, 6.5vh, 72px);
  font-size: clamp(30px, 4.5vw, 70px);
}

.about-team-list {
  display: flex;
  flex-direction: column;
  gap: clamp(52px, 7.5vh, 88px);
}

.about-team-member {
  display: grid;
  grid-template-columns: clamp(180px, 22%, 270px) 1fr;
  gap: clamp(40px, 5.5vw, 88px);
  align-items: start;
}

.about-team-member__name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 38px;
  font-weight: 400;
  text-transform: none !important;
  letter-spacing: 0;
  color: #111;
  margin: 0 0 10px;
}

.about-team-member__role {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #9a9a9a;
  margin: 0;
  line-height: 1.6;
}

.about-team-member__bio {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.9;
  color: #111;
}

.about-team-member__bio p { margin-bottom: 1em; }
.about-team-member__bio p:last-child { margin-bottom: 0; }

.about-team-tagline,
.about-team-tagline p {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #333;
  text-align: left;
  margin: clamp(60px, 8.5vh, 96px) 0 0;
  line-height: 1.6;
  max-width: max-content;
}

/* ================================================================
   CONTACT
   ================================================================ */
.about-contact-wrap {
  max-width: 680px;
  width: 100%;
}

.about-contact-heading,
.about-contact-heading p {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(64px, 7.2vw, 120px);
  font-weight: 400;
  color: #111;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(18px, 2.5vh, 30px);
  text-transform: none !important;
}

.about-contact-heading p:empty { display: none; }

.about-contact-text,
.about-contact-text p {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  color: #9a9a9a;
  margin: 0 auto clamp(40px, 5.5vh, 60px);
}

.about-contact-text p:empty { display: none; }

.about-contact-btn {
      display: inline-block;
    background: #111;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 40px 90px;
    border-radius: 50px;
    transition: background 0.2s ease;
    margin-top: 50px;
}
}

.about-contact-btn:hover {
  background: #333;
  color: #fff;
}

/* ================================================================
   FOOTER — preserved from original (other pages)
   ================================================================ */
body.page-template-page-about .sub-footer {
  background: #fff;
}

body.page-template-page-about .sub-footer .button.black {
  padding: 8px 16px;
  margin-bottom: 4rem;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: none;
  font-weight: 400;
}

.about-pre-footer {
  width: fit-content;
  background: #fff;
  padding: 28px 40px;
  text-align: center;
}

.about-pre-footer__backtotop {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6b6560;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.about-pre-footer__backtotop:hover { opacity: 0.6; }
.about-pre-footer__arrow { font-size: 13px; line-height: 1; }

.about-footer-black {
  background: #000;
  padding: 65px 24px 44px;
}

.about-footer-black__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-footer-black__label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a8880;
}

.about-footer-black__ig-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.about-footer-black__ig-link:hover { opacity: 0.7; }
.about-footer-black__ig-icon { width: 44px; height: 44px; }

.about-footer-black__handle {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a8880;
}

.about-footer-black__location {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5a5a55;
  margin-top: 32px;
}

/* ================================================================
   SCROLL-TO-TOP ARROW (About page)
   ================================================================ */
.page-template-page-about .scroll-to-top {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='22' cy='22' r='21' stroke='%23cccccc' stroke-width='1'/%3E%3Cpath d='M22 32V10M17 17L22 10L27 17' stroke='%23666666' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 44px 44px;
  background-position: center;
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
  /* Add breathing room from page edge */
  bottom: 24px !important;
  right: 24px !important;
}

.page-template-page-about .scroll-to-top:hover {
  background-color: transparent;
  opacity: 0.6;
}

/* ================================================================
   DESKTOP HEADER OFFSET  ≥ 1025 px
   ================================================================ */
@media screen and (min-width: 1025px) {
  .about-section {
    min-height: calc(100vh - 100px);
  }
}

/* ================================================================
   2K / 4K  ≥ 1920 px
   ================================================================ */
@media screen and (min-width: 1920px) {
  .about-section--capabilities .about-body-text,
  .about-section--capabilities .about-body-text p {
    max-width: 1400px;
  }

  .about-section {
    min-height: calc(100vh - 122px);
  }

  .about-contact-text,
  .about-contact-text p {
    font-size: 32px;
  }

  .about-team-member__bio {
    font-size: 28px;
  }

  .about-glance-row__label {
    font-size: 20px;
  }

  .about-body-text,
  .about-body-text p {
    max-width: 900px;
  }

  .about-team-tagline,
  .about-team-tagline p {
    max-width: max-content;
	  font-size: 28px;
  }

  .about-who-text,
  .about-who-text p,
  .about-body-text,
  .about-body-text p {
    font-size: 32px;
  }

  .about-glance-row__value {
    font-size: 42px;
  }

  .about-section {
    padding: 60px 0;
    max-width: 1780px;
    margin: 0 auto;
  }

  .about-who-wrap      { max-width: 1920px; max-height: 600px; }
  .about-mgmt-wrap     { max-width: 1920px; }
  .about-glance-wrap   { max-width: max-content; }
  .about-cap-wrap      { max-width: 1400px; }
  .about-clients-wrap  { max-width: 1100px; }
  .about-contact-wrap  { max-width: 960px; }
  .about-testimonials-grid { max-width: 740px; }

  .about-logos {
    width: 80%;
    gap: 0px;
    justify-content: center;
  }

  .about-logos__img {
    max-width: 190px;
    opacity: 1;
    height: auto;
  }

  .about-logos li:nth-child(5) .about-logos__img {
    height: clamp(26px, 2vw, 56px);
  }
}

@media screen and (min-width: 2048px) {
  .about-section {
    padding: 60px 0;
    max-width: 2000px;
    margin: 0 auto;
    min-height: calc(100vh - 140px);
  }

  .about-who-wrap {
    max-width: 2000px;
    max-height: max-content;
  }
	.about-who-text {
    max-width: 33%;
}
}

/* ================================================================
   TABLET  768 px – 1024 px
   ================================================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section {
    padding: clamp(64px, 8vh, 100px) clamp(40px, 5.5vw, 72px);
  }
	.about-who-text p br {
		display: none;
	}

  .about-who-wrap {
    flex: unset;
    grid-template-columns: 55% 45%;
  }

  .about-logos { gap: clamp(20px, 2.8vw, 40px); }

  .about-team-member {
    grid-template-columns: clamp(160px, 22%, 220px) 1fr;
    gap: clamp(28px, 3.5vw, 52px);
  }

  .about-testimonials-grid.about-testimonials-grid--expanded .about-testimonial--hidden {
    display: flex;
  }
}

/* ================================================================
   MOBILE  ≤ 767 px
   ================================================================ */
@media screen and (max-width: 767px) {
	.about-who-text p br {
		display: none;
	}
	.about-body-text, .about-body-text p {
		line-height: 1.5;
	}
	.about-section--capabilities .about-display-heading {
    
    margin-bottom: 40px;
}
  .about-section {
    min-height: unset;
    padding: clamp(56px, 10vh, 80px) 28px;
  }

  .about-section--who {
    justify-content: flex-start;
  }

  .about-who-wrap {
    flex: unset;
    grid-template-columns: 1fr;
    align-items: start;
	  max-height: max-content;
	  gap: 0;
  }

  .about-who-left,
  .about-who-right {
    justify-content: flex-start;
  }

  .about-who-heading {
    font-size: 48px;
    max-width: none;
  }

  .about-who-right {
    padding-left: 0;
    margin-top: clamp(32px, 5vh, 52px);
  }

  .about-who-text,
  .about-who-text p {
    text-align: left;
	  max-width: max-content;
	      font-size: 28px;
    font-weight: 400;
    line-height: 1.5;

  }
	.about-testimonials-head {
		margin-bottom: 0;
	}

  .about-display-heading {
    font-size:40px;
	      margin-bottom: 40px;

  }
	.about-testimonials-head .about-display-heading {
    font-size: 44px;
}
	.about-glance-wrap .about-display-heading {
		 margin-bottom: 40px;
	}

  .about-display-sub {
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .about-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-top: clamp(36px, 5vh, 52px);
	  max-width: 85%;
  }

  .about-logos__item { flex: 0 0 calc(30% - 13px);
	max-width: calc(30% - 13px);}

  .about-logos__img {
/*     height: clamp(14px, 4.5vw, 22px);
    max-width: 76px; */
  }

  .about-logos li:nth-child(5) .about-logos__img {
    height: clamp(20px, 6vw, 30px);
  }

  .about-glance-row {
    grid-template-columns: 1fr;
    gap: 6px;
	      padding: 20px 0;
  }

  .about-glance-row__value {
    font-size: 28px;
  }

  .about-team-member {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-team-member__name {
    font-size: 36px;
  }

  .about-contact-heading,
  .about-contact-heading p {
    font-size: clamp(44px, 12.5vw, 66px);
  }

  .about-testimonial__text {
    font-size: 20px;
  }
	.about-testimonials-grid {
		gap: 40px;
	}
	.about-contact-btn {
		    padding: 20px 60px;
   
    font-size: 18px;
    margin-top: 20px;
	}

  .about-testimonials-grid.about-testimonials-grid--expanded .about-testimonial--hidden {
    display: flex;
  }

  .about-pre-footer { padding: 22px 24px; }

  .about-section--management .about-label {
    font-size: clamp(28px, 8vw, 44px);
  }
	.about-team-tagline p,
	.about-team-tagline{
		    font-size: 20px;
		margin-top: 40px;
	}
}

/* ================================================================
   SITE-WIDE CUSTOM FOOTER
   NOTE: copy this entire block into your main theme stylesheet
   so it applies on all pages (not just about page).
   ================================================================ */

/* Hide default theme footer elements */
footer.site-footer,
.site-footer,
#colophon,
.sub-footer,
.main-footer {
  display: none !important;
}

.about-custom-footer {
  background: #eeeae3;
  color: #1a1a1a;
  padding: clamp(44px, 6vh, 72px) clamp(40px, 6vw, 96px) 0;
}

/* 3-column grid: nav | center (truly page-centered) | empty right mirror */
.about-footer__inner {
  display: grid;
  grid-template-columns: clamp(140px, 16vw, 220px) 1fr clamp(140px, 16vw, 220px);
  align-items: center;
  min-height: clamp(200px, 26vh, 300px);
}

/* Left: nav links */
.about-footer__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 24px);
  align-self: center;
}

.about-footer__nav a {
  font-family: 'Lato', sans-serif;
  font-size: clamp(9px, 0.6vw, 11px);
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.about-footer__nav a:hover {
  color: #111;
}

/* Center: location + Instagram — truly centered on page */
.about-footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.5vh, 40px);
}

.about-footer__location {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  letter-spacing: clamp(4px, 0.4vw, 8px);
  text-transform: uppercase;
  color: #111;
  margin: 0;
  line-height: 1;
  text-align: center;
}

/* Instagram icon — dark filled box, white icon */
.about-footer__ig-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #1a1a1a;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.about-footer__ig-link:hover {
  opacity: 0.75;
}

.about-footer__ig-icon {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

/* Bottom: copyright */
.about-footer__copy {
  text-align: center;
  margin-top: 50px;
  padding-bottom: clamp(28px, 4vh, 44px);
}

.about-footer__copy span {
  font-family: 'Lato', sans-serif;
  font-size: clamp(7px, 0.45vw, 9px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .about-custom-footer {
    padding: 48px 28px 0;
  }

  .about-footer__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: unset;
  }

  .about-footer__nav {
    gap: 18px;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
  }

  .about-footer__nav a {
    font-size: 10px;
    letter-spacing: 3px;
	  display: inline;
        max-width: max-content;
  }

  .about-footer__location {
    font-size: 20px;
        letter-spacing: 3px;
        line-height: 1.3;
  }

  .about-footer__ig-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .about-footer__ig-icon {
    width: 26px;
    height: 26px;
  }
/* 	new mobile */
	.about-who-heading,
	.about-section--clients .about-display-heading{
        font-size: 36px;
    }
	.about-label,
	.about-glance-row__label,
	.about-team-member__role{
		font-size: 12px;
	}
	..about-team-member__role {
		letter-spacing: 0;
	}
	.about-who-text, .about-who-text p,
	.about-body-text, .about-body-text p,
	.about-subheading,
	.about-team-tagline p, .about-team-tagline{
		font-size: 16px;
	}
	.about-glance-row__value {
        font-size: 18px;
    }
	.about-team-member__bio {
   
    font-size: 16px;
    
    line-height: 1.5;

	}
	.about-team-member__name {
        font-size: 26px;
    }
	    .about-section--management .about-label {
        font-size: 24px;
    }
}


