body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #222;
}

.page-shell {
  width: 100%;
}

.top-nav {
 
  background:#24457A;
    border-bottom:4px solid #CDBC70;
  color: white;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-inner a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.archive-hero{
    background:linear-gradient(
        135deg,
        #24457A 0%,
        #2F5F9A 100%
    );

    color:white;
    border-bottom:8px solid #CDBC70;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 24px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 25px;
}

.city-logo {
  width: 115px;
  height: auto;
  flex-shrink: 0;
}

.branding-text h1 {
  margin: 0;
  color: var(--brentwood-dark-blue);
  font-size: 42px;
}

.subtitle {
  margin: 8px 0 0;
  font-size: 20px;
  color: #ffffff;
}

.intro-panel {
  max-width: 950px;
  line-height: 1.65;
  font-size: 17px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 25px;
}

.stats div {
  background: #CDBC70;
  border-left: 5px solid var(--brentwood-gold);
  padding: 16px 22px;
  min-width: 190px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.stats strong {
  display: block;
  color: var(--brentwood-dark-blue);
  font-size: 30px;
}

.stats span {
  display: block;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
}

.search-panel{
    background:white;
    border-top:6px solid var(--brentwood-gold);
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    border-radius:6px;
    padding:30px;
}

.search-panel h2 {
  margin-top: 0;
  color: var(--brentwood-dark-blue);
}

.search {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 13px;
  margin-bottom: 12px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

.card {
  background: white;
  width: 300px;
  padding: 18px;
  border-radius: 6px;
  border-top: 6px solid #1f3f6f;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.card:hover{
    border-top-color:#CDBC70;
}
.card h3 {
  margin-top: 0;
  color: var(--brentwood-dark-blue);
}

.clickable {
  cursor: pointer;
}

.clickable:hover {
  border-top-color: var(--brentwood-gold);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    gap: 8px;
  }

  .branding {
    flex-direction: column;
    text-align: center;
  }

  .branding-text h1 {
    font-size: 30px;
  }

  .city-logo {
    width: 90px;
  }

  .card {
    width: 100%;
  }
}

.thumbnail {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 8px;
}

.card img {
  max-width: 100%;
}

.gallery .card {
  width: 240px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 40px 0 25px;
    border-bottom: 3px solid var(--brentwood-gold);
    padding-bottom: 15px;
}

.results-header h2 {
    margin: 0;
    color: var(--brentwood-dark-blue);
    font-size: 34px;
}

.results-description {
    margin-top: 8px;
    color: #666;
    max-width: 700px;
    line-height: 1.5;
}

.results-count {
    background: white;
    padding: 12px 18px;
    border-left: 5px solid var(--brentwood-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-radius: 4px;
    font-size: 15px;
}

.results-count strong {
    color: var(--brentwood-dark-blue);
}

.detail-hero{
   background:linear-gradient(
        135deg,
        #24457A 0%,
        #2F5F9A 100%
    );

    color:white;
    border-bottom:8px solid #CDBC70;
}

.detail-hero h1{
    color:#ffffff(--brentwood-dark-blue);
    font-size:48px;
    margin:10px 0;
}

.detail-summary{
    color:#555;
    max-width:900px;
	color: #ffffff;
}

.detail-gallery .card {
  width: 220px;
}

.thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.document-list {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.document-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: white;
  border-left: 5px solid var(--brentwood-gold);
  padding: 14px 16px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.document-card:hover {
  background: #f4f7fb;
}

.document-icon {
  font-size: 28px;
}

.document-card span {
  display: block;
  color: #666;
  margin-top: 3px;
}