/* ============================================================
   DESKTOP ARTICLE PAGE STYLES
   BEM block: article-desktop
   Content area: 864px centered
   ============================================================ */

/* ---------- Base ---------- */
.article-desktop {
    font-family: 'Inter', sans-serif;
    color: rgba(0, 0, 0, 0.88);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .article-desktop {
        display: none !important;
    }
}

/* ---------- Hero ---------- */
.article-desktop__hero {
    width: 864px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 92px;
    padding-bottom: 20px;
}

/* ---------- Breadcrumbs ---------- */
.article-desktop__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-desktop__breadcrumbs svg {
    flex-shrink: 0;
}

.article-desktop__breadcrumbs-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #8c8c8c;
    white-space: nowrap;
    text-decoration: none;
}

.article-desktop__breadcrumbs-text:hover {
    text-decoration: underline;
}

.article-desktop__breadcrumbs-text--active {
    color: #465DA6;
}

/* ---------- Title ---------- */
.article-desktop__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #000;
    margin: 0;
}

/* ---------- Subtitle / Summary ---------- */
.article-desktop__summary {
    display: flex;
    gap: 16px;
    padding: 12px 16px 24px 16px;
}

.article-desktop__summary-bar {
    width: 4px;
    flex-shrink: 0;
    background: #d9d9d9;
    border-radius: 600px;
    align-self: stretch;
}

.article-desktop__summary-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.article-desktop__summary-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin: 0;
}

/* ---------- Tags ---------- */
.article-desktop__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-desktop__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 16px;
    background: #EBF1FF;
    color: #465DA6;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}

.article-desktop__tag:hover {
    opacity: 0.85;
}

/* ---------- Author Card ---------- */
.article-desktop__author-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    align-items: flex-start;
}

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

.article-desktop__author-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.article-desktop__author-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.article-desktop__author-bio {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #595959;
    margin: 0;
}

.article-desktop__author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #5E69A8;
    text-decoration: none;
}

.article-desktop__author-link:hover {
    text-decoration: underline;
    color: #5E69A8;
}

.article-desktop__follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #D5D7DA;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #414651;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    align-self: flex-start;
}

.article-desktop__follow-btn:hover {
    background: #f9f9f9;
}

.article-desktop__follow-btn--following {
    background: #465DA6;
    border-color: #465DA6;
    color: #fff;
}

.article-desktop__follow-btn--following:hover {
    opacity: 0.9;
    background: #465DA6;
}

/* ---------- Actions Row ---------- */
.article-desktop__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px;
}

.article-desktop__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #595959;
}

.article-desktop__action-btn:hover {
    color: #465DA6;
}

.article-desktop__action-btn svg {
    width: 20px;
    height: 20px;
}

/* ---------- Read Aloud Button (plain icon in action row per Figma) ---------- */
.article-desktop__read-aloud-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #595959;
    transition: color 0.2s ease;
}

.article-desktop__read-aloud-btn .tts-icon {
    display: inline-flex;
    align-items: center;
}

.article-desktop__read-aloud-btn .tts-icon svg {
    width: 20px;
    height: 20px;
}

.article-desktop__read-aloud-btn .tts-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.article-desktop__read-aloud-btn:hover {
    color: #465DA6;
}

.article-desktop__read-aloud-btn[data-tts-state="playing"] {
    color: #465DA6;
}

.article-desktop__read-aloud-btn[data-tts-state="loading"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.article-desktop__read-aloud-btn[data-tts-state="failed"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    color: #999;
}

/* SL25 desktop read-aloud: same plain icon style as regular article per Figma */
.article-sl25-desktop__read-aloud-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #595959;
    transition: color 0.2s ease;
}

.article-sl25-desktop__read-aloud-btn .tts-icon {
    display: inline-flex;
    align-items: center;
}

.article-sl25-desktop__read-aloud-btn .tts-icon svg {
    width: 20px;
    height: 20px;
}

.article-sl25-desktop__read-aloud-btn .tts-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.article-sl25-desktop__read-aloud-btn:hover {
    color: #465DA6;
}

.article-sl25-desktop__read-aloud-btn[data-tts-state="playing"] {
    color: #465DA6;
}

.article-sl25-desktop__read-aloud-btn[data-tts-state="loading"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.article-sl25-desktop__read-aloud-btn[data-tts-state="failed"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    color: #999;
}

.article-desktop__date {
    flex: 1;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #8c8c8c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Article Content ---------- */
.article-desktop__content {
    width: 864px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 12px;
    padding-bottom: 32px;
    overflow: hidden;
}

.article-desktop__content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    margin: 0;
}

.article-desktop__content h2,
.article-desktop__content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.article-desktop__content img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.article-desktop__content figure {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.article-desktop__content figcaption {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8c8c8c;
}

.article-desktop__content blockquote,
.article-desktop__content .article-desktop__callout {
    background: #F6F9FF;
    border: 1px solid #B5BEDB;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #1C2542;
}

.article-desktop__content blockquote p,
.article-desktop__content .article-desktop__callout p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #1C2542;
    margin: 0;
}

/* WYSIWYG body: 32px between top-level blocks, 16px after h2/h3 */
.article-desktop__article-body > * + * {
    margin-top: 32px;
}

.article-desktop__article-body h2 + *,
.article-desktop__article-body h3 + * {
    margin-top: 16px;
}

/* ---------- Unlock (non-signed-up) card ---------- */
/* Figma node 637:1329 — Article Page - Unlock */
.article-desktop__unlock-wrapper {
    position: relative;
    width: 100%;
}

.article-desktop__article-body--truncated {
    max-height: 220px;
    overflow: hidden;
}

.article-desktop__unlock-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 40%);
    pointer-events: none;
}

.article-desktop__unlock-card {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 20px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.article-desktop__unlock-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.article-desktop__unlock-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.article-desktop__unlock-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #000;
    text-align: center;
}

.article-desktop__unlock-subtitle {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8C8C8C;
    text-align: center;
}

.article-desktop__unlock-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 598px;
    max-width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    background: #465DA6;
    border: 1px solid #465DA6;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.article-desktop__unlock-signup:hover {
    background: #3c5195;
    border-color: #3c5195;
    color: #fff;
}

.article-desktop__unlock-login {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.article-desktop__unlock-login span {
    color: #8C8C8C;
    font-weight: 400;
}

.article-desktop__unlock-login a {
    color: #5E69A8;
    font-weight: 600;
    text-decoration: none;
}

.article-desktop__unlock-login a:hover {
    text-decoration: underline;
}

/* ---------- Explore Topics ---------- */
.article-desktop__explore {
    width: 864px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
}

.article-desktop__explore-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.article-desktop__explore-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.article-desktop__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #D5D7DA;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.88);
    text-decoration: none;
    white-space: nowrap;
}

.article-desktop__chip:hover {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.88);
}

/* ---------- Related Contents ---------- */
.article-desktop__related {
    width: 864px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 32px;
}

.article-desktop__related-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.article-desktop__related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.article-desktop__related-card {
    width: 416px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.article-desktop__related-card:hover {
    color: inherit;
}

.article-desktop__related-card:hover .article-desktop__related-card-title {
    color: #465DA6;
}

.article-desktop__related-card-img {
    width: 100%;
    height: 236px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-desktop__related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-desktop__related-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #EAF8F6;
    color: #269387;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 4px 12px;
    border-radius: 16px;
}

.article-desktop__related-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #1C1C1C;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.article-desktop__related-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 375px;
}

.article-desktop__related-card-author {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-desktop__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
}

.article-desktop__dot--sm {
    width: 2px;
    height: 2px;
}

.article-desktop__related-card-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.45);
    white-space: nowrap;
}

/* ---------- Comments Section (Figma: w 864, padding 48 0, gap 16; tabs centered) ---------- */
.article-desktop__comments {
    width: 864px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px 0;
    overflow: hidden;
}

.article-desktop__comments-tabs {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    width: 384px;
    align-self: center;
}

.article-desktop__comments-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #8c8c8c;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.article-desktop__comments-tab--active {
    background: #fff;
    color: #262626;
    border: 1px solid #fff;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}

/* Textarea */
.article-desktop__comment-input {
    width: 100%;
    min-height: 112px;
    padding: 10px 14px;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    resize: vertical;
}

.article-desktop__comment-input::placeholder {
    color: #717680;
}

.article-desktop__comment-hint {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #535862;
    margin: 0;
}

.article-desktop__comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.article-desktop__comment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.article-desktop__comment-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.article-desktop__comment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    background: #465DA6;
    border: 1px solid #465DA6;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.article-desktop__comment-submit:hover {
    background: #3e5494;
    border-color: #3e5494;
}

.article-desktop__comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.article-desktop__comment-spinner {
    width: 20px;
    height: 20px;
    border-width: 2px;
    color: #465DA6;
}

/* Comment header */
.article-desktop__comments-header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.article-desktop__comments-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
    margin: 0;
}

.article-desktop__comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 16px;
    background: #EBF1FF;
    color: #465DA6;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

/* Comment item */
.article-desktop__comment--collapsed {
    display: none !important;
}

.article-desktop__comment {
    display: flex;
    gap: 12px;
    width: 100%;
    width: 100%;
}

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

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

.article-desktop__comment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-desktop__comment-author {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
}

.article-desktop__comment-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #8c8c8c;
}

.article-desktop__comment-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #262626;
    margin: 0;
}

.article-desktop__comment-actions {
    display: flex;
    gap: 24px;
    padding: 8px 4px;
}

.article-desktop__comment-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #595959;
}

.article-desktop__comment-action-btn:hover {
    color: #465DA6;
}

/* Like button with count */
.article-desktop__comment-like {
    gap: 6px;
    width: auto;
    padding: 2px 6px;
    border-radius: 4px;
}

.article-desktop__comment-like--active {
    color: #465DA6;
}

.article-desktop__comment-like--active svg {
    fill: #465DA6;
}

.article-desktop__comment-like-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    color: inherit;
}

/* Inline edit textarea */
.article-desktop__comment-edit-input {
    width: 100%;
    min-height: 80px;
    padding: 10px 14px;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #262626;
    resize: vertical;
    margin: 8px 0;
}

/* Menu dropdown (positioned from dots button) */
.article-desktop__comment-menu {
    position: relative;
    display: inline-flex;
}

.article-desktop__comment-menu-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 120px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(10, 13, 18, 0.1);
    padding: 4px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.article-desktop__comment-menu-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #414651;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.article-desktop__comment-menu-item:hover {
    background: #F5F5F5;
}

.article-desktop__comment-menu-item--danger {
    color: #B42318;
}

.article-desktop__comment-menu-item--danger:hover {
    background: #FEF3F2;
}

/* Edit / Delete action rows */
.article-desktop__comment-actions--edit,
.article-desktop__comment-actions--delete {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.article-desktop__comment-delete-prompt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #535862;
    flex: 1;
}

.article-desktop__comment-edit-cancel,
.article-desktop__comment-delete-cancel,
.article-desktop__comment-edit-save,
.article-desktop__comment-delete-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
}

.article-desktop__comment-edit-cancel,
.article-desktop__comment-delete-cancel {
    background: #fff;
    border: 1px solid #D5D7DA;
    color: #414651;
}

.article-desktop__comment-edit-cancel:hover,
.article-desktop__comment-delete-cancel:hover {
    background: #F9F9F9;
}

.article-desktop__comment-edit-save {
    background: #465DA6;
    border: 1px solid #465DA6;
    color: #fff;
}

.article-desktop__comment-edit-save:hover {
    background: #3e5494;
    border-color: #3e5494;
}

.article-desktop__comment-delete-confirm {
    background: #B42318;
    border: 1px solid #B42318;
    color: #fff;
}

.article-desktop__comment-delete-confirm:hover {
    background: #9a1d13;
    border-color: #9a1d13;
}

/* More Comments button */
.article-desktop__more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #D5D7DA;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #414651;
    cursor: pointer;
    text-decoration: none;
}

.article-desktop__more-btn:hover {
    background: #f9f9f9;
    color: #414651;
}

/* ---------- More from the Commons ---------- */
/* Figma: w 864, padding 20 0 48 0, flex-direction column, align-items flex-start, gap 12 */
.article-desktop__more-commons {
    width: 864px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0 48px 0;
}

.article-desktop__more-commons-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.article-desktop__more-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
    width: 100%;
}

.article-desktop__more-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

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

.article-desktop__more-item:hover {
    color: inherit;
}

.article-desktop__more-item:hover .article-desktop__more-item-title {
    color: #465DA6;
}

.article-desktop__more-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 16px;
    background: #EAF8F6;
    color: #269387;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    align-self: flex-start;
}

.article-desktop__more-item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
    transition: color 0.2s;
}

.article-desktop__more-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 375px;
}

.article-desktop__more-item-author {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-desktop__more-item-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.45);
    white-space: nowrap;
}

/* ---------- Share panel (toggled via JS) ---------- */
.article-desktop__share-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.article-desktop__share-panel--active {
    display: flex;
}

/* Show all share buttons inline when the Share tab is open. The shared partial
   nests them in a Bootstrap dropdown that opened behind the content below. */
.article-desktop__share-panel .nav-item.dropdown {
    list-style: none;
    padding: 0;
    width: 100%;
}
.article-desktop__share-panel #social {
    display: none;
}
.article-desktop__share-panel .dropdown-menu {
    display: block;
    position: static;
    margin: 0;
    border: 0;
    box-shadow: none;
}

.article-desktop__share-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.article-desktop__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D5D7DA;
    background: #fff;
    color: #414651;
    text-decoration: none;
    transition: background 0.2s;
}

.article-desktop__share-link:hover {
    background: #f5f5f5;
}

