/* iOS 限免推荐 — 列表式，避免过度卡片堆砌 */
.wyrs-ios-freebies {
  padding: 8px 20px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.wyrs-ios-freebies__inner {
  position: relative;
}

.wyrs-ios-freebies__title {
  font-family: "Orbitron", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--tech-text, #e2e8f0);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.wyrs-ios-freebies__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--tech-gradient, linear-gradient(135deg, #2563eb, #7c3aed));
  border-radius: 2px;
}

.wyrs-ios-freebies__desc {
  text-align: center;
  color: var(--tech-muted, #94a3b8);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px auto 28px;
  max-width: 36em;
}

.wyrs-ios-freebies__status {
  text-align: center;
  color: var(--tech-muted, #94a3b8);
  font-size: 14px;
  padding: 24px 8px;
}

.wyrs-ios-freebies__status--err {
  color: #f87171;
}

.wyrs-ios-freebies__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--tech-border, rgba(148, 163, 184, 0.2));
}

.wyrs-ios-freebies__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--tech-border, rgba(148, 163, 184, 0.18));
  transition: background 0.2s ease;
}

.wyrs-ios-freebies__item:hover {
  background: rgba(37, 99, 235, 0.04);
}

.wyrs-ios-freebies__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--tech-surface, rgba(15, 23, 42, 0.4));
  border: 1px solid var(--tech-border, rgba(148, 163, 184, 0.2));
}

.wyrs-ios-freebies__icon--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--tech-muted, #94a3b8);
}

.wyrs-ios-freebies__body {
  min-width: 0;
}

.wyrs-ios-freebies__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.wyrs-ios-freebies__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--tech-text, #e2e8f0);
  line-height: 1.35;
}

.wyrs-ios-freebies__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wyrs-ios-freebies__tag {
  font-size: 11px;
  line-height: 1.2;
  padding: 2px 0;
  color: var(--tech-muted, #94a3b8);
  border: none;
  background: transparent;
}

.wyrs-ios-freebies__tag--fresh {
  color: var(--tech-glow, #38bdf8);
}

.wyrs-ios-freebies__sub {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--tech-muted, #94a3b8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wyrs-ios-freebies__meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--tech-muted, #94a3b8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}

.wyrs-ios-freebies__perk {
  color: var(--tech-text, #e2e8f0);
  font-weight: 500;
}

.wyrs-ios-freebies__dot {
  opacity: 0.5;
}

.wyrs-ios-freebies__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--tech-gradient, linear-gradient(135deg, #2563eb, #7c3aed));
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.28);
}

.wyrs-ios-freebies__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.28);
}

.wyrs-ios-freebies__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--tech-muted, #94a3b8);
}

.wyrs-ios-freebies__source {
  color: var(--tech-glow, #38bdf8) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.wyrs-ios-freebies__source:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 640px) {
  .wyrs-ios-freebies {
    padding: 4px 16px 40px;
  }

  .wyrs-ios-freebies__title {
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .wyrs-ios-freebies__item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }

  .wyrs-ios-freebies__link {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .wyrs-ios-freebies__icon {
    width: 44px;
    height: 44px;
  }
}
