/* Houston360Photo section palette */

:root {
  --section-green: #edf4ef;
  --section-gray: #f1f1ef;
  --section-white: #ffffff;
  --section-charcoal: #303331;
}

.intro {
  background: var(--section-white);
}

.work {
  background: var(--section-green);
}

.experience {
  background: var(--section-charcoal);
  color: #ffffff;
}

.experience .section-label {
  color: #b9d8c4;
}

.experience .experience-copy {
  color: rgba(255, 255, 255, 0.78);
}

.select-projects {
  background: var(--section-white);
  padding-top: clamp(70px, 7vw, 105px);
  padding-bottom: clamp(70px, 7vw, 105px);
}

.select-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  column-gap: clamp(44px, 8vw, 120px);
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.select-card .section-label,
.select-card h2 {
  grid-column: 1;
}

.select-card > p:not(.section-label),
.select-card .service-list {
  grid-column: 2;
}

.select-card > p:not(.section-label) {
  margin-top: 0;
  color: #34322f;
}

.select-card .service-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.select-card .service-list span {
  border-bottom: 1px solid var(--line);
  color: #34322f;
}

.select-card .service-list span::before {
  background: #777;
}

.about {
  background: var(--section-gray);
}

@media (max-width: 860px) {
  .select-card {
    grid-template-columns: 1fr;
  }

  .select-card .section-label,
  .select-card h2,
  .select-card > p:not(.section-label),
  .select-card .service-list {
    grid-column: 1;
  }

  .select-card > p:not(.section-label) {
    margin-top: 28px;
  }
}