.gifttm-dashboard {
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
}

.gifttm-dashboard__welcome {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.gifttm-dashboard__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gifttm-dashboard__welcome h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
}

.gifttm-dashboard__logout {
  flex: 0 0 auto;
  color: #333;
  font-weight: 700;
}

.gifttm-dashboard__phone-status {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #e1e1e1;
  border-left: 4px solid #ffd400;
  border-radius: 12px;
  background: #fafafa;
}

.gifttm-dashboard__status-icon,
.gifttm-dashboard__card-icon {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff3b0;
}

.gifttm-dashboard__status-icon {
  width: 48px;
  height: 48px;
}

.gifttm-dashboard svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gifttm-dashboard__phone-status strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.gifttm-dashboard__phone-status p,
.gifttm-dashboard__intro {
  margin: 0;
  color: #666;
}

.gifttm-dashboard__intro {
  margin-bottom: 20px;
  line-height: 1.65;
}

.gifttm-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gifttm-dashboard__cards--standard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gifttm-dashboard__card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  box-sizing: border-box;
  min-height: 108px;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fff;
  color: #222 !important;
  text-decoration: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.gifttm-dashboard__cards--standard .gifttm-dashboard__card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gifttm-dashboard__card:hover,
.gifttm-dashboard__card:focus-visible {
  border-color: #e5bd00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.gifttm-dashboard__card-icon {
  width: 48px;
  height: 48px;
}

.gifttm-dashboard__card strong,
.gifttm-dashboard__card small {
  display: block;
}

.gifttm-dashboard__card strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.gifttm-dashboard__card small {
  color: #6d6d6d;
  line-height: 1.45;
}

.gifttm-dashboard__card > b {
  color: #c69f00;
  font-size: 24px;
}

@media (max-width: 900px) {
  .gifttm-dashboard__cards--standard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .gifttm-dashboard__welcome {
    align-items: flex-start;
  }

  .gifttm-dashboard__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .gifttm-dashboard__welcome {
    display: grid;
    gap: 10px;
  }

  .gifttm-dashboard__phone-status {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 14px;
  }

  .gifttm-dashboard__status-icon,
  .gifttm-dashboard__card-icon {
    width: 40px;
    height: 40px;
  }

  .gifttm-dashboard__card {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding: 14px;
  }
}
