/* ── ROTATE STRIP ── */
.dtn-rotate-strip
{
  margin-top: 15px;
  width: 100%;
}

.dtn-strip-row
{
  overflow: hidden;
  position: relative;
  margin-bottom: 7px;
}

/* Fade left & right edges */
/*.dtn-strip-row::before,
.dtn-strip-row::after
{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 4;
  pointer-events: none;
}
.dtn-strip-row::before { left: 0;  background: linear-gradient(to right, #f5f5f5, transparent); }
.dtn-strip-row::after  { right: 0; background: linear-gradient(to left,  #f5f5f5, transparent); }
*/
/* Scrolling track */
.dtn-strip-track
{
  display: flex;
  align-items: stretch;   /* make all cards same height per row */
  gap: 8px;
  padding: 3px 2px;
  width: max-content;
  will-change: transform;
}

/* ── TEXT CARD ── */
.dtn-txt-card
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Fixed size so every card is identical */
  width: 160px;
  min-height: 44px;        /* tall enough for 2 lines */
  padding: 4px 12px;
  box-sizing: border-box;

  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;

  /* allow text to wrap onto 2 lines */
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;

  font-size: 13px;
  font-weight: 700;
  /*color: #2a527c;*/
  /*color: #FFFFFF;*/
  border: 2px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 12px rgba(0,0,0,0.06);
  cursor: default;
  transition: box-shadow 0.2s, transform 0.15s;
}
.dtn-txt-card:hover,
.dtn-txt-card:focus
{
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}

/* Coming-soon variant */
.dtn-txt-card.soon
{
  background: #fef6f9;
  /*color: #c0406a;*/
  border-color: rgba(192,64,106,0.15);
}

/* Active-service variant */
.dtn-txt-card.active-srv
{
  background: #f0f6ff;
  color: #286296;
  border-color: rgba(40,98,150,0.15);
}

.dtn-txt-card:nth-child(3n + 1) {
  color:#4A6FA5;
  border-color: #7EA6E0;
}

.dtn-txt-card:nth-child(3n + 2) {
  color:#4E9C73;
  border-color: #7CC79B;
  
}

.dtn-txt-card:nth-child(3n + 3) {
  color:#6C70C9;
  border-color: #9EA2E3;
}

@media (max-width: 768px)
{
  .dtn-txt-card
  {
    width: 130px;
    min-height: 40px;
    font-size: 11px;
    padding: 4px 9px;
  }
}