/* Inner pages — category / article / hub landings */
.t15-page {
  padding: clamp(28px, 4vh, 48px) 0 clamp(48px, 6vh, 72px);
}

.t15-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  color: var(--t15-muted);
}

.t15-breadcrumb a:hover { color: var(--t15-brand); }
.t15-breadcrumb__current { color: var(--t15-text-strong); font-weight: 600; }

.t15-page__head {
  margin-bottom: 1.5rem;
}

.t15-page__eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t15-brand);
}

.t15-page__head h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  line-height: 1.25;
  color: var(--t15-text-strong);
}

.t15-page__lead {
  margin: 0;
  max-width: 46rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--t15-muted);
}

.t15-page__meta {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  color: var(--t15-muted-2);
}

.t15-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.t15-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--t15-line);
  box-shadow: 0 8px 24px rgba(114, 8, 145, 0.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.t15-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 8, 145, 0.22);
  box-shadow: 0 12px 28px rgba(114, 8, 145, 0.12);
}

.t15-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--t15-text-strong);
}

.t15-card__title a:hover { color: var(--t15-brand); }

.t15-card__desc {
  margin: 0 0 0.85rem;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--t15-muted);
}

.t15-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--t15-muted-2);
}

.t15-card__more {
  color: var(--t15-brand);
  font-weight: 700;
}

.t15-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--t15-line);
}

.t15-pager__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 8, 145, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--t15-brand);
  font-size: 0.86rem;
  font-weight: 600;
}

.t15-pager__link:hover { background: rgba(114, 8, 145, 0.08); }
.t15-pager__link--disabled {
  opacity: 0.45;
  pointer-events: none;
  color: var(--t15-muted);
}

.t15-pager__info {
  font-size: 0.86rem;
  color: var(--t15-muted);
}

.t15-empty {
  padding: 2rem 1.25rem;
  border-radius: 14px;
  border: 1px dashed var(--t15-line);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  color: var(--t15-muted);
}

.t15-article {
  max-width: 760px;
  margin: 0 auto;
}

.t15-article__cover {
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--t15-line);
  background: rgba(255, 255, 255, 0.8);
}

.t15-article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.t15-article__cat {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(114, 8, 145, 0.08);
  color: var(--t15-brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.t15-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0.75rem 0 1.15rem;
  font-size: 0.86rem;
  color: var(--t15-muted);
}

.t15-article__lede {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--t15-brand);
  border-radius: 0 10px 10px 0;
  background: rgba(215, 158, 229, 0.14);
  color: var(--t15-text);
  line-height: 1.7;
}

.t15-article__body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--t15-text);
}

.t15-article__body h2,
.t15-article__body h3 {
  margin: 1.6rem 0 0.7rem;
  color: var(--t15-text-strong);
  line-height: 1.35;
}

.t15-article__body p { margin: 0 0 1rem; }
.t15-article__body img {
  margin: 1rem 0;
  border-radius: 12px;
}

.t15-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
}

.t15-article__tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(114, 8, 145, 0.08);
  color: var(--t15-brand);
  font-size: 0.78rem;
}

.t15-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.t15-article__nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--t15-line);
  background: rgba(255, 255, 255, 0.88);
}

.t15-article__nav-card:hover { border-color: rgba(114, 8, 145, 0.28); }
.t15-article__nav-hint {
  font-size: 0.78rem;
  color: var(--t15-muted);
}
.t15-article__nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--t15-text-strong);
  line-height: 1.4;
}

.t15-article__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--t15-line);
  font-size: 0.9rem;
}

.t15-article__foot a { color: var(--t15-brand); font-weight: 600; }

.t15-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.t15-hub-actions .t15-header__cta,
.t15-hub-actions .t15-hub-link {
  text-decoration: none;
}

.t15-hub-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 8, 145, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: var(--t15-brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.t15-hub-link:hover { background: rgba(114, 8, 145, 0.08); }

.t15-bullet-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.t15-bullet-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--t15-muted);
  line-height: 1.65;
}

.t15-bullet-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--t15-brand);
  font-weight: 700;
}

@media (max-width: 640px) {
  .t15-article__nav { grid-template-columns: 1fr; }
  .t15-card-grid { grid-template-columns: 1fr; }
}
