/* Card grid — fixed 3 cols so layout holds even with 1 post */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grad-1 { --glass-rgb: 253, 160, 133; --glass-rgb-2: 246, 211, 101; --glass-line: rgba(253, 160, 133, 0.34); }
.grad-2 { --glass-rgb: 143, 211, 244; --glass-rgb-2: 132, 250, 176; --glass-line: rgba(132, 220, 190, 0.34); }
.grad-3 { --glass-rgb: 161, 196, 253; --glass-rgb-2: 194, 233, 251; --glass-line: rgba(161, 196, 253, 0.32); }
.grad-4 { --glass-rgb: 166, 193, 238; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(221, 160, 221, 0.32); }
.grad-5 { --glass-rgb: 252, 182, 159; --glass-rgb-2: 255, 236, 210; --glass-line: rgba(252, 182, 159, 0.34); }
.grad-6 { --glass-rgb: 161, 140, 209; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(161, 140, 209, 0.30); }
.grad-7 { --glass-rgb: 255, 154, 158; --glass-rgb-2: 254, 207, 239; --glass-line: rgba(255, 154, 158, 0.34); }
.grad-8 { --glass-rgb: 67, 233, 123; --glass-rgb-2: 56, 249, 215; --glass-line: rgba(67, 210, 160, 0.30); }
.grad-9 { --glass-rgb: 245, 87, 108; --glass-rgb-2: 240, 147, 251; --glass-line: rgba(245, 87, 108, 0.28); }
.grad-10 { --glass-rgb: 79, 172, 254; --glass-rgb-2: 0, 242, 254; --glass-line: rgba(79, 172, 254, 0.30); }
.grad-11 { --glass-rgb: 249, 116, 143; --glass-rgb-2: 254, 154, 139; --glass-line: rgba(249, 116, 143, 0.32); }
.grad-12 { --glass-rgb: 150, 251, 196; --glass-rgb-2: 249, 245, 134; --glass-line: rgba(150, 220, 170, 0.30); }

.glass-theme-1 { --glass-rgb: 255, 183, 178; --glass-rgb-2: 255, 234, 167; --glass-line: rgba(255, 183, 178, 0.34); }
.glass-theme-2 { --glass-rgb: 168, 230, 207; --glass-rgb-2: 194, 233, 251; --glass-line: rgba(168, 230, 207, 0.32); }
.glass-theme-3 { --glass-rgb: 214, 234, 248; --glass-rgb-2: 166, 193, 238; --glass-line: rgba(166, 193, 238, 0.30); }
.glass-theme-4 { --glass-rgb: 255, 224, 178; --glass-rgb-2: 252, 182, 159; --glass-line: rgba(255, 198, 145, 0.32); }
.glass-theme-5 { --glass-rgb: 221, 160, 221; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(221, 160, 221, 0.28); }
.glass-theme-6 { --glass-rgb: 196, 244, 210; --glass-rgb-2: 255, 238, 185; --glass-line: rgba(175, 220, 165, 0.28); }

/* 碎碎念卡 = 一整块玻璃（Apple HIG：一面一层材质，内容坐在材质上）。
 * 阴影/模糊全走 --liquid-* 系统 token，和 rec-card / timeline / person-card 同一质感；
 * 只有 .card 根有 backdrop-filter，子区块（图头/正文/tag）一律不再开第二层。 */
.card {
    --glass-rgb: 255, 183, 178;
    --glass-rgb-2: 168, 230, 207;
    --glass-line: rgba(255, 183, 178, 0.3);
    background:
        radial-gradient(circle at 92% 90%, rgba(var(--glass-rgb), 0.10), transparent 42%),
        radial-gradient(circle at 8% 6%, rgba(var(--glass-rgb-2), 0.07), transparent 40%),
        var(--liquid-bg);
    position: relative;
    isolation: isolate;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--liquid-shadow), var(--liquid-rim);
    transition: transform 0.45s var(--spring), box-shadow 0.35s var(--ease-soft);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--liquid-filter);
    -webkit-backdrop-filter: var(--liquid-filter);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.card:hover {
    transform: translateY(-4px) scale(1.006);
    box-shadow: var(--liquid-shadow-hover), var(--liquid-rim);
}

.card:active {
    transform: translateY(-2px);
    box-shadow: var(--liquid-shadow), var(--liquid-rim);
}

.card.grad-1 { --glass-rgb: 253, 160, 133; --glass-rgb-2: 246, 211, 101; --glass-line: rgba(253, 160, 133, 0.34); }
.card.grad-2 { --glass-rgb: 143, 211, 244; --glass-rgb-2: 132, 250, 176; --glass-line: rgba(132, 220, 190, 0.34); }
.card.grad-3 { --glass-rgb: 161, 196, 253; --glass-rgb-2: 194, 233, 251; --glass-line: rgba(161, 196, 253, 0.32); }
.card.grad-4 { --glass-rgb: 166, 193, 238; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(221, 160, 221, 0.32); }
.card.grad-5 { --glass-rgb: 252, 182, 159; --glass-rgb-2: 255, 236, 210; --glass-line: rgba(252, 182, 159, 0.34); }
.card.grad-6 { --glass-rgb: 161, 140, 209; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(161, 140, 209, 0.30); }
.card.grad-7 { --glass-rgb: 255, 154, 158; --glass-rgb-2: 254, 207, 239; --glass-line: rgba(255, 154, 158, 0.34); }
.card.grad-8 { --glass-rgb: 67, 233, 123; --glass-rgb-2: 56, 249, 215; --glass-line: rgba(67, 210, 160, 0.30); }
.card.grad-9 { --glass-rgb: 245, 87, 108; --glass-rgb-2: 240, 147, 251; --glass-line: rgba(245, 87, 108, 0.28); }
.card.grad-10 { --glass-rgb: 79, 172, 254; --glass-rgb-2: 0, 242, 254; --glass-line: rgba(79, 172, 254, 0.30); }
.card.grad-11 { --glass-rgb: 249, 116, 143; --glass-rgb-2: 254, 154, 139; --glass-line: rgba(249, 116, 143, 0.32); }
.card.grad-12 { --glass-rgb: 150, 251, 196; --glass-rgb-2: 249, 245, 134; --glass-line: rgba(150, 220, 170, 0.30); }

/* 图头 = 同一块玻璃上的染色区（透出底下的 frost），不是盖上去的颜料板 */
.card-img-placeholder {
    height: 180px;
    background:
        radial-gradient(circle at 18% 14%, rgba(255,255,255,0.24), transparent 34%),
        radial-gradient(circle at 88% 86%, rgba(255,255,255,0.12), transparent 42%),
        linear-gradient(120deg, rgba(var(--glass-rgb-2), 0.62), rgba(var(--glass-rgb), 0.58));
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.42),
        inset 0 -28px 42px rgba(255,255,255,0.10);
}

.card-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 8%, rgba(255,255,255,0.26), transparent 42%),
        radial-gradient(circle at 78% 88%, rgba(255,255,255,0.12), transparent 40%);
    opacity: 0.72;
}

/* Inner glass rim — keeps the old white frame while staying soft.
 * 同心圆角：内框半径 = 外框 22px − inset 12px = 10px，角才不会比外框鼓 */
.card-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.44);
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,0.18), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.10), transparent 54%, rgba(255,255,255,0.06));
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.50),
        inset 0 -1px 1px rgba(255,255,255,0.18),
        0 1px 10px rgba(255,255,255,0.10);
    pointer-events: none;
    z-index: 2;
}

.card-img-placeholder .card-emoji {
    position: relative;
    z-index: 3;
    display: block;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 3rem;
    line-height: 1;
    opacity: 1;
    text-shadow: 0 8px 22px rgba(78, 66, 62, 0.08);
}

/* 正文直接坐在卡片玻璃上：只做一层轻提亮保可读性，不再开自己的 blur/材质 */
.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.10));
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.card p {
    font-size: 0.88rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.card-meta {
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.78rem;
    color: #bbb;
}

.card-by {
    display: block;
    text-align: right;
    font-style: italic;
    color: #d0c4bb;
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 0.22rem 0.82rem;
    background: rgba(255,255,255,0.46);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.72rem;
    margin-right: 0.3rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.58), 0 3px 10px rgba(78,66,62,0.035);
}

.tag.pink { background: rgba(255,224,224,0.58); color: #c95750; }
.tag.green { background: rgba(212,237,218,0.58); color: #2f9d66; }
.tag.blue { background: rgba(214,234,248,0.58); color: #3b82a8; }
.tag.purple { background: rgba(232,218,239,0.58); color: #8e55a8; }
.tag.amber { background: rgba(255,232,194,0.62); color: #b07d2b; }   /* Work：暖琥珀，区别于粉/绿/蓝/紫 */

/* Month tabs */
.month-tabs {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.month-tab {
    padding: 0.4rem 1.2rem;
    border: 2px solid #eee;
    background: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s var(--ease-soft), transform 0.3s var(--spring);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.month-tab:hover {
    border-color: var(--accent-pink);
    color: var(--text-main);
    transform: translateY(-2px);
}

.month-tab:active {
    background: #fff5f5;
    border-color: var(--accent-pink);
    color: var(--text-main);
}

.month-tab.active {
    border-color: var(--accent-pink);
    background: #fff5f5;
    color: var(--text-main);
}

/* Expand button */
.expand-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.6rem 2rem;
    border: 2px dashed #ddd;
    background: transparent;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.expand-btn:hover,
.expand-btn:active {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-2px);
}

.expand-btn.expanded {
    border-style: solid;
    border-color: #eee;
}

/* Rec grid */
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.rec-card {
    --glass-rgb: 255, 224, 178;
    --glass-rgb-2: 255, 250, 247;
    --glass-line: rgba(236,228,220,0.72);
    background:
        radial-gradient(circle at 88% 8%, rgba(var(--glass-rgb), 0.09), transparent 42%),
        radial-gradient(circle at 10% 0%, rgba(var(--glass-rgb-2), 0.06), transparent 38%),
        var(--liquid-bg);
    border: none;
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: var(--liquid-filter);
    -webkit-backdrop-filter: var(--liquid-filter);
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform 0.3s;
}

.rec-card:hover,
.rec-card:active {
    transform: translateY(-3px);
}

.rec-card:nth-child(6n+1),
.timeline-item:nth-child(6n+1) .timeline-content { --glass-rgb: 255, 183, 178; --glass-rgb-2: 255, 234, 167; --glass-line: rgba(255, 183, 178, 0.30); }
.rec-card:nth-child(6n+2),
.timeline-item:nth-child(6n+2) .timeline-content { --glass-rgb: 168, 230, 207; --glass-rgb-2: 194, 233, 251; --glass-line: rgba(168, 230, 207, 0.30); }
.rec-card:nth-child(6n+3),
.timeline-item:nth-child(6n+3) .timeline-content { --glass-rgb: 214, 234, 248; --glass-rgb-2: 166, 193, 238; --glass-line: rgba(166, 193, 238, 0.28); }
.rec-card:nth-child(6n+4),
.timeline-item:nth-child(6n+4) .timeline-content { --glass-rgb: 255, 224, 178; --glass-rgb-2: 252, 182, 159; --glass-line: rgba(255, 198, 145, 0.30); }
.rec-card:nth-child(6n+5),
.timeline-item:nth-child(6n+5) .timeline-content { --glass-rgb: 221, 160, 221; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(221, 160, 221, 0.26); }
.rec-card:nth-child(6n),
.timeline-item:nth-child(6n) .timeline-content { --glass-rgb: 196, 244, 210; --glass-rgb-2: 255, 238, 185; --glass-line: rgba(175, 220, 165, 0.26); }

.rec-card.glass-theme-1,
.timeline-content.glass-theme-1 { --glass-rgb: 255, 183, 178; --glass-rgb-2: 255, 234, 167; --glass-line: rgba(255, 183, 178, 0.34); }
.rec-card.glass-theme-2,
.timeline-content.glass-theme-2 { --glass-rgb: 168, 230, 207; --glass-rgb-2: 194, 233, 251; --glass-line: rgba(168, 230, 207, 0.32); }
.rec-card.glass-theme-3,
.timeline-content.glass-theme-3 { --glass-rgb: 214, 234, 248; --glass-rgb-2: 166, 193, 238; --glass-line: rgba(166, 193, 238, 0.30); }
.rec-card.glass-theme-4,
.timeline-content.glass-theme-4 { --glass-rgb: 255, 224, 178; --glass-rgb-2: 252, 182, 159; --glass-line: rgba(255, 198, 145, 0.32); }
.rec-card.glass-theme-5,
.timeline-content.glass-theme-5 { --glass-rgb: 221, 160, 221; --glass-rgb-2: 251, 194, 235; --glass-line: rgba(221, 160, 221, 0.28); }
.rec-card.glass-theme-6,
.timeline-content.glass-theme-6 { --glass-rgb: 196, 244, 210; --glass-rgb-2: 255, 238, 185; --glass-line: rgba(175, 220, 165, 0.28); }

.rec-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rec-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.rec-card p {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-date {
    min-width: 90px;
    text-align: right;
    font-size: 0.82rem;
    color: var(--text-light);
    padding-top: 0.15rem;
    font-weight: 500;
}

.timeline-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-pink);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--accent-pink);
    flex-shrink: 0;
}

/* Latest (first) timeline dot gets a ripple pulse */
.timeline-item:first-child .timeline-dot::before {
    animation: timelineDotPulse 2.4s ease-out infinite;
}

.timeline-dot::after {
    content: '';
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(168, 230, 207, 0.4), rgba(255, 183, 178, 0.25));
    margin-top: 4px;
}

.timeline-item:last-child .timeline-dot::after {
    display: none;
}

.timeline-content {
    --glass-rgb: 168, 230, 207;
    --glass-rgb-2: 255, 183, 178;
    --glass-line: rgba(236,228,220,0.72);
    background:
        radial-gradient(circle at 96% 12%, rgba(var(--glass-rgb), 0.08), transparent 42%),
        radial-gradient(circle at 8% 0%, rgba(var(--glass-rgb-2), 0.05), transparent 38%),
        var(--liquid-bg);
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 16px;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: var(--liquid-filter);
    -webkit-backdrop-filter: var(--liquid-filter);
    flex: 1;
}

.timeline-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.timeline-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #ccc;
    font-size: 0.8rem;
    position: relative;
}

.timeline-divider::before,
.timeline-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.timeline-divider::before { left: 5%; }
.timeline-divider::after { right: 5%; }

/* Status bar */
.status-bar {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 183, 178, 0.07), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(168, 230, 207, 0.07), transparent 42%),
        var(--liquid-bg);
    border-radius: 20px;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: var(--liquid-filter);
    -webkit-backdrop-filter: var(--liquid-filter);
}

/* Filter bar (gallery) */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.4rem 1.2rem;
    border: 2px solid #eee;
    background: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s var(--ease-soft), transform 0.3s var(--spring);
    color: var(--text-light);
    font-weight: 500;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-pink);
    color: var(--text-main);
    background: #fff5f5;
    transform: translateY(-2px);
}

.filter-btn:active {
    border-color: var(--accent-pink);
    color: var(--text-main);
    background: #fff5f5;
}

/* ── Comments ── */
.post-comments {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px dashed #f0f0f0;
}

.comments-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.comment-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pink), #ffd1d1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: 500;
    flex-shrink: 0;
}

/* Jim 的评论头像 — 绿色调，与 tutorial 的 accent-blue 一致 */
.comment-avatar.jim {
    background: linear-gradient(135deg, var(--accent-blue), #b8f0dc);
}

.comment-body {
    flex: 0 1 auto;
    max-width: 85%;
    background: #fef8f8;
    padding: 0.6rem 0.9rem;
    border-radius: 16px;
    border-top-left-radius: 4px;
}

/* Role-based comment colors */
.comment-body.bling { background: #fef8f8; }
.comment-body.jim   { background: #f0faf5; }
.comment-body.guest { background: #f8f8f8; }
.comment-avatar.guest { background: linear-gradient(135deg, #e0e0e0, #c8c8c8); }

.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
    flex-wrap: wrap;
}

.comment-author {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-pink);
}
.comment-body.jim .comment-author { color: #5dba8d; }
.comment-body.guest .comment-author { color: var(--text-light); }

/* Role badge */
.comment-role {
    font-size: 0.58rem;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.comment-role.owner { background: #fff0ef; color: var(--accent-pink); }
.comment-body.jim .comment-role.owner { background: #e8f5e9; color: #5dba8d; }
.comment-role.admin { background: #e8f0fe; color: #4a90d9; }

.comment-time {
    font-size: 0.66rem;
    color: #bbb;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}
.comment-delete {
    margin-left: auto;
    align-self: flex-start;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0 0.15rem;
    cursor: pointer;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1;
    transition: color 0.2s;
}
.comment-delete:hover { color: #e74c3c; }

.comment-text {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.6;
}

.comment-empty {
    text-align: center;
    color: #ccc;
    font-size: 0.82rem;
    padding: 0.8rem 0;
}

.comment-login-hint {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.comment-login-hint a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-form textarea {
    width: 100%;
    border: 1.5px solid #f0f0f0;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-family: inherit;
    font-size: 0.85rem;
    resize: vertical;
    min-height: 60px;
    transition: border-color 0.2s;
    outline: none;
    color: var(--text-main);
}

.comment-form textarea:focus {
    border-color: var(--accent-pink);
}

.comment-form textarea::placeholder {
    color: #ccc;
}

.comment-submit {
    align-self: flex-end;
    padding: 0.4rem 1.2rem;
    border: none;
    background: var(--accent-pink);
    color: white;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    touch-action: manipulation;
}

.comment-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 183, 178, 0.3);
}

.comment-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
