

.ins-featured__label {
  font-family: 'Inter', sans-serif;
  font-size: .55rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 8px;
}
.ins-featured__rule { width: 36px; height: 1px; background: var(--red); margin-bottom: 32px; }

.ins-featured__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ins-featured__track::-webkit-scrollbar { display: none; }

.ins-featured__track .ins-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.ins-featured-card__img {
  width: 100%; height: 200px;
  background: var(--cream);
  flex-shrink: 0;
}

.ins-featured-card__body {
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}

.ins-featured-card__type {
  font-family: 'Inter', sans-serif;
  font-size: .5rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}

.ins-featured-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.01em;
  line-height: 1.3; flex: 1;
  text-decoration: none; display: block; transition: color .2s;
}
.ins-featured-card__title:hover { color: var(--red); }

.ins-featured-card__summary {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 300;
  color: #6b6b6b; line-height: 1.7;
}

.ins-featured-card__btn { margin-top: 8px; display: block; text-align: center; }

.ins-featured__header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.ins-featured__header .sec-h2 { margin-bottom: 0; }
.ins-featured__arrows { display: flex; gap: 10px; }
.ins-featured__arrow {
  width: 40px; height: 40px;
  border: 1.5px solid var(--red);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
  transition: background .2s, color .2s;
}
.ins-featured__arrow:hover { background: var(--red); color: #fff; }

.ins-filter-group { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.ins-filter-group__label {
  font-family: 'Inter', sans-serif;
  font-size: .5rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); align-self: center; margin-right: 4px;
}
.ins-filters {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 40px;
}
.ins-filter {
  font-family: 'Inter', sans-serif;
  font-size: .55rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 10px 18px; cursor: pointer;
  background: transparent; color: var(--dark);
  transition: background .2s, color .2s, border-color .2s;
  border-radius: 0;
}
.ins-filter.active,
.ins-filter:hover { background: var(--red); color: #fff; border-color: var(--red); }

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.ins-card {
  background: #fff;
  border: 1.5px solid var(--red);
  display: flex; flex-direction: column;
  padding: 28px 24px; gap: 14px;
}
.ins-card.hidden { display: none; }

.ins-card__type {
  font-family: 'Inter', sans-serif;
  font-size: .5rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}

.ins-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.01em;
  line-height: 1.3; flex: 1;
  text-decoration: none; transition: color .2s; display: block;
}
.ins-card__title:hover { color: var(--red); }

.ins-card__summary {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 300;
  color: #6b6b6b; line-height: 1.75;
}

.ins-card__footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.ins-card__theme {
  font-family: 'Inter', sans-serif;
  font-size: .48rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red); padding: 3px 8px;
}

@media(max-width:900px) {
  .ins-grid { grid-template-columns: 1fr 1fr; }
  .ins-featured-card { flex: 0 0 300px; }
}
@media(max-width:600px) {
  .ins-grid { grid-template-columns: 1fr; }
  .ins-featured-card { flex: 0 0 280px; }
}
