/* ================================
   Partners Theme - Main CSS
   ================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --pt-primary:    #FF6B35;
    --pt-primary-dk: #e85a24;
    --pt-dark:       #1a202c;
    --pt-text:       #2D3748;
    --pt-muted:      #718096;
    --pt-border:     #E2E8F0;
    --pt-bg:         #F7FAFC;
    --pt-white:      #FFFFFF;
    --pt-header-h:   64px;
    --pt-radius:     8px;
    --pt-shadow:     0 2px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
    color: var(--pt-text);
    background: var(--pt-bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--pt-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ── */
.pt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pt-white);
    border-bottom: 1px solid var(--pt-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.pt-header.scrolled { box-shadow: var(--pt-shadow); }

.pt-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--pt-header-h);
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.pt-logo { display: flex; align-items: center; text-decoration: none !important; flex-shrink: 0; }
.pt-logo img { height: 36px; width: auto; }
.pt-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pt-dark);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.pt-logo-icon {
    display: inline-block;
    height: 28px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}
.pt-logo-white .pt-logo-text { color: var(--pt-white); }
.pt-logo-accent { color: var(--pt-primary); }

/* Nav */
.pt-nav { flex: 1; }
.pt-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pt-nav-list li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--pt-text);
    border-radius: var(--pt-radius);
    transition: background 0.15s, color 0.15s;
    text-decoration: none !important;
}
.pt-nav-list li a:hover,
.pt-nav-list li.current-menu-item > a { background: rgba(255,107,53,0.08); color: var(--pt-primary); }

/* Header buttons */
.pt-header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.pt-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--pt-radius);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none !important;
    transition: all 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.pt-btn-primary   { background: var(--pt-primary); color: #fff; border-color: var(--pt-primary); }
.pt-btn-primary:hover { background: var(--pt-primary-dk); border-color: var(--pt-primary-dk); color: #fff; }
.pt-btn-outline   { background: transparent; color: var(--pt-primary); border-color: var(--pt-primary); }
.pt-btn-outline:hover { background: var(--pt-primary); color: #fff; }
.pt-btn-ghost     { background: transparent; color: var(--pt-text); border-color: transparent; }
.pt-btn-ghost:hover { background: var(--pt-bg); }
.pt-btn-block     { width: 100%; justify-content: center; }

/* Hamburger */
.pt-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.pt-hamburger span {
    display: block;
    height: 2px;
    background: var(--pt-text);
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
}
.pt-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pt-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pt-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.pt-mobile-menu {
    display: none;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--pt-border);
    background: var(--pt-white);
}
.pt-mobile-menu.open { display: block; }
.pt-mobile-nav-list { list-style: none; margin-bottom: 16px; }
.pt-mobile-nav-list li a {
    display: block;
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pt-text);
    border-bottom: 1px solid var(--pt-border);
    text-decoration: none !important;
}
.pt-mobile-nav-list li:last-child a { border-bottom: none; }
.pt-mobile-actions { padding-top: 8px; }

/* ── Main ── */
.pt-main { min-height: calc(100vh - var(--pt-header-h) - 280px); }

.pt-page-wrap { width: 100%; }
.pt-container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Generic inner page header (non-PA pages) */
.pt-inner-page-header {
    background: linear-gradient(135deg, var(--pt-dark) 0%, #4A5568 100%);
    padding: 48px 0;
}
.pt-inner-page-header h1 { color: #fff; font-size: 1.8rem; font-weight: 700; }

/* Generic article (non-shortcode pages) */
.pt-article {
    max-width: 760px;
    margin: 48px auto;
    padding: 0 24px;
}
.pt-article-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; }
.pt-article-content { line-height: 1.8; color: var(--pt-text); }
.pt-article-content p  { margin-bottom: 16px; }
.pt-article-content h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.pt-article-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.pt-article-content ul, .pt-article-content ol { padding-left: 24px; margin-bottom: 16px; }
.pt-article-content li { margin-bottom: 6px; }

/* ── Footer ── */
.pt-footer {
    background: var(--pt-dark);
    color: rgba(255,255,255,0.75);
    margin-top: auto;
}
.pt-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pt-footer-top {
    display: flex;
    gap: 48px;
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pt-footer-brand { flex: 1; }
.pt-footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.5); }

.pt-footer-links { display: flex; gap: 48px; }
.pt-footer-link-group h4 {
    color: var(--pt-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.pt-footer-link-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pt-footer-link-group a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none !important;
    transition: color 0.15s;
}
.pt-footer-link-group a:hover { color: var(--pt-white); }

.pt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.pt-footer-powered { font-size: 0.78rem; }

/* ── 정책 페이지 ── */
.pt-policy-wrap {
    padding: 56px 0 80px;
    min-height: 60vh;
}

.pt-policy-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 사이드바 */
.pt-policy-sidebar {
    flex-shrink: 0;
    width: 200px;
}

.pt-policy-sidebar-inner {
    position: sticky;
    top: calc(var(--pt-header-h) + 24px);
    background: var(--pt-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 8px;
}

.pt-policy-sidebar-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pt-muted);
    padding: 8px 10px 6px;
}

.pt-policy-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pt-policy-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--pt-muted);
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
}

.pt-policy-nav-link:hover {
    background: var(--pt-bg);
    color: var(--pt-text);
}

.pt-policy-nav-link.active {
    background: var(--pt-primary);
    color: #fff;
    font-weight: 600;
}

.pt-policy-nav-arrow {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 본문 */
.pt-policy-content {
    flex: 1;
    min-width: 0;
}

.pt-policy-article {
    background: var(--pt-white);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    padding: 40px 48px;
}

.pt-policy-article-header {
    padding-bottom: 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--pt-border);
}

.pt-policy-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pt-dark);
    margin-bottom: 20px;
}

.pt-policy-date {
    font-size: 0.82rem;
    color: var(--pt-muted);
    padding: 4px 10px;
    background: var(--pt-bg);
    border-radius: 20px;
    display: inline-block;
}

/* 본문 콘텐츠 타이포그래피 */
.pt-policy-body {
    line-height: 1.9;
    color: var(--pt-text);
    font-size: 0.95rem;
}

.pt-policy-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pt-dark);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--pt-border);
}

.pt-policy-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pt-dark);
    margin: 24px 0 8px;
}

.pt-policy-body p {
    margin-bottom: 14px;
}

.pt-policy-body ul,
.pt-policy-body ol {
    padding-left: 1.6em;
    margin-bottom: 14px;
    list-style-position: outside;
}

.pt-policy-body ol {
    padding-left: 2em;
}

.pt-policy-body li {
    margin-bottom: 6px;
}

.pt-policy-body strong {
    color: var(--pt-dark);
    font-weight: 700;
}

.pt-policy-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pt-policy-body th,
.pt-policy-body td {
    padding: 10px 14px;
    border: 1px solid var(--pt-border);
    text-align: left;
}

.pt-policy-body th {
    background: var(--pt-bg);
    font-weight: 700;
    color: var(--pt-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pt-nav          { display: none; }
    .pt-hamburger    { display: flex; }
    .pt-header-actions .pt-btn-ghost,
    .pt-header-actions .pt-btn-outline { display: none; }

    .pt-footer-top   { flex-direction: column; gap: 32px; }
    .pt-footer-links { flex-direction: column; gap: 28px; }
    .pt-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

    .pt-policy-layout        { flex-direction: column; gap: 20px; }
    .pt-policy-sidebar       { width: 100%; }
    .pt-policy-sidebar-inner { position: static; padding: 6px; }
    .pt-policy-sidebar-label { display: none; }
    .pt-policy-nav ul        { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .pt-policy-nav-link      { padding: 8px 14px; font-size: 0.85rem; }
    .pt-policy-nav-link.active { background: var(--pt-primary); color: #fff; }
    .pt-policy-nav-arrow     { display: none; }
    .pt-policy-article  { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .pt-header-inner { padding: 0 16px; gap: 16px; }
    .pt-footer-inner { padding: 0 16px; }
    .pt-container    { padding: 0 16px; }
    .pt-policy-wrap  { padding: 32px 0 56px; }
}

/* ── 소셜 로그인 페이지 ─────────────────────────────────────────────────── */
.pt-login-wrap {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: var(--pt-bg);
}

.pt-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--pt-border);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.pt-login-logo {
    display: inline-block;
    margin-bottom: 28px;
    text-decoration: none;
}

.pt-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pt-dark);
    margin: 0 0 8px;
}

.pt-login-desc {
    font-size: 0.95rem;
    color: var(--pt-muted);
    margin: 0 0 32px;
}

.pt-login-error {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 24px;
}

.pt-social-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, box-shadow .15s, transform .1s;
    border: 1.5px solid transparent;
}

.pt-social-btn:hover {
    transform: translateY(-1px);
}

.pt-social-btn:active {
    transform: translateY(0);
}

/* Google */
.pt-social-btn--google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.pt-social-btn--google:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* 카카오 */
.pt-social-btn--kakao {
    background: #FEE500;
    color: #3A1D1D;
    border-color: #FEE500;
}

.pt-social-btn--kakao:hover {
    background: #F5DB00;
    box-shadow: 0 2px 8px rgba(254,229,0,.4);
}

/* 네이버 */
.pt-social-btn--naver {
    background: #03C75A;
    color: #fff;
    border-color: #03C75A;
}

.pt-social-btn--naver:hover {
    background: #02B350;
    box-shadow: 0 2px 8px rgba(3,199,90,.4);
}

.pt-social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pt-login-notice {
    font-size: 0.8rem;
    color: var(--pt-muted);
    margin: 28px 0 0;
    line-height: 1.6;
}

.pt-switch-link {
    color: var(--pt-primary, #2563eb);
    font-weight: 600;
    text-decoration: none;
}

.pt-switch-link:hover {
    text-decoration: underline;
}

/* ── 로그인 카드 (이메일 폼 포함) ──────────────────────────────────────── */
.pt-login-card--full {
    max-width: 460px;
    text-align: left;
}

.pt-login-card--full .pt-login-logo,
.pt-login-card--full .pt-login-title,
.pt-login-card--full .pt-login-desc {
    display: block;
    text-align: center;
}

.pt-login-card--full .pt-login-notice {
    text-align: center;
    margin-top: 24px;
}

/* 라벨 + 비밀번호 찾기 링크 한 줄 */
.pt-form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pt-forgot-link {
    font-size: 0.8rem;
    color: var(--pt-muted);
    text-decoration: none;
}

.pt-forgot-link:hover {
    color: var(--pt-primary, #2563eb);
    text-decoration: underline;
}

/* 로그인 상태 유지 체크박스 */
.pt-form-checkbox-row {
    display: flex;
    align-items: center;
}

.pt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--pt-muted);
    cursor: pointer;
    user-select: none;
}

.pt-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--pt-primary, #2563eb);
    cursor: pointer;
}

/* ── 회원가입 구분선 ────────────────────────────────────────────────────── */
.pt-register-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 20px;
    color: var(--pt-muted);
    font-size: 0.8rem;
}

.pt-register-divider::before,
.pt-register-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--pt-border);
}

/* ── 이메일로 회원가입 버튼 (로그인 페이지용) ──────────────────────────── */
.pt-register-link-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--pt-dark);
    background: transparent;
    border: 1.5px solid var(--pt-border);
    transition: background .15s, border-color .15s, transform .1s;
}

.pt-register-link-btn:hover {
    background: var(--pt-bg);
    border-color: #aaa;
    transform: translateY(-1px);
}

.pt-register-link-btn:active {
    transform: translateY(0);
}

/* ── 회원가입 폼 ─────────────────────────────────────────────────────────── */
.pt-register-card {
    max-width: 460px;
    text-align: left;
}

.pt-register-card .pt-login-logo,
.pt-register-card .pt-login-title,
.pt-register-card .pt-login-desc {
    display: block;
    text-align: center;
}

.pt-register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pt-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pt-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pt-dark);
}

.pt-required {
    color: #dc2626;
}

.pt-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--pt-border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--pt-dark);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
    outline: none;
}

.pt-form-input:focus {
    border-color: var(--pt-primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.pt-form-input--error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.pt-form-input::placeholder {
    color: #b0b0b0;
}

.pt-form-hint {
    font-size: 0.78rem;
    color: var(--pt-muted);
    margin: 0;
}

/* 필드 단위 오류 메시지 — 문구가 없을 때는 자리를 차지하지 않는다 */
.pt-field-error {
    font-size: 0.78rem;
    color: #dc2626;
    margin: 0;
}

.pt-field-error:empty {
    display: none;
}

/* 비밀번호 표시/숨기기 */
.pt-password-wrap {
    position: relative;
}

.pt-password-wrap .pt-form-input {
    padding-right: 44px;
}

.pt-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: var(--pt-muted);
    display: flex;
    align-items: center;
}

.pt-pw-toggle:hover {
    color: var(--pt-dark);
}

/* 회원가입 제출 버튼 */
.pt-register-submit {
    width: 100%;
    padding: 14px;
    margin-top: 4px;
    background: var(--pt-primary, #2563eb);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(37,99,235,.25);
}

.pt-register-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,.35);
}

.pt-register-submit:active {
    transform: translateY(0);
}

.pt-register-card .pt-login-notice {
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 480px) {
    .pt-login-card {
        padding: 36px 24px;
        border-radius: 12px;
    }
}

/* ── 공지 메시지 (성공) ─────────────────────────────────────────────────── */
.pt-login-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pt-login-notice-box svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── 인증 메일 재발송 폼 ────────────────────────────────────────────────── */
.pt-resend-form {
    margin-bottom: 8px;
}

.pt-resend-row {
    display: flex;
    gap: 8px;
}

.pt-resend-row .pt-form-input {
    flex: 1;
    min-width: 0;
}

.pt-resend-btn {
    padding: 0 18px;
    background: var(--pt-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}

.pt-resend-btn:hover {
    background: #374151;
}

/* ── 소셜 계정 연동 숏코드 ──────────────────────────────────────────────── */
.pt-social-connect {
    padding: 4px 0;
}

.pt-connect-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pt-dark);
    margin: 0 0 6px;
}

.pt-connect-desc {
    font-size: 0.875rem;
    color: var(--pt-muted);
    margin: 0 0 20px;
}

.pt-connect-notice {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.pt-connect-notice--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.pt-connect-notice--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.pt-connect-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pt-connect-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--pt-border);
    border-radius: 10px;
    background: #fff;
}

.pt-connect-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pt-connect-item-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pt-dark);
}

.pt-connect-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #166534;
    background: #dcfce7;
    border-radius: 20px;
    padding: 2px 8px;
}

.pt-connect-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, transform .1s;
}

.pt-connect-btn--connect {
    background: var(--pt-primary, #2563eb);
    color: #fff;
}

.pt-connect-btn--connect:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.pt-connect-btn--disconnect {
    background: #f3f4f6;
    color: #6b7280;
}

.pt-connect-btn--disconnect:hover {
    background: #fef2f2;
    color: #dc2626;
}

.pt-connect-hint {
    font-size: 0.8rem;
    color: var(--pt-muted);
    margin: 16px 0 0;
}

.pt-connect-hint a {
    color: var(--pt-primary, #2563eb);
}

.pt-connect-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pt-border);
}

.pt-connect-section .pt-connect-title,
.pt-connect-section .pt-connect-desc {
    margin-bottom: 0;
}

.pt-connect-section .pt-connect-desc {
    margin: 6px 0 16px;
}
