/* Preise page */
.tse-note {
  display: flex; gap: 18px; align-items: flex-start; margin-top: 34px;
  background: var(--em-tint); border: 1px solid var(--line-em); border-radius: var(--r-5);
  padding: 22px 26px;
}
.tse-note__ic { width: 44px; height: 44px; border-radius: 12px; background: #fff; color: var(--em-700); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-soft); }
.tse-note__ic svg { width: 22px; height: 22px; }
.tse-note p { color: var(--em-900); font-size: var(--fs-sm); max-width: 80ch; min-width: 0; }

.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-4); padding: 22px; min-width: 0; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.addon:hover { border-color: var(--line-em); transform: translateY(-2px); }
.addon__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.addon__name { font-family: var(--ff-disp); font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; min-width: 0; }
.addon__price { font-weight: 700; font-size: 14px; color: var(--em-700); white-space: nowrap; flex: none; }
.addon__desc { font-size: 14px; color: var(--ink-3); }

.cap .cap-tse { display: inline-block; font-weight: 700; font-size: 12.5px; color: var(--amber-3); background: rgba(245,158,11,.12); padding: 3px 9px; border-radius: var(--r-pill); }
.cap .yes svg { width: 18px; height: 18px; }

@media (max-width: 780px) {
  .addons { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .addons { grid-template-columns: 1fr; }
}
