.member-lock {
    margin-top: 24px;
    border: 1px solid #ddd6fe;
    background: linear-gradient(135deg, #f5f3ff, #ffffff);
    border-radius: 20px;
    padding: 18px;
    text-align: center;
}

.member-lock h2 {
    margin: 0;
    color: #5b21b6;
    font-size: 20px;
    font-weight: 900;
}

.member-lock p {
    margin: 12px 0 0;
    color: #6d5e82;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.member-lock-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.member-lock-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.member-lock-actions .primary {
    background: #7c3aed;
    color: #fff;
}

.member-lock-actions .secondary {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #475569;
}

.blog-status-message {
    margin-top: 18px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
    border-radius: 16px;
    padding: 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.7;
}

.blog-engagement {
    margin-top: 26px;
    border: 1px solid #f1d7e6;
    background: linear-gradient(135deg, #fff7fb, #ffffff);
    border-radius: 22px;
    padding: 16px;
}

.blog-engagement-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-engagement-title {
    margin: 0;
    color: #831843;
    font-size: 16px;
    font-weight: 900;
}

.blog-engagement-counts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-engagement-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #fbcfe8;
    color: #9d174d;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.blog-reaction-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.blog-seen-form,
.blog-like-form {
    margin: 0;
}

.blog-seen-button,
.blog-like-button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(219, 39, 119, .18);
    cursor: pointer;
}

.blog-seen-button {
    background: linear-gradient(135deg, #db2777, #be185d);
}

.blog-like-button {
    background: linear-gradient(135deg, #f97316, #db2777);
}

.blog-seen-button.is-done,
.blog-like-button.is-done,
.blog-like-button.is-disabled {
    background: #e5e7eb;
    color: #64748b;
    box-shadow: none;
    cursor: default;
}

.blog-comment-box {
    margin-top: 18px;
    border-top: 1px solid #fbcfe8;
    padding-top: 16px;
}

.blog-comment-box h2 {
    margin: 0;
    color: #831843;
    font-size: 15px;
    font-weight: 900;
}

.blog-comment-box p {
    margin: 8px 0 0;
    color: #7c6b73;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}

.blog-comment-box textarea {
    width: 100%;
    min-height: 110px;
    margin-top: 12px;
    border: 1px solid #f9a8d4;
    border-radius: 16px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.8;
    box-sizing: border-box;
}

.blog-comment-submit {
    margin-top: 10px;
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: #831843;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 390px) {
    .blog-reaction-actions {
        grid-template-columns: 1fr;
    }
}
