.link-list {
    margin: 0 -10px;
}
.link-list .item {
    width: 33.33%;
    padding: 0 10px;
}
.link-list .item a {
    margin: 0 auto 50px;
    max-width: 300px;
}
.link-list .pic {
    position: relative;
    overflow: hidden;
}
.link-list a:hover .pic:before,
.link-list a:hover .pic:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.link-list a:hover .pic:before {
    background: url(../images/pattern_01.png);
    border: 5px solid #fff;
    opacity: 0.7;
}
.link-list a:hover .pic:after {
    background: url(../images/links/hover.png) no-repeat 50% 50%;
}
.link-list .title {
    color: #444;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 5px 3px;
}
.link-list .description {
    margin: 0 5px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.35px;
    height: 38px;
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .link-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .link-list .item {
        float: none;
        width: auto;
    }
    .link-list .pic {
        height: auto;
    }
}