/* About page styles. */
.page-hero, .page-cover, .job-head { padding-top: 7.5rem; }
.about-hero { background: var(--paper); padding-bottom: 4.875rem; }
.about-hero .container { position: relative; padding-top: 4.375rem; }
.hero-photo { min-height: 26.875rem; }
.paper-panel {
  width: min(47.5rem, calc(100% - 3rem));
  margin: -5.625rem auto 0;
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.625rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.values-grid { grid-template-columns: repeat(4, 1fr); }
.values-grid article, .job-card, .soft-panel, .job-sidebar, .job-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.75rem;
  box-shadow: 0 0.625rem 1.625rem rgba(95, 72, 37, .08);
}
.values-grid span, .job-card > span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}
.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.25rem; align-items: center; }
.clean-list { padding-left: 1.25rem; color: var(--muted); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.125rem; }
.timeline div { border-top: 0.25rem solid var(--brand); background: var(--paper); padding: 1.5rem; border-radius: 0 0 0.5rem 0.5rem; }
.timeline b { color: var(--brand-dark); font-size: 1.75rem; }

/* ===== About page ===== */
.about-page-hero {
  padding-top: 7.5rem;
  background: #fff;
}
.about-page-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.about-intro {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
  background: #fff;
}
.about-intro .container,
.about-values .container,
.about-life > .container {
  position: relative;
  width: min(101.25rem, calc(100% - 18.75rem));
}
.about-watermark {
  position: absolute;
  left: 50%;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.about-intro .about-watermark {
  top: -1.875rem;
  width: 78.5rem;
  max-width: 100%;
  height: 15.5rem;
  object-fit: fill;
}
.about-section-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 2.25rem;
  text-align: center;
  line-height: 1;
}
.about-section-heading img {
  width: auto;
  height: 3.0625rem;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.about-intro .about-section-heading {
  margin-bottom: 5.3125rem;
}

.about-intro-panel {
  position: relative;
  z-index: 1;
  width: 101rem;
  max-width: 100%;
  height: 45.5625rem;
  margin: 0 auto;
  padding: 4.0625rem 2.125rem 8.75rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  background: url("../../image/about/about-detail-bg.png") center / 100% 100% no-repeat;
  overflow: hidden;
}
.about-intro-panel::after {
  content: none;
  position: absolute;
  right: -0.5rem;
  bottom: -9.375rem;
  color: rgba(247, 181, 83, .12);
  font-size: 32.5rem;
  font-weight: 900;
  line-height: .8;
  transform: rotate(45deg);
  pointer-events: none;
}
.about-intro-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6d747d;
  font-size: 1.5rem;
  line-height: 2;
}
.about-intro-panel p + p {
  margin-top: 1.375rem;
}
.about-intro-panel strong {
  color: #4a5058;
  font-weight: 800;
}
.about-values {
  position: relative;
  padding: 3.4375rem 0 0;
  background: #fff;
  overflow: hidden;
}
.about-values .about-section-heading {
  margin-bottom: 5rem;
}
.about-watermark--values {
  top: -1.3125rem;
  width: 60.375rem;
  max-width: 100%;
  height: 15.5rem;
  object-fit: fill;
}
.about-value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 22.375rem);
  justify-content: space-between;
  gap: 0;
  align-items: stretch;
}
.about-value-grid img {
  width: 22.375rem;
  height: 31.6875rem;
  border-radius: 0.5rem;
  object-fit: contain;
  display: block;
  transition: transform .18s ease, filter .18s ease;
}
.about-value-grid img:hover {
  animation: about-value-shake .42s ease-in-out;
  filter: drop-shadow(0 0.75rem 1.25rem rgba(80, 56, 28, .14));
}
@keyframes about-value-shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  18% { transform: translate(-2px, 1px) rotate(-1deg); }
  36% { transform: translate(2px, -1px) rotate(1deg); }
  54% { transform: translate(-1px, -1px) rotate(-.7deg); }
  72% { transform: translate(1px, 1px) rotate(.7deg); }
}
.about-life {
  padding: 6.25rem 0 8rem;
  background: #fff;
}
.about-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  align-items: stretch;
  min-height: 28.75rem;
}
.about-feature + .about-feature {
  margin-top: 6.5rem;
}
.about-feature--reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-feature-copy {
  min-width: 0;
  min-height: 28.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-feature--daily .about-feature-copy {
  justify-content: flex-start;
}
.about-title {
  position: relative;
  margin: 0 0 2.75rem;
  padding-bottom: 1.125rem;
  border: 0;
  color: #565b62;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}
.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: url("../../image/common/gray-line.png") center center / 100% 100% no-repeat;
}
.about-title::first-letter {
  color: #565B62;
}
.about-title + h3 {
  margin-top: 0;
}
.about-feature-copy h3 {
  margin: 0 0 1rem;
  color: #61666e;
  font-size: 2.25rem;
  font-weight: 900;
}
.about-feature-copy h3:not(:first-of-type) {
  margin-top: 2.625rem;
}
.about-feature-copy p {
  margin: 0 0 1rem;
  color: #6f747c;
  font-size: 1.5rem;
  line-height: 1.85;
}
.about-feature--reverse .about-feature-copy p,
.about-feature--growth .about-feature-copy p {
  margin-bottom: 1.375rem;
}
.about-feature-img {
  width: 100%;
  height: 28.75rem;
  min-height: 28.75rem;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-feature--reverse .about-feature-img {
  object-fit: contain;
}
