// SalesCrowd Action Plan Grid
.sales-crowd-accordion-tabs {
width: 100%;
  line-height: 1.5;
  padding: 0;

  li.tab-header-and-content {
    list-style: none;
    list-style-position: inside;
padding: 0;
    margin: 0;
    width: 25%;
    border: 0;
    overflow: hidden;
    display: inline;
    text-align: center;
  }

  a.tab-link {
    @include transition (all 0.2s ease-in-out);
    background-color: $salescrowd-earth;
    border: 0;
    margin: 0;
    display: inline-block;
    color: $white;
    width: 25%;
overflow: hidden;
    font-weight: 400;
    padding: 0.35em 1em;
    font-size: 1.2em;
    font-weight: 900;
    outline: none;
    text-decoration: none;
    margin-right: -3px;
    &:last-child {
      margin-right: 0;
    }
    @include MQ(M) {
      border: 0;
    }
    &:hover {
      background-color: $salescrowd-warm-light-gray;
      color: $salescrowd-orange;
    }
    &:focus {
      outline: none;
      background-color: $salescrowd-warm-light-gray;
      color: $salescrowd-orange;
    }
    &.is-active {
      background-color: $salescrowd-warm-light-gray;
      color: $salescrowd-orange;
    }
  }
  .tab-content {
    display: none;
    padding: 2em;
    @include MQ(L) {
      padding: 2em 0;
    }
    text-align: left;
    width: 100%;
    margin: 0;
border: 0;
float: left;
  }
}

.card {
  @include transition (all 0.2s ease-in-out);
  background-color: $lightest-gray;
  border-radius: $base-border-radius;
  border: 1px solid $light-gray;
  box-shadow: 0 2px 4px darken($white, 10%);
  cursor: pointer;
  display: block;
  position: relative;
padding: 0;
  margin-bottom: 1em;
  @include MQ(M) {
    margin: 0;
  }
  .card-image {
    overflow: hidden;
    max-height: 350px;

    img {
      @include transition (all 0.2s ease-in-out);
      background: $lightest-gray;
      border-top-left-radius: $base-border-radius;
      border-top-right-radius: $base-border-radius;
      width: 100%;
    }
  }

  .card-header {
    @include transition (all 0.2s ease-in-out);
    background-color: $lightest-gray;
    border-bottom: 1px solid $light-gray;
    border-radius: $base-border-radius $base-border-radius 0 0;
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1.5em;
    padding: 1em;
  }

  .card-copy {
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 1em;

    p {
      margin: 0 0 1em;
    }
  }

  &:focus,
  &:hover {
    background-color: $white;

    .card-image img {
      background: $white;
    }

    .card-header {
      background-color: $white;
    }
  }
  .button {
    margin-bottom: 0px;
  }
}