/* Post Detail Page */
.post-detail {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Post Type Badge */
.post-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-type-normal {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.post-type-blog {
    background: rgba(30, 64, 175, 0.15);
    color: #3b82f6;
}

.post-type-work {
    background: rgba(190, 18, 60, 0.15);
    color: #f43f5e;
}

.post-type-collab {
    background: rgba(21, 128, 61, 0.15);
    color: #22c55e;
}

.post-type-notice {
    background: rgba(180, 83, 9, 0.15);
    color: #f59e0b;
}

/* Tags in Detail */
.post-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
}

/* Improved Reaction System (원래 스타일: 반응 남기기 버튼 + 피커) */
.reactions-container-v2 {
    margin: 4rem 0 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reaction-wrapper {
    position: relative;
    z-index: 10;
}

.reaction-main-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-medium, #ddd);
    background: var(--bg-card, #fff);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary, #555);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.reaction-main-btn:hover {
    background: var(--bg-secondary, #f5f5f5);
    border-color: var(--border-dark, #ccc);
    transform: scale(1.02);
}

.reaction-main-btn.active {
    background: var(--primary-bg-light, #e6f7ff);
    border-color: transparent;
    color: var(--primary-color, #007aff);
}

/* 반응이 1개 이상일 때: 메인 버튼 숨기고 배지만 표시 */
#reactionsContainer.has-reactions .reaction-main-btn,
#reactionsContainer[data-has-reactions="true"] .reaction-main-btn {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.reactions-container-v2:not(.has-reactions) .reaction-counts,
#reactionsContainer:not([data-has-reactions="true"]) .reaction-counts {
    display: none !important;
}

.reaction-main-btn .main-icon {
    font-size: 1.2rem;
}

.reaction-picker {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9);
    background: var(--bg-card);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    margin-bottom: 10px;
    white-space: nowrap;
}

.reaction-wrapper:hover .reaction-picker,
.reaction-picker:hover,
.reaction-picker.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.reaction-picker .picker-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: transform 0.2s;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reaction-picker .picker-btn:hover {
    transform: scale(1.3) translateY(-5px);
    background: rgba(0, 0, 0, 0.03);
}

.reaction-picker .picker-btn:active {
    transform: scale(0.95);
}

.reaction-counts {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    justify-content: center;
}

.reaction-counts.post-reaction-trigger {
    cursor: pointer;
}

/* 게시글 반응: pill 형태 (메인 버튼보다 더 큰 알약) */
#reactionsContainer .reaction-pill,
.reactions-container-v2 .reaction-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 0.625rem;
    padding: 12px 28px !important;
    min-height: 52px;
    border-radius: 50px;
    border: 1px solid var(--border-medium, #ddd);
    background: var(--bg-card, #fff);
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--text-secondary, #555);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.reactions-container-v2 .reaction-pill:hover,
#reactionsContainer .reaction-pill:hover {
    background: var(--bg-secondary, #f5f5f5);
    border-color: var(--border-dark, #ccc);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#reactionsContainer .reaction-pill.my-reaction,
.reactions-container-v2 .reaction-pill.my-reaction {
    border-color: var(--primary-color, #007aff);
    color: var(--primary-color, #007aff);
    background: var(--primary-bg-light, #e6f7ff);
}

#reactionsContainer .reaction-pill .pill-emoji,
.reactions-container-v2 .reaction-pill .pill-emoji {
    font-size: 1.5rem;
}

#reactionsContainer .reaction-pill .pill-count,
.reactions-container-v2 .reaction-pill .pill-count {
    font-weight: 600;
    font-size: 1.125rem;
}

/* 
   Improved Action Bar (List / Edit / Delete)
*/
.post-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    /* border-top: 1px solid var(--border-light); Removed as per request */
    margin-top: 2rem;
}

.action-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.action-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.action-link.edit {
    color: var(--primary-color, #007aff);
}

.action-link.delete {
    color: var(--error, #ef4444);
}

.action-link.delete:hover {
    background: #fef2f2;
}

.action-right {
    display: flex;
    gap: 8px;
}

/* Post Header */
.post-header {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.post-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0.1rem 0;
    color: var(--text-primary);
}

.post-meta-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Post Content */
.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    min-height: 200px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

/* Headings within content */
.post-content h1,
.post-content h2,
.post-content h3 {
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.post-content h1 {
    font-size: 2rem;
}

.post-content h2 {
    font-size: 1.75rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content p {
    margin: 1rem 0;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-position: inside;
}

.post-content blockquote {
    position: relative;
    margin: 2rem auto 1rem;
    /* Reduced bottom margin */
    padding: 1rem 2rem;
    max-width: 85%;
    border: none;
    background: transparent;

    font-family: 'Times New Roman', serif;
    /* Emotional Serif Look */
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.35rem;
    /* Slightly larger for emphasis */
    line-height: 1.6;
    text-align: center;
    box-shadow: none;
}

/* Remove decorative quotes entirely as requested */
.post-content blockquote::before,
.post-content blockquote::after {
    content: none;
}

[data-theme="dark"] .post-content blockquote {
    background: transparent;
    color: var(--text-primary);
}

.blockquote-footer {
    display: none;
}

/* ========================================
   Embed Styles (YouTube, SoundCloud)
   ======================================== */
.embed-wrapper {
    margin: 2rem auto;
    width: 100%;
    max-width: 640px;
}

/* 16:9 Responsive Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* SoundCloud Fixed Height */
.embed-soundcloud iframe {
    width: 100%;
    height: 166px;
    /* Standard Slim Player */
    border-radius: 12px;
    border: none;
}

/* Hide Captions */
.embed-caption {
    display: none;
}

/* Code Blocks */
.post-content pre {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #1e1e1e;
    border-radius: var(--radius-md);
    overflow-x: auto;
}

.post-content pre code {
    font-family: monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #d4d4d4;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.comments-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.comment-count {
    background: var(--primary-color, #007aff);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-round);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Comment Form - Messenger Style (inline send button) */
.comment-form {
    margin-bottom: 2rem;
}

.comment-input-wrapper {
    background: var(--bg-card, #ffffff);
    border: 2px solid var(--border-light, #e9ecef);
    border-radius: 24px;
    padding: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

[data-theme="dark"] .comment-input-wrapper {
    background: var(--bg-card, #1e1e1e);
    border-color: var(--border-medium, #3a3a3a);
}

.comment-input-wrapper:focus-within {
    border-color: var(--primary-color, #007aff);
    box-shadow: 0 0 0 3px var(--primary-bg-light, rgba(0, 122, 255, 0.08));
}

[data-theme="dark"] .comment-input-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.comment-input {
    width: 100%;
    min-height: 40px;
    max-height: 160px;
    border: none;
    background: transparent;
    resize: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-primary, #1a1a1a);
    padding: 0.625rem 0 0.625rem 1.25rem;
    font-family: inherit;
    flex: 1;
    overflow-y: auto;
}

[data-theme="dark"] .comment-input {
    color: var(--text-primary, #e5e5e5);
}

.comment-input:focus {
    outline: none;
}

.comment-input::placeholder {
    color: var(--text-muted, #999999);
    font-weight: 400;
}

[data-theme="dark"] .comment-input::placeholder {
    color: var(--text-muted, #888888);
}

.comment-input-wrapper .btn-primary {
    flex-shrink: 0;
    margin: 0 0.5rem 0.375rem 0.25rem;
    padding: 0.375rem 1rem;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.8125rem;
    background: var(--primary-color, #007aff) !important;
    color: white !important;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 56px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    height: 32px;
    box-shadow: none;
    letter-spacing: 0.01em;
}

.comment-input-wrapper .btn-primary:hover {
    background: var(--primary-hover, #0051cc) !important;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
}

.comment-input-wrapper .btn-primary:active {
    transform: scale(0.96);
}

.comment-input-wrapper .btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Reply Form - also messenger style */
.reply-form {
    margin-top: 0.75rem;
    margin-left: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-light, #e9ecef);
}

[data-theme="dark"] .reply-form {
    border-left-color: var(--border-medium, #3a3a3a);
}

.reply-form .comment-input-wrapper {
    margin-top: 0.25rem;
    border-radius: 20px;
}

.reply-form .comment-input {
    min-height: 36px;
    max-height: 120px;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 0.875rem;
}

.reply-form .btn-primary {
    margin: 0 0.375rem 0.25rem 0.25rem;
    padding: 0.3rem 0.875rem;
    font-size: 0.8125rem;
    min-width: 52px;
    height: 28px;
}

/* =============================================
   Comment List - Community Style (DC/Reddit)
   ============================================= */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comment-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light, #f0f0f0);
    position: relative;
}

.comment-item:last-child {
    border-bottom: none;
}

/* 대댓글 들여쓰기 */
.comment-item.is-reply {
    margin-left: 2.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--border-light, #e5e5e5);
    border-bottom: none;
}

[data-theme="dark"] .comment-item.is-reply {
    border-left-color: var(--border-medium, #3a3a3a);
}

.comment-item.is-deleted {
    opacity: 0.5;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

/* 상단: 이름 · 날짜 · 수정/삭제 */
.comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-primary);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-actions {
    margin-left: auto;
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.15s;
}

.comment-item:hover .comment-actions {
    opacity: 1;
}

.comment-action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.comment-action-btn:hover {
    color: var(--primary-color, #007aff);
    background: var(--bg-secondary);
}

.comment-action-btn.comment-action-delete:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}

/* 본문 */
.comment-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}

.comment-text.deleted-text {
    font-style: italic;
    color: var(--text-muted);
}

/* 수정 폼 - 본문과 동일 크기 */
.comment-text .edit-form {
    margin: 0;
}

.comment-text .edit-form textarea {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    width: 100%;
    resize: none;
    font-family: inherit;
    min-height: 0;
    max-height: 200px;
}

.comment-text .edit-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-bg-light, rgba(0, 122, 255, 0.08));
}

.edit-actions {
    display: flex;
    gap: 0.375rem;
    margin-top: 0.375rem;
    justify-content: flex-end;
}

.edit-actions button {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.15s;
}

.edit-actions button[data-action="submit-edit"] {
    background: var(--primary-color, #007aff);
    color: white;
    border-color: var(--primary-color, #007aff);
}

.edit-actions button[data-action="submit-edit"]:hover {
    opacity: 0.9;
}

.edit-actions button[data-action="cancel-edit"]:hover {
    background: var(--bg-secondary);
}

/* 하단: 하트 + 리액션 버블 + 답글 */
.comment-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* 댓글 반응: 반응 없을 땐 하트만, 있으면 이모지+개수 영역 */
.comment-reaction-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.comment-reaction-area.has-reactions .comment-heart-btn {
    display: none;
}

.comment-reaction-area:not(.has-reactions) .comment-reaction-bubbles {
    display: none;
}

.comment-reaction-bubbles.comment-reaction-trigger {
    cursor: pointer;
    padding: 0.125rem 0.25rem;
    border-radius: 12px;
    transition: background 0.15s;
}

.comment-reaction-bubbles.comment-reaction-trigger:hover {
    background: var(--bg-secondary);
}

.comment-heart-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    line-height: 1;
}

.comment-heart-btn:hover {
    color: #ef4444;
    transform: scale(1.15);
}

.comment-heart-btn .heart-emoji {
    font-size: 0.9375rem;
    line-height: 1;
}

/* 이모지 피커 (하트 위로 팝업) */
.comment-reaction-picker {
    position: absolute;
    bottom: calc(100% + 6px);
    left: -8px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 0.375rem 0.5rem;
    display: flex;
    gap: 0.125rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(4px);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    z-index: 100;
}

[data-theme="dark"] .comment-reaction-picker {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--border-medium);
}

.comment-reaction-picker.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.comment-picker-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: transform 0.15s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-picker-btn:hover {
    transform: scale(1.3);
    background: var(--bg-secondary);
}

/* 리액션 버블 (댓글용 작은 pill - 영역 클릭 시 피커) */
.comment-reaction-bubbles {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-reaction-bubbles .reaction-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0.125rem 0.375rem;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.6875rem;
    color: var(--text-secondary);
    line-height: 1;
}

.comment-reaction-bubbles .reaction-pill.my-reaction {
    background: var(--primary-bg-light, rgba(0, 122, 255, 0.1));
    border-color: var(--primary-color, #007aff);
    color: var(--primary-color, #007aff);
}

.comment-reaction-bubbles .reaction-pill .pill-emoji {
    font-size: 0.75rem;
}

.comment-reaction-bubbles .reaction-pill .pill-count {
    font-weight: 600;
}

/* 답글 버튼 */
.comment-reply-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.15s;
}

.comment-reply-btn:hover {
    color: var(--text-primary);
}

/* 빈 댓글 */
.comment-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Responsive: touch targets, readability, images */
@media (max-width: 768px) {
    .post-detail {
        padding: 1.5rem 1rem;
    }

    .post-detail img,
    .post-body img,
    .post-content img {
        max-width: 100%;
        height: auto;
    }

    .post-body iframe,
    .post-content iframe {
        max-width: 100%;
    }

    .reaction-main-btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    #reactionsContainer.has-reactions .reaction-main-btn,
    #reactionsContainer[data-has-reactions="true"] .reaction-main-btn {
        display: none !important;
        visibility: hidden !important;
    }

    .action-link {
        min-height: 44px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
    }

    .comment-input,
    .comment-input-wrapper textarea {
        min-height: 40px;
    }

    .comment-input-wrapper .btn-primary {
        min-height: 36px;
    }

    .comment-add-reaction-btn,
    .comment-reply-btn {
        min-height: 32px;
        min-width: 32px;
        padding: 4px 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Show actions always on touch (no hover) */
    .comment-actions {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .post-detail {
        padding: 1.5rem;
    }

    .post-action-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .action-right {
        justify-content: flex-end;
    }

    .comment-input-wrapper {
        border-radius: 20px;
    }

    .comment-input {
        min-height: 36px;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.9375rem;
    }

    .comment-input-wrapper .btn-primary {
        margin: 0 0.375rem 0.25rem 0.25rem;
        height: 32px;
        min-width: 52px;
    }

    .reply-form {
        margin-left: 1rem;
        padding-left: 0.75rem;
    }

    .reply-form .comment-input {
        padding: 0.5rem 0 0.5rem 0.75rem;
    }

    .reply-form .btn-primary {
        margin: 0 0.375rem 0.25rem 0.25rem;
    }
}