:root {
  --nav-link-light: #bbbbbb;
  --border: #aaa;
  --main-max-width: 1200px;
}

html, body {
  background: var(--background, white);
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

h3{
  font-size: 1.8rem;
}

h4{
  font-size: 1.4rem;
  color:#aaa;
  font-weight: 300;
}

p{
  font-size: 1rem;
}

/* Header: unchanged */
.container_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 0 !important;
  padding: 0;
  margin-top: 10px;
  font-size: 16px;
}
.header-nav {
  display: flex;
  justify-content: center;
  gap: 100px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header-nav .nav-link {
  font-size: 1.15em;
  letter-spacing: 1px;
  color: var(--nav-link-light) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: #000 !important;
}

/* ------ MAIN LAYOUT ------ */
.work-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--main-max-width);
  margin: 10px auto 0 auto;
  width: 100%;
}

/* All rows have A3 aspect */
.a3-row {
  width: 100%;
  aspect-ratio: 420 / 297;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

/* Starter row: 2 columns */
.starter-row {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 0;
  height: 100%; /* For children to stretch */
}

/* Start image and text column */
.start-image, .work-starter-text {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.start-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #faf7ef;
  padding: 0;
  overflow: hidden;
  border-right: 0.5px solid #dbdbdb;
}

.start-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.work-starter-text {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  font-size: clamp(12px, 2vw, 24px); /* Responsive font size */
  line-height: 1.2;
}

.work-starter-text>h4{
  margin-bottom: 3rem;
}

.award-text{
  font-weight: 300;
  font-style: italic;
  padding-top: 50px;
}

.work-info-text{
  font-weight: 300;
  padding-top: 50px;
}

.emphasize-text{
  font-weight: 700;
}

/* Content image rows */
.content-image-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.content-image-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Footer */
.footer-container {
  max-width: var(--main-max-width);
  margin: 48px auto 0 auto;
  padding: 0 0 24px 0;
  text-align: center;
}
.footer-line {
  width: 100%;
  border: none;
  border-top: 1.5px solid #bbb;
  margin: 0 0 12px 0;
}
.footer-copy {
  font-size: 0.90rem;
  color: #666;
  margin: 0;
}

/* Responsive: shrink gap, font size, padding for mobile */



@media (max-width: 480px) {
  
  .header-nav {gap: 15px;}
  .header-nav .nav-link {font-size: 10px;}

  h1 { font-size: 36px; }
  h2 { font-size: 20px; }
  h3 { font-size: 14px; }
  h4 { font-size: 12px; }
  p  { font-size: 10px; }

  .work-wrapper {
    gap: 12px;
    max-width: 98vw;
    padding: 0 2vw;
    margin: 0px;
  }

  .work-starter-text>h4{
  margin-bottom: 8px;}


  .work-starter-text {
    font-size: clamp(10px, 3vw, 18px);
    padding: 8px 4px;}

  .award-text{  padding-top: 8px;}

  .work-info-text{
  font-weight: 300;
  padding-top: 8px;}
}  



@media (min-width: 481px) and (max-width: 1024px) {}


@media (min-width: 1025px) {}