/**
 * Mac Claw - Page CSS (その他ページ共通)
 * Generated from style.css split
 */

/* ============================================================
   13. Transaction / Chat
   ============================================================ */

.transaction-page { padding-top: var(--header-h); height: 100vh; display: flex; flex-direction: column; overflow: hidden; }

/* Transaction Status - badge strip at top */
.transaction-status {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.transaction-status::-webkit-scrollbar { display: none; }

.transaction-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.transaction-status-badge.status-pending { background: var(--accent-yellow-light); color: var(--accent-yellow); }
.transaction-status-badge.status-paid { background: var(--accent-blue-light); color: var(--accent-blue); }
.transaction-status-badge.status-shipped { background: var(--accent-orange-light); color: var(--accent-orange); }
.transaction-status-badge.status-delivered { background: var(--accent-green-light); color: var(--accent-green); }
.transaction-status-badge.status-completed { background: var(--bg-surface); color: var(--text-secondary); }
.transaction-status-badge .lucide-icon { width: 13px; height: 13px; }

.transaction-item-summary { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); flex: 1; min-width: 0; }
.transaction-item-img { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--bg-surface); overflow: hidden; flex-shrink: 0; }
.transaction-item-img img { width: 100%; height: 100%; object-fit: cover; }
.transaction-item-name { font-weight: 600; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.transaction-item-price { font-weight: 700; color: var(--accent-blue); flex-shrink: 0; }

/* Chat Container - full-height flex */
.chat-container { display: flex; flex: 1; overflow: hidden; }
.chat-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }

.chat-header { padding: 12px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; flex-shrink: 0; background: var(--bg-primary); }
.chat-header-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-surface); overflow: hidden; flex-shrink: 0; }
.chat-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-header-info { flex: 1; min-width: 0; }
.chat-header-name { font-size: 15px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.chat-header-status { font-size: 12px; color: var(--text-muted); }

/* Chat Messages - scrollable area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-secondary);
    -webkit-overflow-scrolling: touch;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chat-date-sep { text-align: center; font-size: 11px; color: var(--text-muted); padding: 3px 12px; background: var(--border-light); border-radius: 20px; align-self: center; }

/* Chat Bubble */
.chat-bubble-wrap { display: flex; gap: 8px; align-items: flex-end; max-width: 72%; }
.chat-bubble-wrap.sender { flex-direction: row-reverse; align-self: flex-end; }
.chat-bubble-wrap.receiver { align-self: flex-start; }
.chat-bubble-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-surface); overflow: hidden; flex-shrink: 0; margin-bottom: 2px; }
.chat-bubble-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-bubble { padding: 10px 14px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.6; word-break: break-word; max-width: 100%; }

/* Sender - right, blue bg */
.chat-bubble-wrap.sender .chat-bubble {
    background: var(--accent-blue);
    color: var(--text-white);
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}

/* Receiver - left, gray bg */
.chat-bubble-wrap.receiver .chat-bubble {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
    box-shadow: var(--shadow-sm);
}

.chat-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; align-self: flex-end; }
.chat-time { font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.chat-bubble-wrap.sender .chat-meta { align-items: flex-start; }

.chat-bubble-info { background: var(--accent-blue-light); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 16px; font-size: 13px; color: var(--text-secondary); align-self: center; max-width: 90%; text-align: center; }

/* Chat Input - bottom fixed bar */
.chat-input { border-top: 1px solid var(--border); padding: 12px 16px; background: var(--bg-primary); display: flex; gap: 8px; align-items: flex-end; flex-shrink: 0; }
.chat-input-field {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    font-size: 14px;
    font-family: var(--font-sans);
    resize: none;
    min-height: 42px;
    max-height: 120px;
    overflow-y: auto;
    transition: border-color var(--transition-base);
    line-height: 1.5;
    background: var(--bg-primary);
    color: var(--text-primary);
}
.chat-input-field:focus { outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1); }

.chat-input-send {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--text-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition-base);
}
.chat-input-send:hover { background: var(--accent-blue-dark); transform: scale(1.05); }
.chat-input-send .lucide-icon { width: 18px; height: 18px; }

/* Shipping Info - only shown after payment */
.shipping-info { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; margin: 0 16px 12px; background: var(--bg-primary); }
.shipping-info-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.shipping-info-title .lucide-icon { width: 14px; height: 14px; color: var(--accent-blue); }
.shipping-info dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-size: 13px; }
.shipping-info dt { font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.shipping-info dd { color: var(--text-primary); }

/* Chat Sidebar */
.chat-sidebar { width: 280px; border-left: 1px solid var(--border); background: var(--bg-primary); overflow-y: auto; display: flex; flex-direction: column; flex-shrink: 0; }
.chat-sidebar-section { padding: 16px; border-bottom: 1px solid var(--border); }
.chat-sidebar-section-title { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }

/* ============================================================
   16. FAQ
   ============================================================ */

.faq-page { padding: calc(var(--header-h) + 32px) 0 80px; }
.faq-page-header { text-align: center; margin-bottom: 32px; }
.faq-page-header h1 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.faq-page-header p { font-size: 15px; color: var(--text-secondary); }
.faq-category { margin-bottom: 32px; text-align: center; }
.faq-category-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent-blue); display: inline-block; }
.faq-list { max-width: 780px; margin: 0 auto; text-align: left; }
.page-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    max-width: 780px; margin: 0 auto 32px;
}
.page-tab {
    display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px;
    font-size: 13px; font-weight: 600; font-family: var(--font-sans);
    color: var(--text-secondary); background: var(--bg-primary);
    border: 1px solid var(--border); border-radius: 100px;
    cursor: pointer; transition: all 0.15s;
}
.page-tab .lucide-icon { width: 14px; height: 14px; }
.page-tab:hover { border-color: var(--text-primary); color: var(--text-primary); }
.page-tab.is-active { background: var(--bg-secondary); border-color: var(--border); color: var(--text-primary); }
@media (min-width: 769px) {
    .page-tabs-break { flex-basis: 100%; height: 0; margin: 0; }
}
@media (max-width: 768px) {
    .page-tabs-break { display: none; }
}
.faq-hero-img { display: flex; justify-content: center; margin: 0 auto 24px; }
.faq-hero-img img { width: 120px; height: auto; display: block; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; background: var(--bg-primary); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    gap: 12px;
    transition: background var(--transition-fast);
}
.faq-question:hover { background: transparent; }
.faq-question span::before { content: 'Q. '; color: var(--accent-red); font-weight: 800; }
.faq-question .lucide-icon { width: 20px; height: 20px; color: var(--text-muted); transition: transform var(--transition-slow); flex-shrink: 0; }
.faq-item.is-open .faq-question { background: transparent; }
.faq-item.is-open .faq-question .lucide-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 4px 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.faq-answer-inner::before { content: 'A. '; color: var(--accent-blue); font-weight: 800; }
.faq-answer-inner > p:first-child { display: inline; }
.faq-answer-inner a { color: var(--accent-blue); text-decoration: underline; }
.faq-contact-cta {
    text-align: center;
    margin-top: 48px;
}
.faq-contact-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.faq-page .cta-section { max-width: 780px; margin-left: auto; margin-right: auto; }
.contact-page { padding-top: calc(var(--header-h) + 32px); padding-bottom: 80px; }
.contact-page .cta-section { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================================
   19. Auth Pages (Login / Signup)
   ============================================================ */

.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--bg-secondary); }

/* Centered card - max-width 440px */
.auth-card { width: 100%; max-width: 440px; background: var(--bg-primary); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 40px; }

.auth-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.auth-logo-img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 8px; }
.auth-logo a { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); text-decoration: none; }
.auth-logo a:hover { color: var(--accent-blue); }
.auth-logo .logo-icon { width: 36px; height: 36px; }
.auth-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); }
.auth-logo-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Large centered title */
.auth-title { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--text-primary); text-align: center; margin-bottom: 8px; line-height: 1.3; }

/* Muted description */
.auth-description { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 28px; line-height: 1.6; }

.auth-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.btn-social {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 11px 20px;
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: var(--bg-primary); color: var(--text-primary);
    font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: var(--font-sans); text-decoration: none;
    transition: all var(--transition-base);
}
.btn-social:hover { background: var(--bg-secondary); border-color: var(--text-muted); color: var(--text-primary); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-social img { width: 18px; height: 18px; object-fit: contain; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-terms { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 8px; line-height: 1.6; }
.auth-terms a { color: var(--accent-blue); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-blue); font-weight: 600; }

/* Auth Success - メール送信完了画面 */
.auth-success { text-align: center; }
.auth-success-icon { margin-bottom: 16px; color: var(--accent-green); }
.auth-success-icon .lucide-icon { width: 48px; height: 48px; }
.auth-success h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.auth-success p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0; }
.auth-hint { margin-top: 20px; font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.auth-hint a { color: var(--accent-blue); font-weight: 600; }

/* Mail Providers - Gmail/Yahoo/Outlook quick links after sending */
.mail-providers { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mail-providers-label { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 4px; }
.mail-provider-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: var(--bg-primary); color: var(--text-secondary);
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: var(--font-sans); text-decoration: none;
    transition: all var(--transition-base);
}
.mail-provider-btn:hover { background: var(--bg-secondary); color: var(--text-primary); border-color: var(--text-muted); transform: translateY(-1px); }
.mail-provider-btn img { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   20. Legal Pages
   ============================================================ */

.legal-page { padding: calc(var(--header-h) + 40px) 0 80px; }
.legal-content { max-width: 780px; margin: 0 auto; padding: calc(var(--header-h) + 32px) 24px 80px; position: relative; z-index: 1; }
@media (min-width: 769px) {
    .legal-content::before {
        content: '';
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        height: 320px;
        background: url('/assets/images/legal-bg.png') center / contain no-repeat;
        opacity: var(--legal-bg-opacity, 0.06);
        z-index: -1;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }
}
.legal-content h1 { font-family: var(--font-display); font-size: 28px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-date { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin-top: 40px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 17px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.legal-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.85; }
.legal-content ul, .legal-content ol { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.8; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-table th, .legal-table td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.legal-table th { background: var(--bg-secondary); font-weight: 700; width: 32%; color: var(--text-primary); }
.legal-table td { color: var(--text-secondary); }


/* ============================================================
   21. ARTICLE PAGES
   ============================================================ */

.articles-page {
    padding: calc(var(--header-h) + 32px) 0 80px;
}

/* Articles Breadcrumb */
.articles-page .breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap;
    justify-content: center;
}
.articles-page .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.articles-page .breadcrumb a:hover { color: var(--accent-blue); }
.articles-page .breadcrumb-sep { color: var(--border); }

/* Articles Page Header */
.articles-page-header {
    text-align: center;
    margin-bottom: 32px;
}
.articles-page-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.articles-page-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Category Filter Tabs */
.articles-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}
.articles-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.articles-filter-tab:hover { color: var(--accent-blue); background: var(--accent-blue-light); }
.articles-filter-tab.is-active { color: var(--accent-blue); background: var(--accent-blue-light); border-color: var(--accent-blue); font-weight: 700; }
.articles-filter-tab .lucide-icon { width: 14px; height: 14px; }
.articles-filter-count { font-family: var(--font-mono); font-size: 11px; background: rgba(0,0,0,0.06); padding: 1px 7px; border-radius: 99px; }
.articles-filter-tab.is-active .articles-filter-count { background: rgba(37,99,235,0.15); }

/* Article Card Category Colors */
.article-card-category--featured { background: #2563eb1a; color: #2563eb; }
.article-card-category--buying { background: #16a34a1a; color: #16a34a; }
.article-card-category--selling { background: #d977061a; color: #d97706; }
.article-card-category--ai-guide { background: #9333ea1a; color: #9333ea; }
.article-card-category--mcp { background: #0891b21a; color: #0891b2; }

/* Articles Page Grid - 4 columns */
.articles-page .articles-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .articles-page .articles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .articles-page .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .articles-page .articles-grid { grid-template-columns: 1fr; } }
.articles-page .article-card-body { padding: 12px 14px; }
.articles-page .article-card-title { font-size: 14px; }
.articles-page .article-card-excerpt { font-size: 12px; -webkit-line-clamp: 2; }

/* Category Label */
.articles-category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Articles Empty */
.articles-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.articles-empty-icon { width: 48px; height: 48px; margin-bottom: 12px; }
.articles-empty p { margin-bottom: 16px; }

/* Articles CTA */
.articles-cta {
    margin-top: 48px;
}
.articles-cta-inner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 55%, #2563eb 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    color: #fff;
}
.articles-cta-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.articles-cta-desc { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.articles-cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.articles-header {
    margin-bottom: 48px;
    text-align: center;
}

.articles-header h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.articles-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.article-card-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-card-thumbnail .article-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.article-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.article-card-thumbnail .thumb-placeholder {
    font-size: 40px;
    color: var(--text-muted);
}

.article-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 10px;
    border-radius: 100px;
    background: var(--accent-light);
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
}
.article-category-badge .lucide-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    margin-top: -3px;
    margin-right: 2px;
}

.article-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

.article-card-meta time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Article Section Breadcrumb */
.article-section .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.article-section .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.article-section .breadcrumb a:hover { color: var(--accent-blue); }
.article-section .breadcrumb-sep { color: var(--border-strong); }
.article-section .breadcrumb-current { color: var(--text-secondary); }

/* Article Detail */
.article-detail-page {
    padding: 40px 0 80px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity var(--transition);
}

.article-breadcrumb a:hover {
    opacity: 0.75;
}

.article-breadcrumb span {
    color: var(--border-strong);
}

.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-header {
    margin-bottom: 32px;
}

.article-header .article-category-badge {
    margin-bottom: 12px;
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta-row time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-eye-catch {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.article-eye-catch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Table of Contents */
.article-toc {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 36px;
}

.article-toc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.article-toc li {
    counter-increment: toc-counter;
    margin-bottom: 6px;
}

.article-toc li a {
    font-size: 13px;
    color: var(--accent-blue);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    transition: opacity var(--transition);
}

.article-toc li a::before {
    content: counter(toc-counter) ".";
    font-weight: 700;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.article-toc li a:hover {
    opacity: 0.75;
}

.article-toc li.toc-h3 {
    padding-left: 20px;
}

/* Article Content */
.article-content {
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 16px;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 48px 0 20px;
    padding-left: 16px;
    border-left: 4px solid var(--accent-blue);
    line-height: 1.4;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.article-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.article-content a:hover {
    opacity: 0.75;
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 4px solid var(--border-strong);
    background: var(--bg-secondary);
    margin: 28px 0;
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.article-content pre {
    background: var(--text-primary);
    color: #e2e8f0;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.7;
}

.article-content code {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: var(--font-mono);
    font-size: 0.875em;
    color: var(--accent-blue);
}

.article-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14px;
}

.article-content th {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
}

.article-content td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    color: var(--text-secondary);
    vertical-align: top;
}

.article-content tr:nth-child(even) td {
    background: var(--bg-secondary);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px 0;
    display: block;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-sidebar-widget {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-sidebar-widget-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.article-sidebar-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.article-sidebar-list li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 13px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    line-height: 1.5;
}

.article-sidebar-list li a:hover {
    background: var(--bg-secondary);
    color: var(--accent-blue);
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 2px solid var(--border);
}

.related-articles-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Article CTA */
.article-cta-box {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin: 48px 0;
    text-align: center;
    color: var(--text-white);
}

.article-cta-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-white);
    border: none;
    padding: 0;
}

.article-cta-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--text-white);
}

.article-cta-box .btn {
    background: var(--text-white);
    color: var(--accent-blue);
    font-weight: 700;
}

.article-cta-box .btn:hover {
    background: var(--accent-light);
}


/* Toast: see line ~1890 for definitions */

/* ============================================================
   24. 404 PAGE
   ============================================================ */

.page-404 {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.page-404-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.page-404-code {
    font-family: var(--font-mono);
    font-size: clamp(80px, 20vw, 140px);
    font-weight: 900;
    line-height: 1;
    color: var(--accent-blue);
    letter-spacing: -4px;
    margin-bottom: 16px;
    opacity: 0.15;
    user-select: none;
}

.page-404-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 28px;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
}

.page-404-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-404-message {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-404-search {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.page-404-search input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: border-color var(--transition);
}

.page-404-search input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--bg-primary);
}

.page-404-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.page-404-links a {
    font-size: 13px;
    color: var(--accent-blue);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--accent-blue);
    border-radius: 100px;
    transition: background var(--transition), color var(--transition);
}

.page-404-links a:hover {
    background: var(--accent-blue);
    color: var(--text-white);
}

/* 403 / 500 variants */
.page-error {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.page-error-inner {
    text-align: center;
    max-width: 480px;
}

.page-error-code {
    font-family: var(--font-mono);
    font-size: clamp(60px, 15vw, 100px);
    font-weight: 900;
    color: var(--accent-red);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 0;
}

.page-error-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -48px auto 24px;
    color: var(--accent-red);
    position: relative;
    z-index: 1;
}

.page-error-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-error-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==========================================================================
   27.  Press Release Pages
   ========================================================================== */

/* Page wrapper */
.press-page {
    padding: calc(var(--header-h) + 32px) 0 80px;
    min-height: 60vh;
}
.press-page > .container { max-width: 780px; }

/* Header (list page) */
.press-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Breadcrumb */
.press-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.press-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.press-breadcrumb a:hover {
    color: var(--accent-blue);
}
.press-breadcrumb-sep {
    color: var(--border);
}

/* Category badge */
.press-category-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--accent-blue-light);
    color: var(--accent-blue);
    white-space: nowrap;
}

/* ── List: Card grid ─────────────────────────── */
.press-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.press-card {
    display: flex;
    flex-direction: row;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border-light);
}
.press-card-thumb {
    flex: 0 0 160px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-light);
}
.press-card-logo { width: 64px; height: auto; }
.press-card-body { flex: 1; padding: 24px; }
.press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.press-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.press-card-meta time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}
.press-card-meta time .lucide-icon {
    width: 13px;
    height: 13px;
}

.press-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.press-card:hover .press-card-title {
    color: var(--accent-blue);
}

.press-card-summary {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* ── Detail page ─────────────────────────────── */
.press-detail {
    max-width: 780px;
    margin: 0 auto;
}

.press-detail-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.press-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.press-detail-header .press-category-badge {
    margin-bottom: 0;
}
.press-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
}
.press-detail-date .lucide-icon {
    width: 14px;
    height: 14px;
}
.press-detail-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    line-height: 1.55;
    color: var(--text-primary);
}

/* ── Body content ────────────────────────────── */
.press-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-primary);
}
.press-body h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-blue);
    color: var(--text-primary);
}
.press-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text-primary);
}
.press-body p {
    margin-bottom: 20px;
}
.press-body ul,
.press-body ol {
    margin: 0 0 20px 24px;
}
.press-body li {
    margin-bottom: 8px;
}
.press-body a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.press-body a:hover {
    color: var(--accent-blue-dark);
}
.press-body code {
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--bg-surface);
    padding: 2px 6px;
    border-radius: 4px;
}

.press-lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

/* Press table */
.press-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 28px;
    font-size: 14px;
}
.press-table th,
.press-table td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}
.press-table thead th {
    background: var(--bg-surface);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.press-table tbody td:first-child {
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-secondary);
}
.press-table--simple {
    max-width: 560px;
}
.press-table--simple td:first-child {
    width: 140px;
    background: var(--bg-secondary);
}

.press-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ── Company info & Contact ──────────────────── */
.press-company,
.press-contact {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.press-company h2,
.press-contact h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: none;
    padding-bottom: 0;
}
.press-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.press-contact a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Back link */
.press-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .press-page {
        padding: calc(var(--header-h) + 20px) 0 60px;
    }
    .press-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .press-card {
        flex-direction: column;
    }
    .press-card-thumb {
        flex: none;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .press-card-body {
        padding: 20px;
    }
    .press-card-title {
        font-size: 14px;
    }
    .press-detail-title {
        font-size: 20px;
    }
    .press-body h2 {
        font-size: 18px;
        margin-top: 36px;
    }
    .press-body h3 {
        font-size: 15px;
    }
    .press-table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .press-table--simple {
        display: table;
    }
    .press-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo download kit */
.press-kit {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.press-kit-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.press-kit-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.press-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.press-logo-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
}
.press-logo-badges { position: absolute; top: 10px; left: 12px; display: flex; gap: 4px; z-index: 1; }
.press-logo-badge {
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
    background: rgba(0,0,0,0.08); color: #333;
}
.press-logo-badge--light { background: rgba(255,255,255,0.2); color: #fff; }
.press-logo-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    min-height: 160px;
}
.press-logo-preview img {
    max-width: 200px;
    height: auto;
}
.press-logo-preview--dark {
    background: var(--bg-dark);
}
.press-logo-card-body {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.press-logo-card-body span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.press-logo-with-text {
    display: flex;
    align-items: center;
    gap: 12px;
}
.press-logo-with-text img {
    width: 48px;
    height: auto;
}
.press-logo-text-dark {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    letter-spacing: -0.02em;
}
.press-logo-text-light {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* ============================================================
   Public Profile Page
   ============================================================ */
.profile-section { padding: calc(var(--header-h) + 32px) 0 80px; }

.profile-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.profile-avatar-large img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-large .lucide-icon { width: 36px; height: 36px; color: var(--text-muted); }

.profile-info { flex: 1; min-width: 0; }
.profile-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.profile-display-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); }
.badge-verified { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; color: var(--accent-blue); background: var(--accent-blue-light); padding: 2px 8px; border-radius: 99px; }
.badge-verified .lucide-icon { width: 12px; height: 12px; }

.profile-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.profile-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.profile-meta-item .lucide-icon { width: 14px; height: 14px; }
.profile-rating .lucide-icon { color: var(--accent-yellow, #eab308); }
.profile-rating-count { color: var(--text-muted); }

.profile-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.profile-bio { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 32px; }
.profile-bio-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.profile-bio-text { font-size: 14px; color: var(--text-primary); line-height: 1.7; }

.profile-listings-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.profile-listings-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); }
.profile-filter-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); cursor: pointer; }

.profile-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: 14px; }

.profile-reviews { margin-top: 40px; }
.profile-reviews-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.profile-review-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.profile-review-item:last-child { border-bottom: none; }
.profile-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.profile-review-stars { display: flex; gap: 2px; color: var(--accent-yellow, #eab308); }
.profile-review-stars .lucide-icon { width: 14px; height: 14px; }
.profile-review-date { font-size: 12px; color: var(--text-muted); }
.profile-review-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.profile-blocked-notice { text-align: center; padding: 60px 20px; color: var(--text-muted); }

.more-menu-wrap { position: relative; }
.more-menu-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; color: var(--text-muted); }
.more-menu-btn:hover { background: var(--bg-secondary); }
.more-menu-dropdown { display: none; position: absolute; right: 0; top: 100%; margin-top: 4px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 160px; z-index: 50; padding: 4px; }
.more-menu-dropdown.is-open { display: block; }
.more-menu-item { display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 12px; border: none; background: none; cursor: pointer; font-size: 13px; color: var(--text-primary); border-radius: var(--radius-sm); }
.more-menu-item:hover { background: var(--bg-secondary); }
.more-menu-item.is-danger { color: var(--accent-red); }
.more-menu-item .lucide-icon { width: 14px; height: 14px; }

@media (max-width: 640px) {
    .profile-header { flex-direction: column; align-items: center; text-align: center; }
    .profile-name-row { justify-content: center; }
    .profile-meta { justify-content: center; }
    .profile-actions { justify-content: center; }
    .profile-listings-header { flex-direction: column; gap: 8px; align-items: flex-start; }
}
