/*-- -------------------------- -->
<---           Offerings          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #packages-teaser {
    padding: var(--sectionPadding);
    background-color: var(--primaryDark);
    scroll-margin-top: 6rem;
    position: relative;
    overflow: hidden;
  }
  #packages-teaser .cs-container {
    width: 100%;
    max-width: 72rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 3.5rem);
    position: relative;
    z-index: 2;
  }
  #packages-teaser .cs-content {
    width: 100%;
    max-width: 40rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #packages-teaser .cs-topper {
    color: var(--secondary);
  }
  #packages-teaser .cs-title {
    color: #fff;
    max-width: 44rem;
  }
  #packages-teaser .cs-title em {
    color: #fff;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 0.2em;
  }
  #packages-teaser .cs-text {
    color: rgba(255, 255, 255, 0.78);
  }
  #packages-teaser .cs-price-group {
    width: 100%;
    max-width: 52rem;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #packages-teaser .cs-price-item {
    --cardPadX: clamp(1.75rem, 4vw, 3rem);
    padding: clamp(2.5rem, 5vw, 3.5rem) var(--cardPadX);
    background-color: #f7f5df;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  #packages-teaser .cs-price-icon {
    width: clamp(2.75rem, 5vw, 3.5rem);
    height: auto;
    margin: 0 auto 1.75rem;
    display: block;
  }
  #packages-teaser .cs-price-tier {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin: 0 0 0.75rem;
    display: block;
  }
  #packages-teaser .cs-price-name {
    font-family: 'Sentient', serif;
    font-size: 32.248px;
    font-weight: 300;
    font-style: normal;
    line-height: 40.2455px;
    letter-spacing: -0.96744px;
    text-align: center;
    margin: 0 0 1.75rem;
    color: #1e1e1e;
  }
  #packages-teaser .cs-price-desc {
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.6em;
    max-width: 24rem;
    margin: 0 auto;
    color: var(--bodyTextColor);
  }
  #packages-teaser .cs-price-meta {
    width: 100%;
    margin-top: auto;
    padding-top: clamp(3rem, 7vw, 4.5rem);
    display: flex;
    flex-direction: column;
  }
  #packages-teaser .cs-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem var(--cardPadX);
    margin: 0 calc(-1 * var(--cardPadX));
    border-top: 1px solid rgba(28, 26, 22, 0.85);
  }
  #packages-teaser .cs-price-row-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
  }
  #packages-teaser .cs-price-row-value {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 400;
    color: var(--navy);
    text-align: right;
  }
  #packages-teaser .cs-price-note {
    font-family: var(--bodyFont);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: -1rem 0 0;
    text-align: center;
  }

  /* Paper-cutout accents scattered around the section, echoing the hero. */
  #packages-teaser .cs-shape-a,
  #packages-teaser .cs-shape-b,
  #packages-teaser .cs-shape-c {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 120px 120px;
    background-blend-mode: overlay;
    filter: url(#cs-paint-edge);
  }
  #packages-teaser .cs-shape-a {
    width: clamp(6rem, 13vw, 9rem);
    height: clamp(6rem, 13vw, 9rem);
    background-color: var(--accentBlue);
    background-image: var(--cs-paint-grain);
    border-radius: 50%;
    top: 8%;
    left: -3rem;
    opacity: 0.5;
  }
  #packages-teaser .cs-shape-b {
    width: clamp(5rem, 11vw, 7rem);
    height: clamp(5rem, 11vw, 7rem);
    background-color: var(--secondary);
    background-image: var(--cs-paint-grain);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    top: 4%;
    right: -2rem;
    opacity: 0.5;
  }
  #packages-teaser .cs-shape-c {
    width: clamp(6rem, 14vw, 10rem);
    height: clamp(6rem, 14vw, 10rem);
    background-color: var(--accentText);
    background-image: var(--cs-paint-grain);
    border-radius: 50%;
    bottom: -3rem;
    right: 10%;
    opacity: 0.5;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #packages-teaser .cs-price-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

/* Desktop - 64rem */
@media only screen and (min-width: 64rem) {
  #packages-teaser .cs-price-group {
    gap: 2rem;
  }
  #packages-teaser .cs-price-item {
    padding: 2.5rem 2.25rem;
  }
}
