/*to use global variables, import them into your component stylesheet*/
@import "../../../styles/global.scss";

.image-card {
    background-color: $grey-light;
    padding: 36px;
    display: inline-block;
    margin-bottom: 36px;
}

.image-card-image {
    margin-bottom: 24px;
    width: 100%;
    box-shadow: 0px 0px 12px 2px $grey-medium;
}

a.image-card-link-a::after {
    content: ' ›';
  }

.image-card-link {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    user-select: none;
    color: $dark-blue
}

.image-card-description {
    font-size: 15px; /* sketch design is 16, 15 is from card */
    line-height: 1.5;
    color: $black-blue;
    margin-top: 1px;
    user-select: none;
}