* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: #0d0f14;
  color: #e8eaf0;
  line-height: 1.5;
}

a {
  color: #69a6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.site-header,
.site-footer {
  background: #141923;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.brand a {
  color: #e8eaf0;
  text-decoration: none;
}

.brand a:hover {
  text-decoration: none;
}

.panel {
  margin-block: 2rem;
}

.muted {
  color: #a6adbb;
}

.meta {
  margin-block: 0.5rem 1rem;
  color: #a6adbb;
  font-size: 0.95rem;
}

.actions {
  display: flex;
  justify-content: center;
  margin-block: 1rem 2rem;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding-left: 0;
}
.nav__link {
  color: #a6adbb;
}
.nav__link:hover {
  color: #e8eaf0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.photo-card {
  background: #141923;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-card__thumb {
  aspect-ratio: 4/3;
  background: #0b0e13;
  display: grid;
  place-items: center;
}
.photo-card__body {
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.35rem;
}
.photo-card__title {
  font-weight: 600;
  color: #e8eaf0;
  margin: 0;
}
.photo-card__meta {
  font-size: 0.9rem;
  color: #a6adbb;
}
.photo-card:focus-within, .photo-card:hover {
  transform: translateY(-2px);
  transition: transform 0.15s ease;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding-left: 0;
  margin: 0;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.5rem;
  color: #a6adbb;
}
.breadcrumb li:last-child::after {
  content: "";
}

.photo-detail {
  background: #141923;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}
.photo-detail .hero {
  border-radius: 14px;
  overflow: hidden;
}
.photo-detail .info {
  display: grid;
  gap: 0.5rem;
}
.photo-detail .info .title {
  font-size: 1.25rem;
  font-weight: 600;
}
.photo-detail .info .by {
  color: #a6adbb;
}

.stats {
  background: #141923;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}
.stats .stat {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-block: 1rem 1.25rem;
}
.search input[type=search] {
  background: #141923;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1rem;
  color: #e8eaf0;
  background: #101521;
  outline: none;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: #69a6ff;
  color: #0b1020;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.btn--ghost {
  background: transparent;
  color: #e8eaf0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}/*# sourceMappingURL=main.css.map */