#try-kronograph {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  object-fit: contain;
  height: 100px;
  width: 100%;
  color: black;
  justify-content: space-between;
  transition: background-color 0.5s ease;

  &:hover {
    background-color: rgba(243, 183, 143, 0.5);
  }
}

.kg-banner-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-width: 220px;
  overflow: hidden;
  justify-content: center;
}

.kg-banner-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100%;
  max-width: 60%;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: path('M 20 0 Q 5 50 20 100 L 1000 100 L 1000 0 Z');
    object-position: center 60%;
  }
}

.kg-banner-title,
.kg-banner-subtitle {
  margin: 0px;
}

.kg-banner-subtitle {
  font-weight: 300;
  text-decoration: underline;
  text-decoration-color: hsla(25, 85%, 67%, 1);
  text-underline-offset: 8px;
  padding-bottom: 4px;
}
