:root {
  --kirvx-green: #47F138;
}

/* ============================
   SOCIAL SECTION WRAPPER
   ============================ */
.social-section {
  position: relative;
  width: 100%;
  background: #05070a;
  padding: 80px 8% 40px;   /* oben/seitlich normal, unten kleiner Abstand */
  box-sizing: border-box;
  overflow: hidden;
}

/* CONTENT LAYOUT */
.social-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* ============================
   LEFT COLUMN / TEXT
   ============================ */
.social-left {
  flex: 1;
  max-width: 480px;
}

.social-left h2 {
  color: var(--kirvx-green);
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 14px;
}

.social-left p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
}

/* ============================
   LINKS STYLING
   ============================ */
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links li {
  margin-bottom: 14px;
}

.social-links a {
  color: #ddd;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: var(--kirvx-green);
  transform: translateX(6px); /* sanfte Bewegung */
}

/* ============================
   RIGHT COLUMN / IMAGE
   ============================ */
.social-right {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 350px;
}

.social-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
