.specification-block {
  display: flex;
  flex-direction: column;

  .specification-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 30px;
    margin-bottom: 20px;
    background-color: #f6f5f8;
    border-radius: 20px;
  
    h2.wp-block-wd-title.title {
      font-size: 18px;
      margin-bottom: 20px;
    }
  
    h3.wp-block-wd-title.title {
      font-size: 15px;
      margin-bottom: 6px;
      line-height: 1;
    }
  
    .specification-block-content {
      a {
        color: var(--wd-text-color);
  
        &:hover {
          color: #e14a5c;
        }
      }
  
      p {
        &:last-of-type {
          margin-bottom: 0;
        }
      }
  
      .specification-block-files-title {
        margin-top: 20px;
      }
  
      ul.specification-block-files-list {
        list-style: none;
        padding: 0;
        margin: 0;
  
        a {
          &:before {
            content: "\f140";
            position: relative;
            top: 2px;
            font-family: "woodmart-font";
            font-weight: 700;
            color: #e14a5c;
            font-size: 16px;
            margin-right: 6px;
          }
        }
  
      }
    }
  
    @media (max-width: 767px) {
      padding: 30px 20px;
  
      h2.wp-block-wd-title.title {
        margin-bottom: 6px;
      }
    }
  }
  
  .specification-block-button {
    border-radius: 100px;
    align-self: flex-end;
  }

  &.collapsed {
    .specification-block-wrapper {
      mask-image: linear-gradient(to top, transparent 5px, #000 40px);
      max-height: var(--wd-colps-height, 95px);
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  }
}
