/* ========================
   TEMEL AYARLAR
======================== */
.atu-wrapper {
  max-width: 1400px;
  margin: 30px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 0 10px;
}

/* ARAMA KUTUSU (YENİ) */
.atu-search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  max-width: 100%;
}

.atu-search-box input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  outline-color: #333; /* Odaklanınca renk */
}

.atu-search-box button {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: .2s;
}

.atu-search-box button:hover {
  background: #000;
}

/* GRID */
.atu-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

/* KART */
.atu-compact-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  display: flex;
  overflow: hidden;
  height: 270px;
}

/* SOL (RESİM) */
.atu-left {
    width: 130px;
    flex-shrink: 0;
    /* background: #fcfcfc; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* border-right: 1px solid #f0f0f0; */
}
.atu-left img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* SAĞ (BİLGİ) */
.atu-right {
  flex: 1;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.atu-right::after {
    content: "";
    position: absolute;
    right: -35px;
    top: -3px;
    width: 200px;
    height: 282px;
    background: url(logof.png) no-repeat center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}

/* METİNLER */
.atu-dept {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: capitalize;
    margin-bottom: 2px;
}
.atu-name { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.atu-job { font-size: 13px; color: #555; margin-bottom: 8px; font-weight: 500; }

/* İLETİŞİM ALANI */
.atu-contact { 
  font-size: 12px; 
  color: #444; 
  margin-bottom: 10px; 
  width: 100%; 
}

/* Telefon Satırı */
.atu-phone-row {
  display: flex;
  align-items: center;
  gap: 8px; /* İkon ve yazı arası boşluk */
  margin-bottom: 4px;
  font-size: 13px; /* Telefondaki yazı boyutu görseldeki gibi */
  color: #444; 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.atu-phone-row svg {
  width: 16px;
  height: 16px;
  fill: #555; /* İkon rengi koyu gri */
  flex-shrink: 0;
}

/* Mail Satırı */
.atu-mail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  font-size: 12px;
}
/* Mail adresi sığmazsa aşağı kaydır, ... koyma */
.atu-mail-row {
  white-space: normal; 
  word-break: break-all; /* Uzun mailleri kır */
  line-height: 1.2;
}
.atu-mail-row svg {
  width: 16px;
  height: 16px;
  fill: #666;
  flex-shrink: 0;
}


/* BUTONLAR */
.atu-nav { display: flex; gap: 5px; margin-top: auto; margin-bottom: 8px; }
.atu-nav button, .atu-nav a {
  background: #f0f0f0; border: none; padding: 4px 10px;
  font-size: 11px; border-radius: 4px; cursor: pointer;
  font-weight: 600; color: #555; text-decoration: none; white-space: nowrap;
}
.atu-nav button.active { background: #333; color: #fff; }
.atu-nav a { background: #fff; border: 1px solid #ddd; color: #a81e01; }
.atu-nav a:hover { background: #a81e01; color: #fff; border-color: #a81e01; }

/* İÇERİK (SCROLL + 3 SATIR) */
.atu-content {
  display: none; font-size: 11px; color: #444;
  height: 65px;
  overflow-y: auto;
  background: #f9f9f9; padding: 5px;
  border-radius: 4px; border: 1px solid #eee;
}
.atu-content.active { display: block; }
.atu-content ul { padding-left: 15px; margin: 0; }
.atu-content li { margin-bottom: 4px; line-height: 1.3em; }

/* Scrollbar */
.atu-content::-webkit-scrollbar { width: 4px; }
.atu-content::-webkit-scrollbar-track { background: #f1f1f1; }
.atu-content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* MOBİL */
@media (max-width: 1200px) { .atu-grid-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .atu-grid-container { grid-template-columns: 1fr; } .atu-compact-card { height: auto; min-height: 270px; } }
