/** Shopify CDN: Minification failed

Line 94:20 Unexpected "{"
Line 94:29 Expected ":"

**/
/* ── Container ── */
.tnnursery-hero-section {
  background-color: var(--color-background);
}
.tnnursery-hero-wrapper{

  padding-top: var(--padding-top, 20px);
  padding-bottom: var(--padding-bottom, 20px);
}
.tnnursery-container {
  max-width: var(--page-width, 1500px);
  margin-inline: auto;
  padding-inline: var(--page-width-margin, 15px);
}

/* ── Top heading row ── */
.tnnursery-top-head {
  margin-bottom: 15px;
}

 

/* Hero heading */
.tnnursery-hero-heading h1 {
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgb(var(--color-base-heading, var(--color-base-text)));
  margin: 0;
}

.tnnursery-hero-heading p {
  margin: 0;
}

/* ── Main content grid ── */
.tnnursery-content-row {
  display: grid;
  grid-template-columns: 0.91fr 0.3fr;
  gap: 16px;
  align-items: stretch;
}

/* ── Slider / video wrap ── */
.tnnursery-video-wrap {
  position: relative;
  overflow: hidden;
  /* cursor: pointer; */
  border-radius: 24px;
}

.tnnursery-video-wrap img {
  border-radius: 24px;
}

/* ── Slider track ── */
.tn-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.tn-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* Image slides */
.tn-slide--image {
  border-radius: 24px;
}

.tn-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  #tnnursery-video-{{ section.id }} .tn-slide-link {
    height: 560px;
  }
}

.tn-slide-link picture,
.tn-slide-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio:2/1;
}
.tnnursery-video-wrap img{
  aspect-ratio:2/1;

}
/* ── Slider arrows (desktop only) ── */
.tn-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.tn-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.tn-arrow--prev { left: 12px; }
.tn-arrow--next { right: 12px; }

/* ── Dots pagination ── */
.tn-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}

.tn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.tn-dot--active {
  background: rgb(var(--color-base-accent, 0 181 102));
  transform: scale(1.35);
}

/* ── Video poster / overlay / player ── */
.tnnursery-video-poster {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s;
  object-fit: cover;
}

.tnnursery-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.tnnursery-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.tnnursery-play-btn:hover {
  transform: scale(1.1);
}

.tnnursery-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: none;
}

.tnnursery-video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.tnnursery-video-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Playing state */
.tnnursery-video-wrap.playing .tnnursery-video-poster,
.tnnursery-video-wrap.playing .tnnursery-video-overlay {
  opacity: 0;
  pointer-events: none;
}

.tnnursery-video-wrap.playing .tnnursery-video-player {
  display: block;
}

.tnnursery-video-wrap.playing .tnnursery-video-close {
  display: flex;
}

/* ── Right cards column ── */
.tnnursery-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual hero card */
.tnnursery-hero-card {
  flex: 1;
  border-radius: 24px;
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none; 
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tnnursery-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tnnursery-card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

.tnnursery-card-badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.tnnursery-card-title {
  margin: 0 0 8px 0;
  flex: 1;
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  max-width: 230px;
}

.tnnursery-card-title p {
  margin: 0;
}

.tnnursery-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto; 
  border-radius: 50px;  
    width: fit-content;
    padding: 12px 24px;
 
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.tnnursery-hero-card:first-child .tnnursery-card-footer {
  /* border-color: rgba(255, 255, 255, 0.7); */
}

.tnnursery-hero-card:first-child .tnnursery-card-sub {
  /* color: #ffffff; */
}

.tnnursery-hero-card:first-child .tnnursery-card-footer:hover {
  /* background: #ffffff; */
}

.tnnursery-hero-card:first-child .tnnursery-card-footer:hover .tnnursery-card-sub {
  /* color: #0a4d3c; */
}

.tnnursery-card-footer:hover {
  /* background-color: rgba(0, 0, 0, 0.15); */
}

.tnnursery-card-sub {
  font-family: var(--font-body-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  /* color: rgb(var(--color-base-outline-button-labels, 10 76 54)); */
}

.tnnursery-card-arrow {
  width: 28px;
  height: 28px;
  display: none; /* shown on mobile */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tnnursery-card-arrow svg {
  width: 100%;
  height: 100%;
}

/*  RESPONSIVE BREAKPOINTS */

@media (max-width: 1366px) {
 
  .tnnursery-hero-heading h1 { 
  font-size: 28px; 
}
  .tnnursery-card-title {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .tnnursery-content-row {
    display: flex;
    flex-direction: column;
  }
  .tnnursery-cards-col {
    flex-direction: row;
  }
  .tnnursery-card-title {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  .tnnursery-card-footer {
    height: auto;
    padding: 10px 19px;
  }
}

@media (max-width: 768px) {

.tn-slide.tn-slide--video{
   display:none;
}


.tn-slide-link picture,
.tn-slide-link img,
.tnnursery-video-wrap img{
  aspect-ratio:unset; 
}
.tn-slide.tn-slide--video picture{

    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .tnnursery-hero-wrapper{ 
  padding-top:  20px ; 
  padding-bottom:  8px ; 
}


  .tnnursery-top-head {
    margin-bottom: 12px;
  }

 
 
  .tnnursery-hero-heading h1 { 
  font-size: 18px; 
}
  .tnnursery-content-row {
    gap: 8px;
  }

  .tnnursery-video-wrap {
    border-radius: 16px;
    /* height: 250px; */
  }

  .tnnursery-cards-col {
    flex-direction: row;
    gap: 8px;
  }

  .tnnursery-hero-card {
    flex: 1;
    min-width: 0;
    padding: 10px;
    border-radius: 12px;
  }

  .tnnursery-card-badge {
    font-size: 10px;
  }

  .tnnursery-card-badge-dot {
    width: 4px;
    height: 4px;
  }

  .tnnursery-card-title {
    font-size: 16px;
    max-width: unset;
  }

  .tnnursery-card-footer {
    border: unset;
    padding: unset;
    height: unset;
    width: auto;
    display: flex;
    justify-content: space-between;
    box-shadow:none;
        background-color: transparent;
  }

  .tnnursery-cards-col > a:first-child .tnnursery-card-footer:hover{
    color:var(--color-foreground);
  }
  .tnnursery-cards-col > a:last-child .tnnursery-card-footer,
  .tnnursery-cards-col > a:last-child .tnnursery-card-footer:hover{
    color:var(--color-foreground);
  }
  .tnnursery-card-sub {
    font-size: 12px;
        text-align: left;
  }

  .tnnursery-card-arrow {
    display: flex;
    width: 16px;
    height: 16px;
     
  }

  .tnnursery-play-btn {
    width: 32px;
    height: 32px;
  }

  .tnnursery-play-btn svg {
    width: 10px;
    height: 10px;
  }
 
 

  /* Arrows hidden on mobile */
  .tn-arrow {
    display: none;
  }

  .tn-dots {
    bottom: 10px;
  }

  .tn-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
 
  .tnnursery-hero-heading h1 { 
  font-size: 18px; 
}
}
