/** Shopify CDN: Minification failed

Line 177:29 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:dr-startday (INDEX:28) */
.day-in-life {
  background-color: var(--section-bg, #f9f6f0);
  padding-top: var(--section-padding-top, 60px);
  padding-bottom: var(--section-padding-bottom, 60px);
}

.day-in-life__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────── */
.day-in-life__header {
  text-align: center;
  margin-bottom: 48px;
}
.day-in-life__block-text {
    font-size: 11px;
}
.day-in-life__block-image {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: auto;
}
.day-in-life__block-image img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.day-in-life__heading {
    font-family: var(--font-heading-family, serif);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--heading-color, #2c2c2c);
    margin: 0 0 10px;
    line-height: 1.2;
}

.day-in-life__subheading {
  font-family: var(--font-body-family, sans-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subheading-color, #666);
  margin: 0;
}

/* ── Grid ────────────────────────────────────── */
.day-in-life__grid {
  display: grid;
  grid-template-columns: repeat(var(--block-count, 6), 1fr);
  align-items: start;
  gap: 0;
}

@media (max-width: 1024px) {
  .day-in-life__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .day-in-life__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .day-in-life__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Block ───────────────────────────────────── */
.day-in-life__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 24px 20px 20px;
}

/* Right border divider */
.day-in-life__block--border {
  border-right: 1px solid var(--border-color, #d6cfc4);
}

/* ── Dot Connector ───────────────────────────── */
.day-in-life__dot {
  position: absolute;
  top: 16px;
  right: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--section-bg, #f9f6f0);
  border: 2px solid var(--dot-color, #b0a896);
  z-index: 1;
}

/* ── Icon ────────────────────────────────────── */
.day-in-life__icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.day-in-life__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.day-in-life__icon--svg svg {
  width: 48px;
  height: 48px;
}
p {
    margin: 0;
}
/* ── Block Heading ───────────────────────────── */
.day-in-life__block-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--heading-color, #2c2c2c);
    margin: 0 0 8px;
    line-height: 1.4;
}

/* ── Block Text ──────────────────────────────── */
.day-in-life__block-text {
.day-in-life__block-text {
    font-family: var(--font-body-family, sans-serif);
    font-size: 12px;
    color: var(--block-text-color, #555);
    line-height: 1.6;
    margin-bottom: 18px;
}
.day-in-life__block-text p {
  margin: 0 0 4px;
}

/* ── Block Image ─────────────────────────────── */
.day-in-life__block-image {
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
}

.day-in-life__block-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
}
/* END_SECTION:dr-startday */