.xfw-wrap {
  margin: 2em 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.xfw-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity 0.15s;
}

.xfw-inner:hover {
  opacity: 0.88;
}

.xfw-icon {
  flex-shrink: 0;
}

.xfw-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  display: block;
}

.xfw-text {
  flex: 1;
  min-width: 0;
}

.xfw-heading {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 4px !important;
  padding: 0 !important;
  line-height: 1.4;
}

.xfw-description {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.5;
}

.xfw-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000 !important;
  font-size: 0.92rem;
  font-weight: bold;
  text-decoration: none !important;
  padding: 10px 20px;
  border-radius: 99px;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.xfw-button svg {
  width: 16px;
  height: 16px;
  fill: #000;
  flex-shrink: 0;
}

.xfw-button:hover {
  background: #e7e7e7;
  transform: translateY(-1px);
  text-decoration: none !important;
  color: #000 !important;
}

@media (max-width: 540px) {
  .xfw-inner {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }

  .xfw-icon {
    display: none;
  }

  .xfw-button {
    width: 100%;
    justify-content: center;
  }
}
