/**
 * グループヘッダー用スタイル
 * header.php のインライン <style> から外部ファイル化
 */

/* カバー画像のスタイル */
.oe-group-hero__cover {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
}

.oe-group-hero__cover:empty {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* アイコン共通スタイル */
.oe-membership-badge .oe-badge-icon img.oe-icon,
.oe-group-hero__area .oe-area-icon img.oe-icon,
.oe-group-hero__stat .oe-stat-icon img.oe-icon,
.oe-group-hero__cta .oe-cta-icon img.oe-icon,
.oe-status-badge .oe-status-icon img.oe-icon {
    width: 16px;
    height: 16px;
}

/* グループタブよりシェアメニューを前面に出す */
.oe-group-hero {
    z-index: 30;
    overflow: visible !important;
}

.oe-group-tabs {
    position: relative;
    z-index: 1;
}

.oe-group-hero__identity-row {
    position: relative;
    z-index: 2200;
}

.oe-group-hero__identity-row .profile-share-wrapper,
.oe-group-hero__identity-row .profile-share-wrapper.inline {
    z-index: 2300 !important;
}

.oe-group-hero__identity-row .profile-share-menu {
    z-index: 2400 !important;
}

@media (max-width: 768px) {
    .oe-group-hero__cover {
        height: 200px;
    }

    .oe-group-hero__identity-row {
        display: flex;
        justify-content: flex-end;
        margin-top: -20px;
        margin-left: auto;
        width: 100%;
    }
}