/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.
@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.
@returns {List} A list of converted values.
*/
/**
 * Contrast
 */
/**
*	Basic link hover function
*/
/*
* Fluid Type function
*/
/*
* Breakpoint Handler
* @usage: respond-to('tablet_small') { ... } to target 'tablet_small' and aboe
*/
/*
* Grid Layout
*/
/*
* Responsive Type mixins
*/
/*
* Helpers
*/
.behave-as-bg, .behave-as-bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

html.lity-active body {
  overflow: hidden;
}

.inline-video {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.inline-video.active {
  opacity: 1;
}

.post-card-container {
  margin-bottom: 2rem;
}

.post-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #2A003D;
  text-decoration: none;
  position: relative;
}
.post-card:hover .post-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.post-card:hover .post-card__title {
  color: #E60665;
}
.post-card--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-card--small .post-card__meta-row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .post-card--small .post-card__image {
    margin-bottom: 1rem;
  }
}
.post-card--small .post-card__content-meta-row {
  margin-top: auto;
}
.post-card--small .post-card__tag,
.post-card--small .post-card__category {
  font-size: 10px;
}
@media only screen and (min-width: 320px) {
  .post-card--small .post-card__tag,
  .post-card--small .post-card__category {
    font-size: calc(10px + 0 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card--small .post-card__tag,
  .post-card--small .post-card__category {
    font-size: 10px;
  }
}
.post-card--small .post-card__title {
  font-size: 16px;
}
@media only screen and (min-width: 320px) {
  .post-card--small .post-card__title {
    font-size: calc(16px + 2 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card--small .post-card__title {
    font-size: 18px;
  }
}
.post-card--medium {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .post-card--medium {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.post-card--medium .post-card__image-row {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .post-card--medium .post-card__image-row {
    height: 100%;
    margin-right: 1.5rem;
  }
}
.post-card--medium .post-card__content-row {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media (min-width: 1024px) {
  .post-card--medium .post-card__row {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .post-card--medium .post-card__image {
    height: 100%;
    aspect-ratio: 276/156;
    margin-bottom: 0;
  }
}
.post-card--medium .post-card__image img {
  height: 100%;
}
.post-card--medium-overlap .post-card__image {
  aspect-ratio: 343/292;
}
@media (min-width: 768px) {
  .post-card--medium-overlap .post-card__meta-row {
    max-width: 95%;
    background-color: #ffffff;
    padding: 1.125rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
  }
}
.post-card--medium-overlap .post-card__meta-row .post-card__tag,
.post-card--medium-overlap .post-card__meta-row .post-card__category {
  font-size: 10px;
}
@media only screen and (min-width: 320px) {
  .post-card--medium-overlap .post-card__meta-row .post-card__tag,
  .post-card--medium-overlap .post-card__meta-row .post-card__category {
    font-size: calc(10px + 0 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card--medium-overlap .post-card__meta-row .post-card__tag,
  .post-card--medium-overlap .post-card__meta-row .post-card__category {
    font-size: 10px;
  }
}
.post-card--medium-overlap .post-card__meta-row .post-card__title {
  font-size: 16px;
}
@media only screen and (min-width: 320px) {
  .post-card--medium-overlap .post-card__meta-row .post-card__title {
    font-size: calc(16px + 2 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card--medium-overlap .post-card__meta-row .post-card__title {
    font-size: 18px;
  }
}
.post-card--large .post-card__meta-row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-card--large .post-card__content-meta-row {
  margin-top: auto;
}
.post-card--xxl .post-card__image {
  aspect-ratio: 1176/463;
}
@media (min-width: 768px) {
  .post-card--xxl .post-card__image {
    margin-bottom: 0;
  }
}
.post-card--xxl .post-card__image img {
  width: 100%;
}
@media (min-width: 768px) {
  .post-card--xxl .post-card__meta-row {
    max-width: 50%;
    background-color: #ffffff;
    padding: 2rem;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
}
@media (min-width: 1024px) {
  .post-card--xxl .post-card__meta-row {
    padding: 3.5rem;
  }
}
.post-card__row {
  width: 100%;
}
.post-card__image {
  background-color: #ededed;
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 577/252;
  margin-bottom: 1rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .post-card__image {
    margin-bottom: 1.5rem;
  }
}
.post-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}
.post-card__image.no-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  text-align: center;
  color: #b1b1b1;
  padding: 1rem;
}
.post-card__image.no-image p {
  margin: 0;
}
.post-card__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-card__tag, .post-card__category {
  font-size: 10px;
}
@media only screen and (min-width: 320px) {
  .post-card__tag, .post-card__category {
    font-size: calc(10px + 2 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card__tag, .post-card__category {
    font-size: 12px;
  }
}
.post-card__tag, .post-card__category {
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.post-card__tag {
  margin-right: 1rem;
  font-weight: bold;
}
.post-card__title {
  font-size: 18px;
}
@media only screen and (min-width: 320px) {
  .post-card__title {
    font-size: calc(18px + 6 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card__title {
    font-size: 24px;
  }
}
.post-card__title {
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  margin: 0.5rem 0 1.125rem;
  -webkit-transition: 0.3s color ease-in-out;
  transition: 0.3s color ease-in-out;
}
.post-card__excerpt {
  font-size: 16px;
}
@media only screen and (min-width: 320px) {
  .post-card__excerpt {
    font-size: calc(16px + 0 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card__excerpt {
    font-size: 16px;
  }
}
.post-card__excerpt {
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}
.post-card__reading-time, .post-card__date {
  font-size: 14px;
}
@media only screen and (min-width: 320px) {
  .post-card__reading-time, .post-card__date {
    font-size: calc(14px + 0 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .post-card__reading-time, .post-card__date {
    font-size: 14px;
  }
}
.post-card__reading-time, .post-card__date {
  line-height: 1.14;
  margin-bottom: 0;
}
.post-card__reading-time {
  padding-right: 0.5rem;
  padding-left: 1.25rem;
  margin-right: 0.5rem;
  border-right: 1px solid #2A003D;
  font-weight: bold;
  background-image: url("data:image/svg+xml,%3Csvg width='14' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23060003' d='M232 120c0-13.3 10.7-24 24-24s24 10.7 24 24v123.2l85.3 56.8c11 7.4 14 22.3 5.8 33.3-6.5 11-21.4 14-32.4 5.8l-96-64c-6.7-3.6-10.7-11.1-10.7-20V120zM256 0c141.4 0 256 114.6 256 256S397.4 512 256 512 0 397.4 0 256 114.6 0 256 0zM48 256c0 114.9 93.1 208 208 208s208-93.1 208-208S370.9 48 256 48 48 141.1 48 256z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.team-card {
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  display: block;
}
.team-card:hover .team-card__content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.team-card:hover p {
  max-height: 320px;
}
.team-card__content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  color: var(--white);
  padding: 32px 32px 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: -webkit-transform 0.6s var(--slide-transition);
  transition: -webkit-transform 0.6s var(--slide-transition);
  transition: transform 0.6s var(--slide-transition);
  transition: transform 0.6s var(--slide-transition), -webkit-transform 0.6s var(--slide-transition);
}
.team-card__content:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  content: "";
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, var(--dark-aubergine)), color-stop(90%, rgba(24, 20, 34, 0)));
  background: linear-gradient(0deg, var(--dark-aubergine) 20%, rgba(24, 20, 34, 0) 90%);
  content: "";
  height: 200%;
  z-index: -1;
  position: absolute;
  top: -100%;
  left: 0;
}
.team-card__content h4 {
  font-size: 18px;
}
@media only screen and (min-width: 320px) {
  .team-card__content h4 {
    font-size: calc(18px + 14 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .team-card__content h4 {
    font-size: 32px;
  }
}
.team-card__content h4 {
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-card__content h4 + span {
  font-size: 14px;
}
@media only screen and (min-width: 320px) {
  .team-card__content h4 + span {
    font-size: calc(14px + 4 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .team-card__content h4 + span {
    font-size: 18px;
  }
}
.team-card__content h4 + span {
  line-height: 1.6;
  display: block;
  margin-bottom: 32px;
}
.team-card__content p {
  font-size: 14px;
}
@media only screen and (min-width: 320px) {
  .team-card__content p {
    font-size: calc(14px + 2 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .team-card__content p {
    font-size: 16px;
  }
}
.team-card__content p {
  display: block;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  margin-top: 16px;
  padding-bottom: 32px;
  -webkit-transition: max-height 0.6s var(--slide-transition);
  transition: max-height 0.6s var(--slide-transition);
}
.team-card picture {
  display: block;
  background-color: var(--light-grey);
  height: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team-card picture > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-card picture {
  padding-bottom: 115%;
}

.skill-card {
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
}
.skill-card:before, .skill-card__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.skill-card:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.56);
  z-index: 1;
}
.skill-card:hover .skill-card__cta > span {
  background-color: var(--magenta);
}
.skill-card:hover .skill-card__bg-image {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.skill-card__bg-image {
  z-index: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.skill-card__bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.skill-card h3 {
  font-size: 18px;
}
@media only screen and (min-width: 320px) {
  .skill-card h3 {
    font-size: calc(18px + 14 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .skill-card h3 {
    font-size: 32px;
  }
}
.skill-card h3 {
  line-height: 1.25;
  font-weight: 600;
  font-size: 22px;
}
@media only screen and (min-width: 320px) {
  .skill-card h3 {
    font-size: calc(22px + 6 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .skill-card h3 {
    font-size: 28px;
  }
}
.skill-card h3 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 50px;
  text-align: center;
  color: var(--white);
  z-index: 2;
}
@media (min-width: 1200px) {
  .skill-card h3 {
    top: 45%;
  }
}
.skill-card__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}
@media only screen and (min-width: 320px) {
  .skill-card__cta {
    font-size: calc(14px + 4 * (100vw - 320px) / (1720 - 320));
  }
}
@media only screen and (min-width: 1720px) {
  .skill-card__cta {
    font-size: 18px;
  }
}
.skill-card__cta {
  line-height: 1.6;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  z-index: 2;
  color: var(--white);
  font-weight: 500;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 769px) {
  .skill-card__cta {
    bottom: 32px;
  }
}
.skill-card__cta > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid var(--magenta);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.skill-card__cta > span > svg {
  width: 11px;
  height: 10px;
}
@media (min-width: 769px) {
  .skill-card__cta > span > svg {
    width: 17px;
    height: 16px;
  }
}
@media (min-width: 769px) {
  .skill-card__cta > span {
    width: 50px;
    height: 50px;
  }
}

.career-card h4 + span {
  margin-bottom: 42px;
}

.post-feed {
  padding: 3.75rem 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 1rem;
  padding: 0 0 3.75rem;
}
.pagination li {
  padding-right: 1.125rem;
}
@media (min-width: 1024px) {
  .pagination li {
    padding-right: 1.875rem;
  }
}
.pagination li:last-child {
  padding-right: 0;
}
.pagination li .current {
  color: #E60665;
  font-weight: bold;
}
.pagination li a {
  color: #2A003D;
}
@media (min-width: 1024px) {
  .pagination {
    max-width: 684px;
    margin: 0 auto;
  }
}

.related-articles {
  background-color: #fff;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .related-articles {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
.related-articles__title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.archive-hero {
  background: #2A003D;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  margin-bottom: 2rem;
}
.archive-hero .cat {
  text-transform: uppercase;
  letter-spacing: 2px;
}

body.archive .archive-meta {
  padding: 0;
}

.archive-meta {
  padding-top: 0;
  padding-bottom: 3.75rem;
}
.archive-meta .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.archive-meta .select-wrapper {
  height: 2rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .archive-meta .select-wrapper {
    margin-bottom: 0;
  }
}
.archive-meta .select-wrapper:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.archive-meta .select-wrapper:after {
  content: "";
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 18px 16px;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.archive-meta .select-wrapper:before {
  background-color: var(--black);
}
.archive-meta .select-wrapper:after {
  background-image: url("/wp-content/themes/bodytalk/assets/images/chevron-down-black.svg");
}
.archive-meta .select-wrapper select {
  color: var(--black);
}
.archive-meta select {
  background: transparent;
  border-color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  width: 100%;
  font-family: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}
.archive-meta .archive-search {
  width: 100%;
  position: relative;
}
.archive-meta .archive-search:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: var(--black);
}
.archive-meta .archive-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.archive-meta .archive-search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}
/*# sourceMappingURL=blog.css.map */
