/**
 * グループ概要（group-front）用スタイル
 * group-front.php のインライン <style> から外部ファイル化
 */

/* 設定されていない表示 */
.oe-not-set {
    color: #9ca3af;
    font-style: italic;
}

/* カテゴリータグ */
.oe-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.oe-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

/* グループ統計カード - スマホ対応 */
.oe-group-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

@media (max-width: 767px) {
    .oe-group-stats-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .oe-stat-card {
        gap: 4px;
        padding: 10px 6px;
    }

    .oe-stat-card__icon {
        width: 26px;
        height: 26px;
        margin-bottom: 0;
    }

    .oe-stat-card__icon > img.oe-icon {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .oe-stat-card__content {
        text-align: center;
    }

    .oe-stat-card__value {
        font-size: 17px;
        margin-bottom: 3px;
        text-align: center;
        line-height: 1;
    }

    .oe-stat-card__label {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        text-align: center;
        line-height: 1.2;
    }
}

/* アクティビティアバター - スマホサイズ対応 */
.oe-activity-avatar {
    flex-shrink: 0;
}

.oe-activity-avatar img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px;
    max-height: 32px;
}

/* アクティビティ文章内のアバター画像 */
.oe-activity-content img.avatar {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
}

/* 詳細文 もっと見る */
.oe-expandable-text-wrapper .oe-expandable-text {
    transition: max-height 0.24s ease;
}

.oe-expandable-text-wrapper .oe-expandable-text.is-collapsed {
    overflow: hidden;
}

.oe-expandable-text-wrapper .oe-expandable-text.expanded {
    max-height: none !important;
}

.oe-expandable-text-wrapper .oe-expandable-text-btn {
    display: none;
    align-self: flex-start;
    margin-top: 8px;
    padding: 2px 4px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.oe-expandable-text-wrapper .oe-expandable-text-btn:focus-visible {
    outline: 2px solid #d1d5db;
    outline-offset: 1px;
}

@media (max-width: 767px) {
    .oe-activity-avatar img {
        width: 32px !important;
        height: 32px !important;
    }

    .oe-activity-content img.avatar {
        width: 20px !important;
        height: 20px !important;
    }
}