.simple-header-block {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  transition: padding 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
  .inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    row-gap: 30px;
  }

  .logo img {
    transition: all 0.3s ease;
  }

  &.is-sticky {
    
    
    .inner-wrap {
      padding: 10px 0;
      row-gap: 0;
    }
    
    .logo img {
      transform: scale(0.7);
    }
  }
}

@media screen and (min-width: 992px) {
  .simple-header-block {
    .inner-wrap {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
  }
}
