/* ТУЛТИПЫ ДЛЯ ССЫЛОК */

a.article-link {
  position: relative;
  display: inline;
}
a.article-link span {
  position: absolute;
  width:140px;
  color: #666666;
  background: #DADACC;
  border: 2px solid #6D6D6D;
  height: 32px;
  line-height: 32px;
  text-align: center;
  visibility: hidden;
  border-radius: 10px;
}
a.article-link span:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 0; height: 0;
  border-top: 12px solid #6D6D6D;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
a.article-link span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #DADACC;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.article-link span {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}

/* ТУЛТИПЫ ДЛЯ КАРТИНОК */

.article-image {
  display: inline-block;
  position: relative;
  width:75%;
}
.article-image:hover::after {
  content: attr(text); /* Выводим текст всплывающей подсказки*/
  position: absolute;
  left: 0; right: 0; bottom: 0px; /* Положение всплывающей подсказки */
  z-index: 1; /* Отображаем подсказку поверх других элементов */
  background: #DADACC; /* Цвет заливки */
  color: #666; /* Цвет текста */
  text-align: center; /* Выравниваем текст по центру */
  padding: 5px 10px; /* Поля */
  font-weight:bold;
}
