/*
 * ds_staticblock — front. Samowystarczalne style bloków (prefiks .dssb).
 * @author Dynamite Studio
 */
.dssb { margin: 0 0 16px; }
.dssb img { max-width: 100%; height: auto; }

/* Banner */
.dssb--banner { text-align: center; }
.dssb--banner img { border-radius: 6px; }

/* Bar */
.dssb--bar {
  position: relative; background: #2b7a4b; color: #fff; padding: 12px 44px 12px 16px;
  text-align: center; border-radius: 4px;
}
.dssb--bar a { color: #fff; text-decoration: underline; }
.dssb-bar__close {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  border: 0; background: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
}
.dssb--bar.dssb-closed { display: none; }

/* Accordion */
.dssb--accordion { border: 1px solid #e5e5e5; border-radius: 6px; overflow: hidden; }
.dssb-acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: #f7f7f7; border: 0; cursor: pointer; font-weight: 600; font-size: 15px; text-align: left;
}
.dssb-acc__icon { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; transition: transform .2s ease; }
.dssb-acc__head[aria-expanded="true"] .dssb-acc__icon { transform: rotate(180deg); }
.dssb-acc__body { padding: 16px; }

/* Icons / benefits grid */
.dssb--icons { display: flex; flex-wrap: wrap; gap: 20px; }
.dssb--icons > * { flex: 1 1 200px; text-align: center; }
