/* 三個連結圖片水平三等份展示 */
.links-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 0;
}

.link-item {
    flex: 1;
    text-align: center;
    max-width: 30%;
}

.link-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.link-item a {
    display: block;
    margin-top: 1rem;
    color: #e7ad52;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-item a:hover {
    color: rgb(235.8, 189.4, 116.6);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .links-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .link-item {
        max-width: 100%;
    }
}
