/* Ortak Raporlar bölümü — yonetim.html ve index.html tarafından kullanılır */
.report-section { --r-border: #dbe4ef; --r-navy: #163a63; --r-muted: #64748b; }
.report-section .section-heading { margin-bottom: 14px; }
.report-section .section-heading h2 {
  font-size: 1.15rem; margin: 0; color: var(--r-navy); font-weight: 800; letter-spacing: -0.01em;
}
.report-section .tools-grid {
  display: grid;
  /* Dar ekranda minmax(300px) viewport'tan taşmasın (html/body overflow-x:hidden) */
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 16px;
  margin-bottom: 0;
  min-width: 0;
}
.report-section .card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--r-border);
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(25, 48, 79, 0.10);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  text-align: left;
  min-width: 0;
}
.report-section .card:hover {
  border-color: var(--r-navy);
  box-shadow: 0 6px 18px rgba(22, 58, 99, 0.18);
  transform: translateY(-1px);
}
.report-section .card .card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(23, 58, 108, 0.14), rgba(23, 58, 108, 0.05));
  color: var(--r-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-section .card .card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.report-section .card .card-body { flex: 1; min-width: 0; }
.report-section .card h2 {
  font-size: 1.05rem; margin: 0 0 6px; color: var(--r-navy); font-weight: 700;
  overflow-wrap: anywhere; word-break: break-word;
}
.report-section .card p {
  margin: 0; font-size: 13px; color: var(--r-muted); line-height: 1.45;
  overflow-wrap: anywhere; word-break: break-word;
}

@media (max-width: 768px) {
  .report-section .tools-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .report-section .card {
    padding: 14px 16px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .report-section .card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    align-self: flex-start;
  }
  .report-section .card .card-icon svg { width: 22px; height: 22px; }
  .report-section .card h2 { font-size: 0.98rem; }
  .report-section .card p { font-size: 12px; }
}
