/* Sharper About Section Block Styles */
.sharper-about-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.sharper-about-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 500px;
}

/* Left column with heading and link */
.sharper-about-left {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 30px;
}

.sharper-about-heading {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #000;
}

.sharper-about-link-wrapper {
  margin-top: auto;
  padding-bottom: 0;
}

.sharper-about-link {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 5px;
}

.sharper-about-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

/* Middle column with content */
.sharper-about-middle {
  width: 25%;
  padding: 60px 30px;
}

.sharper-about-content {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.sharper-about-content p {
  margin-bottom: 0.8em;
}

/* Right column with image */
.sharper-about-right {
  width: 40%;
  padding: 20px;
  position: relative;
}

.sharper-about-image {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 750px;
}

.sharper-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
  .sharper-about-left,
  .sharper-about-middle,
  .sharper-about-right {
    width: 90%;
    padding: 30px 20px;
  }

  .sharper-about-container {
    flex-direction: column;
  }

  .sharper-about-link-wrapper {
    margin-top: 20px;
  }

  .sharper-about-heading {
    font-size: 2.5rem;
  }

  .sharper-about-right {
    padding: 20px;
  }

  .sharper-about-image {
    height: 400px;
    min-height: 400px;
  }

  .sharper-about-image img {
    position: absolute;
  }
}
