.container-read-more {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-text {
  display: inline-block;
  font-size: 22px;
  margin-top: 0;
  padding: 8px 16px;
  cursor: pointer;
  color: #007bff; 
  text-decoration: underline; 
  font-weight: 500;
  position: relative;
  top: -10px;
  z-index: 10;
}

.toggle-text:hover {
  color: #0056b3;
}

.toggle-text {
  display: block;
  margin: auto;
  padding: 0.2rem 1.5rem;
  font-family: sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fa0;
  position: relative;
  transition: all .3s cubic-bezier(.2, 0, 0, 1);
  z-index: 1;
  
  &:after {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 1rem;
    left: 1.2rem;
    background-color: #fa0;
    transition: all .3s cubic-bezier(.2, 0, 0, 1);
    transform-origin: bottom center;
    z-index: -1;
  }
  
  &:hover {
    color: #000;
    
    &:after {
      right: 0;
      left: 0;
      height: 100%;
    }
  }
}

.first-paragraph {
  position: relative;
  margin: 10px 0 10px 0;
}

.first-paragraph.has-gradient::after {
  content: '';
  position: absolute;
  top: calc(100% - 30px);
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.95) 85%
  );
  z-index: 5;
}

.portfolio-title {
    user-select: none;
    font-family: RobotoBold;
    color: #000;
    font-size: 4.5rem;
    margin-bottom: 0.5em;
    margin-top: 1em;
    margin-left: 1.2%;
    @media (max-width: 1199.98px) {
         margin-bottom: 0.5em;
         margin-top: 0.5em;
    }
}

.portfolio-list-entry-title.h3 {
    margin: 0;
}