/* =========================================================
   SUSTAINABLE GOALS - DESKTOP
========================================================= */

.goals-page {
  background: #ffffff;
  color: #231C18;
}

/* =========================================================
   MAIN SECTION
========================================================= */

.goals-section {
  width: 100%;
  background: #ffffff;
  padding-top: 76px;
  padding-bottom: 360px;
}

.goals-section__inner {
  width: 100%;
  max-width: 1409px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 547px 695px;
  column-gap: 124px;

  padding-left: 52px;
  padding-right: 52px;
}

.goals-section__content {
  padding-top: 0;
}

.goals-section__eyebrow {
  display: block;

  margin-bottom: 45px;

  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;

  color: #5B5B5B;
}

.goals-item {
  margin-bottom: 82px;
}

.goals-item:last-child {
  margin-bottom: 0;
}

.goals-item h2 {
  margin: 0 0 28px;

  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 350;
  line-height: 40px;
  letter-spacing: 0;

  color: #000000;
}

.goals-item h2 span {
  display: block;

  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 350;
  line-height: 40px;

  color: #C8C0B5;
}

.goals-item p {
  max-width: 542px;
  margin: 0;

  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;

  color: #000000;
}

.goals-section__image {
  width: 695px;
  height: 672px;
  overflow: hidden;
}

.goals-section__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .goals-section {
    padding-bottom: 120px;
    padding-top: 0;
  }

  .goals-section__inner {
    display: flex;
    flex-direction: column;

    max-width: 100%;

    padding-left: 24px;
    padding-right: 24px;
  }

  .goals-section__content {
    order: 1;
  }

  .goals-section__image {
    order: 2;

    width: 100%;
    height: 320px; 
    margin-top: 48px;
  }

  .goals-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}