/* About page overrides */
html, body {
  width: 100%;
  min-height: 100%;
  color: #333333;
  line-height: 1.6;
}

/* Page Layout — content pushed right of sidebar */
.page {
  margin: 0 0 0 260px;
  padding: 0 60px 0 40px;
}

/* Two-Column Layout — narrow columns, generous white space */
.layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(240px, 360px);
  justify-content: space-between;
  padding: 40px 0 0;
  align-content: start;
}

/* Mission Statement */
.mission {
  margin-bottom: 40px;
}

.mission-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 16px;
}

.mission p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission p:last-child {
  margin-bottom: 0;
}

.mission-contact {
  margin-top: 24px;
  font-size: 13px;
  color: #666;
}

.mission-contact a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.mission-contact a:hover {
  border-bottom-color: #111;
}

/* Right Column - Items */
.col-right {
  padding-top: 0;
}

.items {
  display: flex;
  flex-direction: column;
}

.item {
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.item:first-child {
  border-top: none;
  padding-top: 0;
}

.item:last-child {
  border-bottom: none;
}

.item:hover {
  opacity: 0.5;
}

.item-number {
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.item-desc {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}

.item-arrow {
  font-size: 16px;
  color: #999;
  text-align: right;
  transition: transform 0.2s ease;
}

.item:hover .item-arrow {
  transform: translateX(3px);
  color: #111;
}

/* Responsive — page-specific */
@media (max-width: 900px) {
  .page {
    padding: 0 24px;
    margin-left: 0;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 0 0;
  }

  .item {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 16px;
  }

  .page-title {
    font-size: 16px;
    padding: 24px 0;
  }

  .layout {
    padding: 24px 0 0;
  }

  .item {
    grid-template-columns: 1fr 24px;
    padding: 20px 0;
  }

  .item-number {
    display: none;
  }
}
