/* Proje sayfaları — derlenmemiş Tailwind grid sınıfları */

.projects-layout {
  display: grid;
  gap: 2rem;
}

.projects-sidebar {
  min-width: 0;
}

.projects-main {
  min-width: 0;
}

@media (min-width: 1024px) {
  .projects-layout {
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 2.5rem;
  }

  .projects-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.project-show-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-show-info {
  width: 100%;
}

.project-show-info dl {
  display: grid;
  gap: 1rem;
}

.project-show-site-link {
  width: 100%;
}

@media (min-width: 640px) {
  .project-show-info dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-show-site-link {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .project-show-info dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.project-show-body {
  display: grid;
  gap: 2rem;
  min-width: 0;
}

.project-show-main {
  min-width: 0;
}

.project-show-related {
  min-width: 0;
}

@media (min-width: 1024px) {
  .project-show-layout {
    gap: 2.5rem;
  }

  .project-show-body {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 2.5rem;
    align-items: start;
  }

  .project-show-related {
    position: sticky;
    top: 6rem;
  }
}
