/* Container */
.ghc-platforms {
  padding-top: 48px;
  padding-bottom: 32px;
  text-align: center;
}

/* Text */
.ghc-platforms-text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #57606a; /* GitHub fg-muted */
}

/* Icon Row */
.ghc-platforms-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Icon Button */
.ghc-platform {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  position: relative;

  border: 0.5px solid #363a40; /* GitHub border-default */

  transition:
    background-color 120ms ease-out,
    border-color 120ms ease-out;
}
.ghc-platform:hover {
  background-color: #f6f8fa;
  border-color: #eaeef2;
}

[data-theme="light"] .ghc-platform {
  background-color: #fff; /* oder var(--color-base-100) */
}

/* Icon */
.ghc-platform img {
  width: 28px;
  height: 28px;
  opacity: 1;

  transition:
    opacity 120ms ease-out,
    filter 120ms ease-out;
}


.ghc-platform:hover {
  background-color: #f6f8fa;
}

.ghc-platform:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Label */
.ghc-platform-label {
  position: absolute;
  bottom: -22px;

  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #57606a;

  opacity: 0;
  transform: translateY(-2px);
  pointer-events: none;

  transition:
    opacity 120ms ease-out,
    transform 120ms ease-out;
}
.ghc-platform:hover .ghc-platform-label {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Breakpoint exakt */
@media (max-width: 640px) {
  .ghc-platforms {
    padding-top: 32px;
  }

  .ghc-platforms-icons {
    gap: 12px;
  }
}

.logo {
  width: 28px;
  height: 28px;

  /* macht das SVG weiß */
  filter: brightness(0) invert(1);

  transition: filter 120ms ease-out;
}
/* Light Mode */
[data-theme="light"] .logo {
  filter: none; /* 🔥 entscheidend */
}

.ghc-platform {
  position: relative;
}

.aitools-badge {
  position: absolute;
  top: -20px;
  right: -45px;

  width: 80px!important;
  height: 25px!important;
  max-width: none;     /* 🔥 WICHTIG */
  height: auto;

  z-index: 10;
  pointer-events: none;
}

.black-background {
  background-color:#000000;
}

[data-theme="light"] .black-background {
  background-color: #f2f2f2; /* oder var(--color-base-100) */
}

.line-through {
  text-decoration: line-through;
}

.green-strike {
  position: relative;
  display: inline-block;
}

.green-strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 3px;
  background: #22c55e;
  border-radius: 999px;
  transform: rotate(-4deg);
}

.pink-strike {
  position: relative;
  display: inline-block;
}

.pink-strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 3px;
  background: #FF4081;
  border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: 0 0 8px rgba(255, 64, 129, 0.65);
}


.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li::marker {
  content: "";
}

.custom-list li.check::before {
  content: "✓";
  color: #22c55e;
  margin-right: 0.1rem;
}

.custom-list li.cross::before {
  content: "✕";
  color: #ef4444;
  margin-right: 0.1rem;
}
.arrow-left::before {
  content: "<";
  color: #22c55e;
  font-weight: 600;
  font-size:24px;
  margin-right: 0.1rem;
}


.marker {
  width:90px;
  margin: 0;          /* wichtig */
  display: inline-block;
  margin-bottom:5px;
}

.testimonial {
	width:40px;
	margin-top:8px;
}
