/* =========================================================
   GCGF – KOOPERATIONEN
   Quelle: ehemals Simple Custom CSS and JS
   ========================================================= */

/* Ab hier Dein bisheriger CSS-Code */

/* =========================================================
   GCGF – GREENFEEKOOPERATIONEN
   ========================================================= */


/* Gesamter Bereich */

.gcgf-coop-section {
  width: 100%;
  margin: 0;
}


/* Überschrift oberhalb der Box */

.gcgf-coop-heading {
  margin: 0 0 14px !important;
  padding: 0;
  color: #29343a;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}


/* Box */

.gcgf-coop-table {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f3f4ef;
  border: 1px solid #e3e6dd;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(24, 61, 37, 0.06);
  box-sizing: border-box;
}


/* =========================================================
   GRÜNER TABELLENKOPF
   Identische Höhe wie bei den Preistabellen
   ========================================================= */

.gcgf-coop-table-head {
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  height: 65px;
  min-height: 65px;
  padding: 6px 18px;

  background: #679938;
  color: #ffffff;
  box-sizing: border-box;
}


/* Hauptzeile im Tabellenkopf */

.gcgf-coop-table-title {
  margin: 0 0 2px;
  padding: 0;

  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}


/* Kleine zweite Zeile im Tabellenkopf */

.gcgf-coop-table-subtitle {
  margin: 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}


/* =========================================================
   INHALTSBEREICH
   ========================================================= */

.gcgf-coop-table-body {
  padding: 22px 18px 21px;
  box-sizing: border-box;
}


/* Einleitungstext */

.gcgf-coop-intro {
  margin: 0 0 18px !important;
  padding: 0;

  color: #405047;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================================================
   KOOPERATIONSLISTE
   ========================================================= */

.gcgf-coop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 10px;

  margin: 0 0 24px !important;
  padding: 0 !important;

  list-style: none !important;
}


/* Schwarze Standard-Aufzählung von Enfold entfernen */

.gcgf-coop-list,
.gcgf-coop-list li {
  list-style-type: none !important;
  list-style-image: none !important;
}

.gcgf-coop-list li::marker {
  content: "";
  display: none;
}


/* Einzelner Listenpunkt */

.gcgf-coop-list li {
  position: relative;

  min-height: 24px;
  margin: 0 !important;
  padding: 2px 0 2px 31px !important;

  background: none !important;
  color: #29482f;

  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}


/* Grüner Häkchenkreis */

.gcgf-coop-list li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  display: block;
  width: 22px;
  height: 22px;

  margin: 0;
  padding: 0;

  background: #679938;
  border-radius: 50%;

  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}


/* =========================================================
   LINKBUTTON
   ========================================================= */

.gcgf-coop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 9px 16px;

  background: #679938;
  border-radius: 999px;

  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}


/* Pfeil im Button */

.gcgf-coop-button::after {
  content: "→";
  margin-left: 8px;
  font-size: 15px;
  font-weight: 400;
}


/* Button Hover */

.gcgf-coop-button:hover,
.gcgf-coop-button:focus {
  background: #557f2d;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

  .gcgf-coop-heading {
    margin-bottom: 12px !important;
    font-size: 21px;
  }

  .gcgf-coop-table-head {
    height: 55px;
    min-height: 55px;
    padding: 6px 15px;
  }

  .gcgf-coop-table-title {
    font-size: 14px;
  }

  .gcgf-coop-table-subtitle {
    font-size: 10.5px;
  }

  .gcgf-coop-table-body {
    padding: 20px 16px;
  }

  .gcgf-coop-intro {
    margin-bottom: 18px !important;
    font-size: 14px;
  }

  .gcgf-coop-list {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 24px !important;
  }

  .gcgf-coop-list li {
    font-size: 14px;
  }

  .gcgf-coop-button {
    font-size: 12.5px;
  }

}