.hero-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.vector-2 {
  position: absolute;
  height: 120px;
  left: -64px;
  top: 48px;
  width: 120px;
  z-index: 1;
}

@media screen and (max-width: 601px) {
  .vector-2 {
    display: none;
  }
}

.vector-2 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.vector-1 {
  position: absolute;
  bottom: -104px;
  height: 240px;
  right: -82px;
  width: 232px;
  z-index: 1;
  transform: rotate(360deg);
}

@media screen and (max-width: 601px) {
  .vector-1 {
    display: none;
  }
}

.vector-1 img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.title {
  background-color: var(--white);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 32px;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  z-index: 2;
}

.comment-label {
  position: absolute;
  left: 72px;
  font-style: normal;
  color: var(--blue-gray-300);
  font-size: 16px;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  top: -30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-label-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
}

.title:hover .comment-label {
  color: var(--blue-500);
}

.comment-label p {
  display: block;
  line-height: 1.5;
  white-space: pre;
}

.title-text {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.title-text span {
  color: var(--blue-gray-900);
}

.hero-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero-image {
  width: 127.5px;
  max-width: 100%;
  height: 147px;
  flex-shrink: 0;
  object-fit: cover;
}

.title-text {
  flex: 1;
  min-width: 0;
  position: relative;
  flex-shrink: 0;
}

.title-text p {
  line-height: normal;
}

.title-text .dash {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}

/* Draggable hover and active states */
.draggable {
  cursor: grab !important;
  user-select: none;
}

.title {
  outline: 2px solid var(--blue-gray-100);
}

.title:hover{
  outline: 2px solid var(--blue-500);
}

.title.draggable {
  position: relative;
}

.vector-1.draggable,
.vector-2.draggable {
  position: absolute;
}

.title.draggable:not(.draggable-disabled):hover:not(:active) {
  outline: 2px solid var(--blue-500) !important;
}

.draggable.draggable-disabled {
  cursor: default !important;
  user-select: auto;
}

.draggable.draggable-disabled:hover:not(:active) {
  outline: none;
  cursor: default !important;
}

.draggable:active {
  outline: 2px solid var(--blue-500);
  cursor: grabbing !important;
}

.draggable:hover:not(:active) {
  outline: 2px solid var(--blue-500);
  cursor: grab !important;
}

.draggable.draggable-disabled:active {
  outline: none;
  cursor: default !important;
}

.title.draggable.draggable-disabled:hover:not(:active) {
  outline: 2px solid var(--blue-gray-100) !important;
}

.title.draggable.draggable-disabled:hover .comment-label {
  color: var(--blue-gray-300) !important;
}

.comment-symbol {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 1026px) {
  .title {
    padding: 36px 28px;
  }
}

@media screen and (max-width: 601px) {
  .title {
    padding: 28px 20px;
  }

  .hero-content {
    flex-direction: column;
    gap: 24px;
  }   
}