/* 特邀嘉宾 */
.special-guests {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.guest-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.guest-card:hover {
    transform: translateY(-5px);
}

.guest-img {
    height: 0;
    padding-bottom: 133.33%; /* 3:4 比例 */
    overflow: hidden;
    position: relative;
}

.guest-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guest-card:hover .guest-img img {
    transform: scale(1.05);
}

.guest-info {
    padding: 15px;
    text-align: center;
}

.guest-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.1rem;
}

.guest-info .title {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}
