/* Base Section Styling */
/* #alteration {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #333;
  line-height: 1.6;
} */

/* --- Hero Image Container (First Div) --- */
#alteration > div:first-of-type {
  position: relative; /* Container reference point */
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  /* border-radius: 8px; */
  margin-bottom: 24px;
}

/* Image setup inside first div */
#alteration > div:first-of-type img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  /* Darkens image slightly so text is easily readable */
  filter: brightness(0.75);
}

/* Text overlaid on top of image */
#alteration > div:first-of-type h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers text perfectly */
  margin: 0;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* Shadow for enhanced contrast */
  text-align: center;
}

/* --- Secondary Gallery Grid (Fourth Div) --- */
#alteration > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

#alteration > div:nth-of-type(2) img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* --- Bottom Banner (The Workroom) --- */
#alteration > div:last-of-type {
  position: relative;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 32px;
}

#alteration > div:last-of-type img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(0.7);
}

#alteration > div:last-of-type h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* List Styling */
#alteration ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

#alteration li {
  margin-bottom: 8px;
}
