/* Inserted from assets/css/styles-local.css */



/* ============================================
   Area Index Styles
   ============================================ */

/* area index */

.intro-text {
  margin: 1.5rem 0;
  line-height: 1.6;
}

.section-box {
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin: 2rem 0;
  background: #f9f9f9;
  border-radius: 4px;
  
}

.section-box h2 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #666;
  padding-bottom: 0.5rem;
  break-after: column;
}

.content-list {
  list-style: none;
  padding: 0;
  break-inside: avoid;
}

.content-list li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #666;
}

.content-list a {
  font-weight: 500;
}

.description {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.95em;
}

.callout {
  background: #e8f4f8;
  border-left: 4px solid var(--kyg-navy-tint);
  padding: 1rem;
  margin: 1.5rem 0;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  border: 1px solid #ddd;
  padding: 1.25rem;
  background: white;
  border-radius: 4px;
}

.card h3 {
  margin-top: 0;
  color: #2c5282;
}

/* ============================================
   Photo Callout Styles
   ============================================ */

.photo-callout {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
  background: var(--kyg-cream);
  border: 1px solid var(--kyg-cream-warm);
  border-radius: 8px;
  align-items: center;
}

.photo-callout img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--kyg-cream-warm);
  border-radius: 4px;
  flex-shrink: 0;
}

.photo-callout-content {
  flex: 1;
}

.photo-callout h3 {
  margin: 0 0 0.5rem 0;
  color: var(--kyg-navy-tint);
}

.photo-callout p {
  margin: 0.5rem 0;
}

.photo-callout a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--kyg-navy-tint);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.photo-callout a:hover {
  background: var(--kyg-navy-tint);
}

@media (max-width: 600px) {
  .photo-callout {
    flex-direction: column;
    text-align: center;
  }

  .photo-callout img {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================== */
/* Records - two col */
/* Two-column flow for the whole records area */

/* ===== Records page: two-column blocks ===== */
/* Two-column flow */
.records-sections{
  column-count: 2;
  column-gap: 3.25rem;
  column-fill: balance;
}

/* Slightly smaller type in records area */
.records-sections{
  font-size: 0.95rem;
}

/* Keep blocks intact + make them behave in columns */
.records-sections .record-block{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;

  margin: 0 0 1.6rem;
  padding: 0;              /* no box padding */
  border: 0;               /* no card border */
  background: transparent; /* no card fill */
  box-shadow: none;        /* no shadow */
}


/* Headings: stronger anchor,  */
.records-sections .record-block h2{
  margin: 0 0 .65rem;
  padding: 0 0 .45rem;
  color: #1f3556;
  font-weight: 750;
  letter-spacing: .01em;
  /* border-bottom: 2px solid rgba(31,53,86,.18); */
  break-inside: avoid;
}

/* Scannability cue for section starts */
.records-sections .record-block h2{
  position: relative;
  margin-top: 1.75rem;
  margin-bottom: .6rem;
}


/* Subheads */
.records-sections .record-block h3{
  margin: .9rem 0 .35rem;
  color: rgba(31,53,86,.85);
  font-weight: 700;
}

/* Lists */
.records-sections .record-block ul{
  margin: 0 0 1rem;
  padding-left: 1.6rem; /* indent for bullets */
  break-inside: avoid;
}

.records-sections .record-block li{
  margin: .32rem 0;
  line-height: 1.3;
  margin: .22rem 0;
}

/* Link “life” without visual noise */
.records-sections .record-block a{
  text-decoration: none;
  text-decoration-color: rgba(200,162,77,.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.records-sections .record-block a:hover{
  text-decoration-color: rgba(200,162,77,.9);
}

/* subtle scan marker */
.records-sections .record-block h2::before{
  content:"";
  display:block;
  width: 2.25rem;
  height: 4px;
  margin-bottom: .45rem;
  background: rgba(31,53,86,.28); /* muted navy */
}



/* Mobile */
@media (max-width: 900px){
  .records-sections{ column-count: 1; }
}





/* ========================================== */
/* Photo Gallery */

.gallery-intro {
  margin: 2rem 0;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.category-content {
  padding: 1.5rem;
}

.category-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.category-description {
  margin: 0.5rem 0;
  color: #666;
  line-height: 1.5;
}

.category-link {
  display: inline-block;
  margin-top: 1rem;
  color: #0066cc;
  font-weight: 500;
}

.category-card:hover .category-link {
  text-decoration: underline;
}

/* End inserted from assets/css/custom-styles.css */
