/* =========================================================
   Custom Font Loading
   Replace the URLs below with your uploaded HubSpot .otf URLs
   ========================================================= */

@font-face {
  font-family: "Chronicle Heading";
  src: url("https://www.jbu.edu/hubfs/ground-floor-coffee/GF%20Fonts/ChronicleDispCond-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chronicle Body";
  src: url("https://www.jbu.edu/hubfs/ground-floor-coffee/GF%20Fonts/ChronicleDeck-Black.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Coffee Feature Module
   ========================================================= */

.coffee-feature-module {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 58px 34px;
  box-sizing: border-box;
}

.coffee-feature-module *,
.coffee-feature-module *::before,
.coffee-feature-module *::after {
  box-sizing: border-box;
}

.coffee-feature-module__inner {
  width: 100%;
  max-width: 1392px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(48px, 5.7vw, 82px);
  align-items: center;
}

/* =========================================================
   Reverse Layout
   Add class "coffee-feature-module--reverse" to section
   ========================================================= */

.coffee-feature-module--reverse .coffee-feature-module__image-wrap {
  grid-column: 2;
  grid-row: 1;
}

.coffee-feature-module--reverse .coffee-feature-module__content {
  grid-column: 1;
  grid-row: 1;
}

/* =========================================================
   Image
   ========================================================= */

.coffee-feature-module__image-wrap {
  width: 100%;
}

.coffee-feature-module__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* =========================================================
   Content
   ========================================================= */

.coffee-feature-module__content {
  max-width: 620px;
  width: 100%;
}

.coffee-feature-module__heading {
  margin: 0 0 6px;
  font-family: "Chronicle Heading", Georgia, serif;
  font-size: clamp(64px, 7.9vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: lowercase;
  color: #000000;
}

.coffee-feature-module__notes {
  margin: 0 0 27px;
  font-family: "Chronicle Body", Georgia, serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #000000;
}

.coffee-feature-module__body {
  margin: 0 0 24px;
  font-family: "Chronicle Body", Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  color: #111111;
}

.coffee-feature-module__body p {
  margin: 0 0 16px;
}

.coffee-feature-module__body p:last-child {
  margin-bottom: 0;
}

.coffee-feature-module__supporting-text {
  margin: 0 0 22px;
  font-family: "Chronicle Body", Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #111111;
}

/* =========================================================
   Button
   ========================================================= */

.coffee-feature-module__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 11px 26px 10px;
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #000000;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.coffee-feature-module__button:hover,
.coffee-feature-module__button:focus {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

.coffee-feature-module__button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1024px) {
  .coffee-feature-module {
    padding: 48px 24px;
  }

  .coffee-feature-module__inner {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .coffee-feature-module__heading {
    font-size: clamp(56px, 8.5vw, 88px);
  }

  .coffee-feature-module__body {
    font-size: 16px;
  }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
  .coffee-feature-module {
    padding: 34px 20px;
  }

  .coffee-feature-module__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .coffee-feature-module__content {
    max-width: none;
  }

  .coffee-feature-module__heading {
    font-size: clamp(54px, 18vw, 76px);
    line-height: 0.88;
  }

  .coffee-feature-module__notes {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .coffee-feature-module__body {
    font-size: 16px;
    line-height: 1.5;
  }

  .coffee-feature-module__supporting-text {
    font-size: 15px;
  }

  .coffee-feature-module__button {
    width: auto;
  }

  /* Reset reverse grid placement on mobile */
  .coffee-feature-module--reve