/* Instagram 스타일 피드 */
.feed-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.feed-item {
    background: white;
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    overflow: hidden;
}

.feed-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #efefef;
}

.feed-header .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 12px;
}

.feed-header .user-info {
    flex: 1;
}

.feed-header .username {
    font-weight: 600;
    font-size: 0.95rem;
    color: #262626;
    text-decoration: none;
    display: block;
}

.feed-header .restaurant-name {
    font-size: 0.85rem;
    color: #8e8e8e;
}

/* 별점 및 날짜 영역 */
.feed-meta {
    padding: 12px 16px;
    border-bottom: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-images {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-images img {
    width: 100%;
    height: auto;
    display: block;
}

/* 이미지 슬라이더 */
.image-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: height 0.3s ease-in-out;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: object-fit 0.3s ease-in-out;
}

/* 슬라이더 버튼 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

/* 인디케이터 */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
}

.no-image {
    color: #c7c7c7;
    font-size: 3rem;
}

.feed-content {
    padding: 16px;
}

.feed-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-stats .stars {
    color: #ffc107;
}

.feed-date {
    font-size: 0.75rem;
    color: #8e8e8e;
    text-transform: uppercase;
}

.feed-grade {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feed-text {
    font-size: 0.95rem;
    color: #262626;
    line-height: 1.5;
}

.feed-text .username {
    font-weight: 600;
    margin-right: 6px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #8e8e8e;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #c7c7c7;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #262626;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 20px;
}
