a.home_headers {
  display: block;
  position: relative;
  background: url(/home/images/home_headers.png) no-repeat;
  margin: 3px auto 27px auto;
}
a.welcome {
  background-position: 0 0;
  width: 362px;
  height: 33px;
}
a.about {
  background-position: -363px 0px;
  width: 137px;
  height: 33px;
  margin-top: 30px;
}
.portrait {
  float: right;
  width: 197px;
  height: 221px;
  margin-left: 20px;
}
#noJSContainer {
  display: block;
  width: 100%;
  height: 340px;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.noJavaThumbnails {
  width: 380px;
  height: 326px;
  border-radius: 3px;
  /* moz-border-radius: 3px; */
  -webkit-border-radius: 3px;
  border: 2px solid #431e0a;
}

.noJavaThumbnails:hover {
  border: 2px solid #e5d256;
}

/* -------------------- home page folio images -------------------- */
.card-wrapper-center {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 25px 0 20px 0;
}

/* 1092px wide layout container */
.card-grid-container {
  display: flex;
  /* width: 1092px; */
  width: 100%;
  gap: 8px;
  box-sizing: border-box;
}

.card-grid-link {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid #412009;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition:
    transform 0.17s ease-in-out,
    box-shadow 0.17s ease-in-out,
    border-color 0.15s ease-in-out;
  aspect-ratio: 1 / 1;
}

/* Fluid responsive image layout */
.card-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease-in-out;
}

/* Interactive hover logic mapped to classes */
.card-grid-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
  border-color: #ffdd57;
}

.card-grid-link:hover,
.card-grid-image {
  filter: brightness(1.25) contrast(1);
}
