.vacancy-card-small {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100px;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  box-shadow: 0 3px 8px 0 var(--shadow-color); }
  .vacancy-card-small__title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-middle);
    transition: .3s; }
  .vacancy-card-small__salary {
    margin-top: 1.25rem;
    font-size: .875rem;
    line-height: 1.4;
    color: var(--color-light); }
  .vacancy-card-small__icon {
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    z-index: -1; }
  .vacancy-card-small__img, .vacancy-card-small svg {
    width: 5.5rem;
    height: 5rem; }

@media (pointer: fine) {
  .vacancy-card-small:hover .vacancy-card-small__title {
    color: var(--color-dark); } }
