/**
 * EASYS2 SNS Plugin - 口コミ表示スタイル（フロントエンド）
 */

.easys-reviews {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ヘッダー */
.easys-reviews__header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.easys-reviews__place-name {
    margin: 0 0 8px;
    font-size: 1.3em;
}

.easys-reviews__summary {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.easys-reviews__rating-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.easys-reviews__count {
    color: #666;
    font-size: 0.9em;
}

/* 星 */
.easys-star {
    font-size: 1.1em;
}

.easys-star--full {
    color: #fbbc04;
}

.easys-star--half {
    color: #fbbc04;
    opacity: 0.6;
}

.easys-star--empty {
    color: #dadce0;
}

/* 口コミリスト */
.easys-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.easys-reviews__item {
    padding: 16px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

/* 著者情報 */
.easys-reviews__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.easys-reviews__author-photo {
    border-radius: 50%;
    object-fit: cover;
}

.easys-reviews__author-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
}

.easys-reviews__author-info {
    display: flex;
    flex-direction: column;
}

a.easys-reviews__author-name {
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.95em;
}

a.easys-reviews__author-name:hover {
    text-decoration: underline;
}

span.easys-reviews__author-name {
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
}

.easys-reviews__time {
    font-size: 0.8em;
    color: #999;
}

/* 口コミ星 */
.easys-reviews__rating {
    margin-bottom: 6px;
}

/* 口コミ本文 */
.easys-reviews__text {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95em;
}

/* フッター */
.easys-reviews__footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.easys-reviews__more-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.9em;
}

.easys-reviews__more-link:hover {
    text-decoration: underline;
}

.easys-reviews__stale-notice {
    color: #d93025;
    font-size: 0.8em;
}

.easys-reviews__empty {
    color: #999;
    text-align: center;
    padding: 20px;
}

.easys-sns-error {
    color: #d93025;
    padding: 10px;
    background: #fce8e6;
    border-radius: 4px;
}

/* コンパクトテーマ */
.easys-reviews--compact .easys-reviews__item {
    padding: 10px;
}

.easys-reviews--compact .easys-reviews__author-photo {
    width: 28px;
    height: 28px;
}

.easys-reviews--compact .easys-reviews__text {
    font-size: 0.85em;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .easys-reviews__item {
        padding: 12px;
    }

    .easys-reviews__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
