/** Component: Link Item **/

.link-item {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 10px;
}

.link-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.img-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.link-item:hover .img-container img {
    transform: scale(1.1);
}

.title {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 5px 0;
}

/** End Component: Link Item **/