/* Container */
.tic-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    margin: 12px 0;
}

/* Phone outline */
.phone-icon {
    width: 22px;
    height: 34px;
    border: 1.5px solid #374151;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    flex-shrink: 0;
}

/* Screen */
.phone-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: #f3f4f6;
    border-radius: 4px;
}

/* Emoji inside screen */
.phone-icon .emoji {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1;
}

/* Text alignment */
.tic-counter .text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tic-counter strong {
    font-weight: 700;
}

@media (max-width: 480px) {

    .tic-counter {
        max-width: 100%;
        font-size: 14px;
        padding: 7px 12px;
        gap: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .phone-icon {
        width: 18px;
        height: 28px;
    }

    .phone-icon .emoji {
        font-size: 13px;
    }
}

.tic-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 16px 0;
  border-top: 1px solid #e6eef2;
  border-bottom: 1px solid #e6eef2;
  background: transparent !important;
}

/* Keep your current counter/icon, but remove pill shape */
.tic-meta-line .tic-counter {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #5f6f78 !important;
  font-size: 15px !important;
}

/* Keep the blue outlined icon visible */
.tic-meta-line .phone-icon {
  display: flex !important;
}

/* Make text subtle */
.tic-meta-line .text,
.tic-meta-line strong {
  color: #5f6f78 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

/* Optional: make the number stand out slightly */
.tic-meta-line strong {
  color: #222 !important;
  font-weight: 600 !important;
}

@media (max-width: 480px) {
  .tic-meta-line {
    padding: 14px 0;
  }

  .tic-meta-line .tic-counter,
  .tic-meta-line .text,
  .tic-meta-line strong {
    font-size: 14px !important;
  }
}