/** Shopify CDN: Minification failed

Line 225:0 Unexpected "}"

**/
/* ==========================================================
   PawMoves Featured Posts — assets/pawmoves-featured-posts.css
   ========================================================== */

.pmfp {
  background: #F2EDE6;
  border-top: 1px solid rgba(232,224,213,0.8);
}
.pmfp__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

/* Header */
.pmfp__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 1rem;
}
.pmfp__label {
  color: #C0392B;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.4rem; display: block;
}
.pmfp__heading {
  font-family: var(--pm-font, 'Jost', sans-serif);
  color: #1C1A18;
  font-size: clamp(28px, 4.5vw, 54px);;
  font-weight: 400; 
  line-height: 1.15;
  margin: 0;
}
.pmfp__heading p { margin: 0; }
.pmfp__heading em { font-style: italic; color: #C0392B; }

.pmfp__view-all {
  color: #C0392B;
  font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  text-decoration: none;
  transition: gap 0.2s;
  margin-bottom: 0px;
}
.pmfp__view-all:hover { gap: 8px; }

/* Posts grid */
.pmfp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card */
.pmfp__card {
  background: #FAF7F4;
  border: 1px solid rgba(232,224,213,0.8);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.pmfp__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28,26,24,0.1);
}

/* Thumbnail */
.pmfp__thumb {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #2E2A26, #1C1A18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pmfp__thumb-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pmfp__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pmfp__thumb-dot-outer {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(192,57,43,0.3);
  border: 1px solid rgba(192,57,43,0.4);
  display: flex; align-items: center; justify-content: center;
}
.pmfp__thumb-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: #C0392B;
  box-shadow: 0 0 12px rgba(192,57,43,0.8);
}

/* Body */
.pmfp__body {
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}

/* Tag */
.pmfp__tag {
  display: inline-flex; align-self: flex-start;
  background: #F5E6E3; color: #C0392B;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 50px;
}

/* Title */
.pmfp__title {
  color: #1C1A18;
  font-family: var(--pm-font, 'Jost', sans-serif);
  font-size: 15px; font-weight: 500;
  line-height: 1.4; margin: 0;
}
.pmfp__card:hover .pmfp__title { color: #C0392B; }

/* Excerpt */
.pmfp__excerpt {
  color: #9C958F;
  font-size: 12.5px; line-height: 1.6;
  margin: 0;
}

/* Meta */
.pmfp__meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(232,224,213,0.8);
  color: #9C958F; font-size: 12px;
}
.pmfp__meta-item {
  display: flex; align-items: center; gap: 4px;
}
.pmfp__meta svg {
  flex-shrink: 0;
}

/* Empty state */
.pmfp__empty {
  text-align: center;
  color: #5C5550; font-size: 14px;
  padding: 2rem 0;
}

/* Scroll reveal */
.pmfp-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.pmfp-reveal.visible {
  opacity: 1; transform: none;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .pmfp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (hover: hover) {
  .pmfp__card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .pmfp__inner { padding: 2.5rem 0 2.5rem 1.5rem; }

  /* Switch grid to horizontal scroll carousel */
  .pmfp__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .pmfp__grid::-webkit-scrollbar { display: none; }

  /* Each card: fixed width so multiple peek into view */
  .pmfp__card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
    transition: none;
    box-shadow: none;
  }

  .pmfp__thumb { height: 150px; }
}

  /* Header stays full-width with normal padding */
  .pmfp__header {
    display: flex;
    align-items: flex-end;
    padding-right: 1.5rem;
  }
  .pmfp__heading p { margin: 0; padding: 0; }
  .pmfp__view-all {
    margin-bottom: 0;
    padding-bottom: 3px;
  }

}