.default-sidebar {
  background-color: $gray-bluish;
  color: $primary-color;

  // Work aroud to support copy-pasted button html code...
  .rich-content a.sidebar-button {
    text-decoration: none;
    margin: 20px 0 10px;
  }
}

.sidebar-widget {
  padding: 30px 60px;
  position: relative;

  @include mdx {
    padding: 30px 40px;
  }

  @include md {
    padding: 30px 25px;
  }

  &:before {
    content: " ";
    display: block;
    width: 92%;
    border-bottom: 1px solid $gray-20;
    position: absolute;
    left: 0;
    top: 0;
  }

  &:first-child:before {
    display: none;
  }

  &--join-previous {
    padding-top: 0;
    margin-top: -15px;

    &:before {
      display: none;
    }
  }

  .rich-content {
    h1, h2, h3, h4, h5 {
      margin: 0;
    }
    p {
      margin: 0;
    }
  }
}

// Sidebar widgets
@import 'templates/components/sidebar-widgets/contact';
@import 'templates/components/sidebar-widgets/generic';
@import 'templates/components/sidebar-widgets/facts';
@import 'templates/components/sidebar-widgets/image-links';
@import 'templates/components/sidebar-widgets/latest';
@import 'templates/components/sidebar-widgets/subscribe';
@import 'templates/components/sidebar-widgets/related-posts';
@import 'templates/components/sidebar-widgets/testimonial';
