/**
 * Styles specific to the About page
 */
.margin-t {
  margin-top: 0;
}
.site-logo::before {
  content: "";
  position: absolute;
  top: 65%;
  width: 38%;
  right: -5%;
  height: 100%;
  background-image: url("../images/pages-logo-mini-puddle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
/* Layout structure */
.padding-tb-m {
  padding: 15px 0;
}

.about-layout .content-container {
  display: flex;
  gap: 60px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
}

.about-layout .left-column {
  flex: 1;
}

.about-layout .right-column {
  flex: 2;
}
.entry-title {
  position: relative;
}
.entry-title:after {
  content: "";
  position: absolute;
  top: 38px;
  left: -6px;
  width: 10px;
  height: 13px;
  background-image: url("../images/about-tear-m.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.border-top {
  border-top: none !important;
}
.border-bottom {
  border-bottom: none !important;
}
.border-bottom-last {
  border-bottom: 4px solid #000000 !important;
}
.border-top-m {
  border-top: 4px solid #000000;
}
.border-bottom-m {
  border-bottom: 4px solid #000000;
}
.icon-down-m {
  position: relative;
}
.icon-down-m:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* Adjust as needed */
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("../images/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
/* Typography */
.about-layout h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.about-layout p {
  margin-bottom: 2rem;
  line-height: 1.7;
  padding-right: 15%;
}
.about-layout .team-list {
  padding-right: 20px;
  border-bottom: 4px solid #000000;
  margin: 0;
  padding: 0 0 50px 0;
}
.about-layout p {
  padding-right: 20px;
}
.padding-b-m {
  padding-bottom: 300px;
}
.right-column.image-bg {
  position: relative;
}
.image-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-puddle-bg-bottom.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

/* Team section */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  text-align: center;
}

.team-member-image {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.team-member-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.team-member-title {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}
.about-layout .content-container {
  margin-top: 0;
}
.text-underscore {
  text-decoration: underline;
  text-decoration-color: #000000;
  text-decoration-thickness: 2px;
  color: #000000;
}
/* Responsive */
@media (max-width: 768px) {
  .about-layout .content-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 535px) {
  .image-bg:after {
    width: 512px;
  }
  .padding-b-m {
    padding-bottom: 320px;
  }
}
@media (min-width: 689px) {
  .entry-title:after {
    background-image: url("../images/about-tear-desk.svg");
    width: 15px;
    height: 26px;
  }
  /* .padding-tb-m {
    padding: 0;
  } */
}
@media (min-width: 768px) {
  .about-layout .right-column p:first-of-type {
    padding-top: 20px;
  }
  .image-bg:after {
    width: 550px;
    left: -460px;
    height: 630px;
    background-image: url("../images/about-bg-drops.svg");
  }
  .padding-b-m {
    padding-bottom: 200px;
  }
  .about-layout .team-list {
    padding: 0 0 32px 0;
  }
}
@media (min-width: 1020px) {
  p.align-by-budding-hotfix {
    padding-top: 32px !important;
  }
  p.align-w-headline-host {
    padding-top: 5px !important;
  }
  ul.align-w-headline-team {
    margin-top: 8px !important;
  }
  .image-bg:after {
    left: -470px;
    height: 870px;
    width: 585px;
    background-image: url("../images/about-bg-drops.svg");
  }
  .margin-t {
    margin-top: 32px;
  }
  .padding-b-m {
    padding-bottom: 240px;
  }
  .about-layout .content-container {
    flex-direction: row;
    gap: 60px;
    padding-left: 20px;
  }
  .about-layout .content-container {
    gap: 60px;
    /* margin-top: 40px; */
    margin-left: 0;
    margin-right: 0;
  }
  .about-layout .team-list {
    padding-right: 100px;
  }
  .about-layout p {
    padding-right: 100px;
  }
  .icon-down-m:after {
    display: none;
  }
  .text-align-end {
    text-align: right;
  }
  .border-top-m {
    border-top: none;
  }
  .border-bottom-m {
    border-bottom: none;
  }
  .border-top {
    border-top: 4px solid #000000;
  }
  .border-bottom {
    border-bottom: 4px solid #000000 !important;
  }
}
