 .icon-link {
 display: inline-flex;
 transition: transform 0.25s ease, opacity 0.25s ease;
 }

 .icon-link:hover {
 cursor: pointer;
 transform: scale(1.12);
 opacity: 0.85;
 }

 /* эффект сияния именно для бриллианта */
 .diamond:hover svg path {
 fill: #3aa7ff; /* светло-синий как сияющий камень */
 filter: drop-shadow(0 0 6px #6bc8ff) drop-shadow(0 0 12px #7fd1ff);
 transition: fill 0.25s ease, filter 0.25s ease;
 }