   /* Footer */
    footer {
      flex-shrink: 0;
      padding: 24px 16px;
      border-top: 1px solid rgba(0,0,0,0.08);
     /* background: rgba(81,144,245,0.08); *//* subtle tint */
    }

.ktsPC-footer {
  /* background: rgba(0,0,0,0.75);*/
  color: #eeeeee;
  padding: 32px 16px;
}

.ktsPC-footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 180px; /* Abstand zwischen den Symbolen */
  text-align: center;
}

/* Abstand nach oben*/
.ktsPC-footer-section{
	  margin: 40px 0 0 0;
}

.kts_p_center{
	  text-align: center;
	   margin: 0 auto 0 auto 0;
}


.ktsPC-footer-subtitle{

  padding-left: 0;       /* bündig am linken Rand */
  margin: 0;
  text-align: left;      /* sorgt für linksbündige Ausrichtung */
	
}

.ktsPC-footer-nav {
  list-style: none;      /* entfernt die Standardpunkte */
  padding-left: 0;       /* bündig am linken Rand */
  margin: 0;
  text-align: left;      /* sorgt für linksbündige Ausrichtung */
}

.ktsPC-footer-link {
  display: inline-block; /* Links nebeneinander oder untereinander */
   text-decoration: none;
  text-align: left;      /* Text bleibt linksbündig */
  color: #5190f5;
}


.ktsPC-footer-link:hover {
  color: #66ccff;
  text-decoration: underline;
}

.ktsPC-footer-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}

.ktsPC-footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}



/* RSS FEED */

    /* Footer container with centered items */
    .ktsPC-feed-footer {
      display: flex;
      justify-content: center;  /* center horizontally */
      align-items: center;      /* center vertically */
      gap: 32px;                /* space between the two links */
      text-align: center;       /* center text under icons */
      flex-wrap: wrap;          /* wrap on small screens */
    }

    /* Feed links */
    .ktsPC-feed-link {
      color: var(--kunimus-blue);
      text-decoration: none;
      font-size: 18px;
      line-height: 1.25;
      display: inline-block;    /* needed for vertical spacing + hover effects */
      padding: 8px 12px;
      border-radius: 8px;
      transition: transform 120ms ease, color 120ms ease, background-color 120ms ease;
    }

    .ktsPC-feed-link:hover {
      color: #66ccff;           /* Mario's secondary blue */
      background-color: rgba(81,144,245,0.10);
      transform: translateY(-2px);
    }

    /* Icon */
    .ktsPC-feed-icon {
      font-size: 40px;
      color: var(--kunimus-blue);
      display: inline-block;
      margin-bottom: 6px;
      vertical-align: middle;
    }

    /* Small helper to reduce default <br> spacing on mobile */
    .ktsPC-tight {
      display: inline-block;
      margin-top: -20px;
    }
	
	
	.ktsPC-footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 180px; /* Desktop: großer Abstand */
  text-align: center;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .ktsPC-footer-container {
    flex-direction: column;   /* Sections untereinander */
    align-items: center;      /* Logo und Links mittig */
    gap: 20px;                /* viel kleinerer Abstand */
  }

  .ktsPC-footer-section {
    margin: 20px 0 0 0;       /* enger Abstand nach oben */
    text-align: center;       /* Inhalte mittig */
  }

  .ktsPC-footer-subtitle,
  .ktsPC-footer-nav,
  .ktsPC-footer-link {
    text-align: center;       /* Links und Titel mittig auf Handy */
  }
}

	

