/* 프론트페이지 고객수기 해시태그 버튼 */
.testimonial-hashtags-front {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.hashtag-btn-front {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #099F97;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hashtag-btn-front:hover {
    background: #0bb8af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 159, 151, 0.3);
}
