/* 공통 스타일 */
.box.post {
    text-align: center;
    font-weight: 500;
}

/* 프로필 컨테이너 스타일 */
.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* 개별 프로필 카드 */
.profile-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 프로필 이미지 */
.profile-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 4px solid #4CAF50;
}

/* 프로필 정보 */
.profile-info {
    padding: 15px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.profile-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
    }
}
