/* ============================================================
   Projects & Services callout  ("Entdecken" / #explore section)
   ------------------------------------------------------------
   Standalone styles for the combined homepage callout that
   replaces the inline services + portfolio grids and points
   visitors to the dedicated /projekte and /services pages
   (see projects_services_pages_plan.md — "index_explore").

   The cards reuse the testimonials .gr-card look (bordered,
   rounded "squares" with a soft hover shadow) — the whole card
   is a single link.

   Loaded AFTER main.css so it builds on the template's design
   tokens (--accent-color, --surface-color, --heading-color …).
   Copy this file into the project and link it, or paste its
   rules into assets/css/main.css, when integrating.
   ============================================================ */

/* Card = a single link, styled like the testimonials .gr-card */
.explore .explore-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.explore .explore-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* Square (rounded) icon badge: soft gold tint behind a gold accent icon */
.explore .explore-card .explore-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.explore .explore-card .explore-icon i {
  font-size: 26px;
  color: var(--accent-color);
}

.explore .explore-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--heading-color);
}

.explore .explore-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Arrow CTA — sits at the bottom of the card, gold like the brand accent */
.explore .explore-card .explore-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
}

.explore .explore-card .explore-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.explore .explore-card:hover .explore-link i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .explore .explore-card {
    padding: 26px;
  }
}
