body {
    font-family: sans-serif;
    text-align: center;
    background: #1a2a41;
    color: #f2e9dc;
}

.profile-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.share-btn, .notify-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-name {
    margin-top: 28px;
    font-size: 1.2em;
}

.icon {
    width: 30px;
    height: 30px;
    fill: #f2e9dc;
    stroke: #f2e9dc;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.card {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* ← 아이템 전체는 왼쪽부터 배치 */
    width: 300px;
    padding: 10px;
    background: #f2e9dc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #1a2a41;
    text-decoration: none;
    gap: 10px;
}

.card-text {
    flex-grow: 1;             /* 남은 공간 전부 차지 */
    text-align: center;       /* 텍스트는 내부에서 가운데 정렬 */
}


.card:hover {
    background: #e2e6ea;
}

.thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.insta-icon {
    width: 40px;
    height: 40px;
    margin: 60px auto;
    display: block;
    fill: #f2e9dc;
}

.biz-btn {
    margin-top: 8px;
    display: inline-block;
    font-size: 0.9em;
    color: #f2e9dc;
    background: none;
    border: 1px solid #f2e9dc;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.biz-btn:hover {
    background: #f2e9dc;
    color: #1a2a41;
}
