.produkte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .produkte-grid {
    grid-template-columns: 1fr;
  }
}

.produkte-item {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}



.produkte-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 0.85rem;
  z-index: 2;

}

.produkte-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.produkte-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.produkte-item:hover .produkte-image {
  transform: scale(1.2);
}

.produkte-info {
  position: relative;
  z-index: 1;
 /* background: rgba(0, 0, 0, 0.65);*/
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-transform: uppercase;
	background:#2c3755;
}

.produkte-subtitle {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #fff;
	min-height:60px;
}

h3.produkte-title {
  font-size: 18px;
  font-weight: 700;
	color:#fff;
	line-height:1.3rem;
}

.produkte-plus {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.5rem;
}

.produkte-item:hover .produkte-info {
background-color: #629abf;	
	
}

.produkte-plus { 
color:#fff;
 -webkit-transition: 0.6s ease-out;
    -moz-transition:  0.6s ease-out;
    transition:  0.6s ease-out;
}






/* Default + style */
.produkte-plus span {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1;
  color: #fff;
  position: relative;
}

/* Swap content on parent hover */
.standort-box:hover .produkte-plus span::before {
  content: "→";  /* You can change this to →, ➝, ➔, ⇒ etc. */
}

/* Hide original + by setting it as pseudo before */
.produkte-plus span::before {
  content: "+";
  transition: content 0.3s ease;
}

.produkte-item:hover .produkte-plus span::before {
  content: "➝";
  transition: content 0.3s ease;
}










/*STANDORTE */
/* Grid Layout */
.standorte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}


@media (max-width: 768px) {
  .standorte-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Standort Card */
.standort-box {
  /*  display: flex;
    flex-direction: column;
    justify-content: space-between;*/
    background-color: #1e2a44;
    color: #ffffff;
 /*   overflow: hidden;*/
    position: relative;
    min-height: 320px;
    transition: transform 0.3s ease;
}
.standort-box:hover {
    transform: translateY(-5px);
}

/* Title */
.standort-box h3 {
    font-size: 1.2rem;
    margin: 0;
   font-weight: 700;
    color: #ffffff;
}

/* Location Info Background */
.location-info_wrapper {
    background-color: #1e2a44;
    padding: 1.2rem;
    font-size: 0.95rem;
}
.location-info_wrapper .adresse {
    margin: 0.5rem 0;
}
.location-info_wrapper .map {
    margin-top: 1rem;
}

/* Time Info Background */
.time-info_wrapper {
    background-color: #2e3c58;
    padding: 1.2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
	min-height: 315px;
}
.time-info_wrapper h4 {
    margin-top: 0;
    font-size: 1rem;
    color: #ffffff;
	font-weight: 700;
}

/* List Styles */
.standort-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.standort-box ul li {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.standort-telefon { 
color:#fff;
}

.standort-telefon a { 
color:#fff;
}

/* Responsive Iframe */
.standort-box .map iframe {
    width: 100%;
    height: 180px;
    border: none;
   
}

/* Optional: Rounded Tags / Custom Text */
.time-info_wrapper p {
    margin-top: 0.5rem;
    color: #d1d5db;
}

.standort-custom-text { 
margin-bottom:15px;
}



.standort-box:hover .time-info_wrapper { 
background-color:#629abf;
}



/*TEAM*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}


@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 1rem;
}

.team-info h3 {
    margin: 0.5rem 0 0;
}

.team-position, .team-city {
    color: #666;
    font-size: 0.95rem;
}

.team-contact {
    margin-top: 1rem;
}

.team-contact a {
    margin: 0 8px;
    color: #0b486b;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.team-contact a:hover {
    color: #00334e;
}


.team-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 6px;
    background-color: #2c3755;
    color: #fff;
    border-radius: 50%; /* macht die Icons rund */
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.team-contact a:hover {
    background-color: #fff;
    color: #2c3755;
}


/*PARTNER GRID */

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 20px 0;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
}

/* Tablet */
@media (max-width: 1024px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .partner-logo-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}




/* STANDORTE BASIC - [standorte_basic] */
/* Grid Layout */
.standorte-grid-short {
    display: grid;
    grid-template-columns: 1fr; /* always single column */
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Standort Card */
.standort-box-short {
    background-color: #1e2a44;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0px;
    transition: transform 0.3s ease;
}
.standort-box-short:hover {
    transform: translateY(-5px);
}

/* Title */
.standort-title-short {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

/* Address */
.adresse-short {

    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

/* Phone */
.telefon-short {
    font-size: 1rem;
    margin-top: 15px;
}
.telefon-short a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.telefon-short a:hover {
    text-decoration: underline;
}


.adresse-short {
    white-space: pre-line; /* render real \n as line breaks */
    margin-bottom: 0.5rem;
    color: #e5e7eb;
	line-height: 1.3rem;
}

