/* İş Ortaklarımız Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 228px;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/ortaklarimiz1.png")
    rgb(255, 255, 255) -0.002px -815.494px / 100% 527.405% no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #0c121d;
}

.page-title {
  font-family: "Montserrat", sans-serif;
  color: #0c121d;
  font-family: Montserrat;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 41.14px; /* 121% */
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

.breadcrumb-nav li {
  color: #5e5e5e;
}

.breadcrumb-nav a {
  color: #5e5e5e;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  color: #4caf50;
}

.breadcrumb-nav .active {
  color: #5e5e5e;
}

.separator img {
  width: 6px;
  height: 9px;
}

/* Partners Section */
.partners-section {
  padding: 100px 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-wrapper {
  width: 236px;
  height: 128px;
  border: 1px solid #eeeeef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  background: white;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .partners-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .breadcrumb-section {
    height: 220px;

    padding-left: 20px;
  }

  .page-title {
    font-size: 32px;
  }

  .partners-section {
    padding: 80px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    height: 180px;
    padding-left: 20px;
  }

  .page-title {
    font-size: 28px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }

  .partners-section {
    padding: 60px 0;
  }

  .partners-grid {
    gap: 30px;
  }

  .partner-logo-wrapper {
    width: 200px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 24px;
  }

  .partners-section {
    padding: 40px 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-logo-wrapper {
    width: 100%;
    max-width: 280px;
    height: 150px;
  }
}
