/* ================= THEME ================= */
:root{
  --turq-1:#22b7c6;   /* turkuvaz */
  --turq-2:#0f8ea3;   /* koyu turkuvaz */
}

/* RESET */
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body{ font-family:Arial, Helvetica, sans-serif; background:#fff; color:#222; }

/* ================= TURKUVAZ BANNER (SOL HİZALI) ================= */
.kurt-hero{
  background:
    radial-gradient(2200px 680px at 110% -10%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(102deg,var(--turq-1),var(--turq-2));
  color:#fff;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
}
.kurt-hero-inner{
  width:100%;
  padding:72px 24px 80px 5vw;   /* sol hizalı */
  text-align:left;
}
.kurt-hero h1{
  margin:0 0 8px;
  font-weight:800;
  font-size:clamp(24px,3.2vw,40px);
  line-height:1.15;
  letter-spacing:.2px;
  text-shadow:0 2px 10px rgba(0,0,0,.12);
  position:relative;
  padding-left:14px;            /* sol vurgu çizgisi */
}
.kurt-hero h1::before{
  content:"";
  position:absolute; left:0; top:10%;
  width:4px; height:80%;
  border-radius:4px;
  background:linear-gradient(180deg,#ffffff,#b7eef5);
}
.kurt-hero p{
  margin:0;
  font-size:clamp(13px,1.5vw,17px);
  opacity:.95;
  max-width:62ch;
  letter-spacing:.1px;
}

/* ================= PAGE ================= */
.awards-page{ padding:90px 0 110px; background:#fff; }

/* TITLE */
.awards-title{ text-align:center; margin-bottom:70px; }
.awards-title h2{ font-size:38px; font-weight:300; color:#888; }
.awards-title h2 span{ display:block; margin-top:10px; font-size:46px; font-weight:300; }

/* GRID */
.awards-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.award-card{
  background:#fff;
  border-radius:6px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;
  transition:.3s;
}
.award-card:hover{ transform:translateY(-6px); }
.award-card img{ width:90%; display:block; }

.award-content{ padding:25px 22px 30px; }
.award-content h3{
  font-size:18px; font-weight:600; margin-bottom:12px;
  display:flex; align-items:center; gap:8px;
}
.award-content h3 span{ font-size:18px; }
.award-content p{ font-size:14px; line-height:1.7; color:#444; }

/* MOBILE */
@media(max-width:991px){
  .awards-container{ grid-template-columns:1fr; }
  .awards-title h2{ font-size:28px; }
  .awards-title h2 span{ font-size:34px; }
  .kurt-hero{ min-height:280px; }
  .kurt-hero-inner{ padding:56px 20px; }
}
/* ================= AWARD IMAGE SIZE FIX ================= */
.award-card img{
  width:100%;
  height: 470px;          /* eşit ve dengeli yükseklik */
  object-fit:cover;      /* kırpmalı ama bozulmaz */
  object-position:center;
  display:block;
}
@media(max-width:991px){
  .award-card img{
    height:260px;
  }
}
.award-card img
Specificity: (0,1,1)
 {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
    display: block;
}