.test_image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #fa9e1b;
}

.test_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test_item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px 20px;
    text-align: center;
    margin: 20px 10px;
    transition: transform 0.3s ease;
}

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

.test_content {
    text-align: center;
}

.test_name {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.test_date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.test_quote_title {
    color: #fa9e1b;
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0 15px;
}

.test_quote_text {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.test_icon {
    display: none;
}