/* ============================================================
   COLLECTION
   ============================================================ */

/* --- Browse by individual collection: visual tiles --- */
.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.col-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}
.col-tile:hover { box-shadow: 0 16px 40px -22px rgba(16, 21, 36, .26); transform: translateY(-3px); }
.col-tile__media {
  position: relative;
  height: 152px;
  display: grid;
  place-items: center;
  color: #fff;
}
.col-tile__ico { width: 46px; height: 46px; opacity: .94; }
.col-tile__count {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 12px;
  color: #fff;
  background: rgba(8, 12, 24, .26);
  padding: 4px 11px;
  border-radius: 99px;
}
.col-tile__count strong { font-weight: 800; }
.col-tile__body { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px 22px; }
.col-tile__name { font-size: 20px; font-weight: 800; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.col-tile__desc { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* --- Latest releases: horizontal carousel --- */
.col-latest { padding: 40px 0 8px; }
.col-latest__nav { display: flex; align-items: center; gap: 8px; }
.col-latest__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, opacity .15s ease;
}
.col-latest__arrow svg { width: 17px; height: 17px; }
.col-latest__arrow:hover:not(:disabled) { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.col-latest__arrow:disabled { opacity: .35; cursor: default; }

.col-latest__wrap { position: relative; }
.col-latest__wrap::before,
.col-latest__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 6px;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .2s ease;
}
.col-latest__wrap::before { left: 0; background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }
.col-latest__wrap::after { right: 0; background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0)); }
.col-latest__wrap:not(.at-start)::before { opacity: 1; }
.col-latest__wrap:not(.at-end)::after { opacity: 1; }

.col-latest__row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 0 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.col-latest__row::-webkit-scrollbar { display: none; }

.col-latest__tile {
  flex: 0 0 268px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}
.col-latest__tile:hover { box-shadow: 0 14px 36px -20px rgba(16, 21, 36, .22); transform: translateY(-2px); }
.col-latest__tile--feature { flex: 0 0 372px; }

.col-latest__media { position: relative; height: 116px; display: grid; place-items: center; color: #fff; }
.col-latest__tile--feature .col-latest__media { height: 152px; }
.col-latest__media-ico { width: 40px; height: 40px; opacity: .94; }
.col-latest__media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.col-latest__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.col-latest__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--magenta);
}
.col-latest__title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 7px 0 0;
}
.col-latest__tile--feature .col-latest__title { font-size: 20px; }
.col-latest__blurb { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 10px 0 0; }
.col-latest__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.col-latest__date { font-size: 12px; color: var(--muted); }
.col-latest__cta { font-size: 13px; font-weight: 700; color: var(--magenta); white-space: nowrap; }

@media (max-width: 1000px) { .col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .col-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Participate CTA points → icon-chip cards (matches the directories CTA).
   Scoped to .collection-page so the shared global .join-points used on
   about / services / business-free is left untouched.
   ============================================================ */
.collection-page .join-points { display: grid; gap: 14px; max-width: 520px; }
.collection-page .join-points li {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}
.collection-page .join-points li::before { content: none; }
.collection-page .join-pt__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(230, 23, 90, .16);
  color: var(--magenta-2, #ff2a72);
  display: grid;
  place-items: center;
}
.collection-page .join-pt__ico svg { width: 20px; height: 20px; }
.join-pt__txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.collection-page .join-points strong { color: #fff; font-weight: 700; font-size: 14.5px; }
.collection-page .join-pt__txt span { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .72); }
