/* İş Güvenliği — Natura benzeri, Bais renkleri */

.page-isg .site-header {
  position: absolute;
}

.isg-hero {
  position: relative;
  min-height: 460px;
  height: 58vh;
  max-height: 620px;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(115deg, rgba(20, 12, 10, 0.78) 0%, rgba(20, 12, 10, 0.42) 48%, rgba(214, 125, 92, 0.28) 100%),
    url("../../images/isg-hero.jpg") center 45% / cover no-repeat;
  color: #fff;
}

.isg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 55%, rgba(214, 125, 92, 0.22), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(42, 22, 18, 0.35), transparent 65%);
  pointer-events: none;
}

.isg-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.isg-hero-title {
  color: var(--nav-active);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 18ch;
}

.isg-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.isg-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.isg-breadcrumb a:hover {
  color: var(--nav-active);
}

.isg-breadcrumb .current {
  color: var(--nav-active);
  border-bottom: 2px solid var(--nav-active);
  padding-bottom: 2px;
  font-weight: 600;
}

.isg-main {
  position: relative;
  z-index: 2;
  background: #f7f4f1;
  padding: 48px 24px 96px;
  margin-top: 0;
}

.isg-card {
  width: min(820px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(42, 22, 18, 0.14);
  padding: clamp(36px, 5vw, 56px);
}

.isg-card h1 {
  color: #2a1612;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
}

.isg-card .isg-kicker {
  color: var(--nav-active);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.isg-card .isg-lead {
  color: #2a1612;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 24px;
}

.isg-card p {
  color: #5c4f4a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.isg-card p:last-child {
  margin-bottom: 0;
}

.isg-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #ebe4df;
}

.isg-highlight {
  text-align: center;
}

.isg-highlight i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(214, 125, 92, 0.12);
  color: var(--nav-active);
  font-size: 20px;
}

.isg-highlight strong {
  display: block;
  color: #2a1612;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.isg-highlight span {
  display: block;
  color: #6d6460;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .isg-hero {
    min-height: 320px;
    height: auto;
  }

  .isg-hero-inner {
    width: calc(100% - 32px);
    padding: 96px 0 48px;
  }

  .isg-main {
    margin-top: 0;
    padding: 32px 16px 72px;
  }

  .isg-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
