/* ============================================================
   Hookup Categories hub — TS Fling (dc-)
   ============================================================ */
.dc-page { margin-top: 0; }
.dc-breadcrumb { border-bottom: 1px solid var(--tsf-line); padding: 12px 0; }
.dc-breadcrumb ol { list-style: none; }
.dc-breadcrumb ol li + li::before { content: '›'; margin-right: 8px; opacity: .5; }

.dc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dc-card { display: flex; flex-direction: column; overflow: hidden; color: inherit; }
.dc-card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dc-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dc-card:hover .dc-card__img img { transform: scale(1.06); }
.dc-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,3,6,0.85) 100%); }
.dc-card__icon { position: absolute; left: 16px; bottom: 14px; z-index: 1; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.25rem; background: rgba(20,10,26,0.85); border: 1px solid var(--tsf-line-2); backdrop-filter: blur(6px); }
.dc-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.dc-card__body h2 { font-size: 1.3rem; margin-bottom: 8px; }
.dc-card__body p { color: var(--tsf-muted); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.dc-card__link { color: var(--tsf-pink-2); font-weight: 700; font-size: 0.9rem; }
.dc-card__link span { transition: transform .2s; display: inline-block; }
.dc-card:hover .dc-card__link span { transform: translateX(4px); }

.dc-why { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.dc-why__list { list-style: none; display: grid; gap: 12px; }
.dc-why__list li { position: relative; padding: 16px 18px 16px 48px; border-radius: 12px; background: var(--tsf-card); border: 1px solid var(--tsf-line); color: var(--tsf-text); }
.dc-why__list li::before { content: '✓'; position: absolute; left: 16px; top: 15px; width: 22px; height: 22px; border-radius: 50%; background: var(--tsf-grad); color: #fff; display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; }

@media (max-width: 1024px) { .dc-grid { grid-template-columns: repeat(2, 1fr); } .dc-why { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px) { .dc-grid { grid-template-columns: 1fr; } }
