/* Two Column Layout - Custom Upholstery */
/* Base Styles */
.two-column-container {
  display: flex;
  gap: 60px;
  max-width: 1410px;
  margin: 50px auto 0;
}
/* Gallery Column */
.gallery-column {
  flex: 1;
  max-width: 50%;
}
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gallery-row {
  display: flex;
  gap: 15px;
}
.gallery-row-1 {
  gap: 15px;
}
.gallery-row-2 {
  gap: 15px;
  align-items: stretch;
}
.gallery-item {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item-1,
.gallery-item-2 {
  flex: 1;
  height: 200px;
}
.gallery-item-3 {
  flex: 1; /* 50% of the width */
  height: 400px;
}
.gallery-item-stack {
  flex: 1; /* 50% of the width */
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 400px; /* Match the height of gallery-item-3 */
}
.gallery-item-4,
.gallery-item-5 {
  flex: 1;
  height: calc(50% - 7.5px); /* Half of the stack height minus half the gap */
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Content Column */
.content-column {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
.content-subtitle {
  font-size: 21px;
  color: #00a7b5;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.content-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.content-paragraph {
  font-size: 18px;
  color: #333f48;
  margin: 0;
}
/* Sustainability Section */
.sustainability-section {
  background-image: url('https://olgoffice.com/wp-content/uploads/2025/07/Sustainability-Banner-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  height: 80vh;
  margin: 50px 0 0px;
}
.sustainability-container {
  max-width: 1410px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.sustainability-content {
  flex: 1;
  max-width: 60%;
}
.sustainability-text {
  font-size: 18px;
  color: #333f48;
  margin: 0;
  max-width: 620px;
}
.sustainability-logo {
  flex: 1;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fsc-logo {
  max-width: 120px;
  height: auto;
}
/* Responsive Breakpoints */
/* Large Desktop (2561px+) */
@media screen and (min-width: 2561px) {}
/* Desktop (1441px - 2560px) */
@media screen and (min-width: 1441px) and (max-width: 2560px) {}
/* Large Tablet (1025px - 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sustainability-container {
    padding: 0 15px;
  }
}
/* Tablet (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .two-column-container {
    align-items: center;
    gap: 30px;
  }
  p.content-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
  }
  .content-body {
    gap: 20px;
  }
  p.content-paragraph {
    font-size: 14px;
  }
  /* Sustainability Section */
  .sustainability-section {
    height: 70vh;
    margin: 50px auto 0;
  }
  .sustainability-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }
  .sustainability-text {
    font-size: 16px;
  }
  .fsc-logo {
    max-width: 80px;
  }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
  .two-column-container {
    gap: 15px;
    flex-direction: column;
    margin: 30px auto 0;
  }
  .gallery-column,
  .content-column {
    max-width: 100%;
  }
  /* Mobile Gallery Layout - Single Column */
  .gallery-grid {
    gap: 10px;
  }
  .gallery-row {
    flex-direction: column;
    gap: 10px;
  }
  .gallery-item-1,
  .gallery-item-2 {
    height: 150px;
  }
  .gallery-item-3 {
    height: 200px;
  }
  .gallery-item-stack {
    height: 200px;
    gap: 10px;
  }
  .gallery-item-4,
  .gallery-item-5 {
    height: calc(50% - 5px);
  }
  p.content-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
  }
  .content-body {
    gap: 20px;
  }
  p.content-paragraph {
    font-size: 14px;
  }
  /* Sustainability Section */
  .sustainability-section {
    height: 50vh;
    margin: 30px auto 0;
  }
  .sustainability-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }
  .sustainability-content,
  .sustainability-logo {
    max-width: 100%;
  }
  .sustainability-text {
    font-size: 14px;
  }
  .fsc-logo {
    max-width: 60px;
  }
}