/* PUMP.ETH Article Styles */
/* These styles are specifically for text-heavy article pages, supplementing pump-style.css */

.article-shell {
    width: min(840px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-nav {
    margin-bottom: 0.15rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.6;
}

.article-header {
    margin-bottom: 0.35rem;
}

.article-content h1 {
    font-family: var(--f-wide);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.article-content h2 {
    font-family: var(--f-wide);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    text-transform: uppercase;
    margin: 3rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--b-width) solid rgba(10, 10, 10, 0.15);
    line-height: 1.2;
}

.article-content h3 {
    font-family: var(--f-wide);
    font-size: 1.15rem;
    text-transform: uppercase;
    margin: 2.2rem 0 0.8rem;
    line-height: 1.3;
}

.article-content p {
    margin: 0 0 1.4rem;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--c-ink);
    background: rgba(255, 255, 255, 0.25);
    font-style: italic;
    font-size: 1.1rem;
}

.article-content code {
    font-family: var(--f-tech);
    background: rgba(10, 10, 10, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-content pre {
    margin: 0 0 1.5rem;
    padding: 1rem 1.2rem;
    border: var(--b-width) solid var(--c-ink);
    border-radius: var(--r-inner);
    background: rgba(255, 255, 255, 0.22);
    overflow-x: auto;
}

.article-content pre code {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
}

.article-content th,
.article-content td {
    padding: 1rem 1.2rem;
    border: var(--b-width) solid var(--c-ink);
    text-align: left;
}

.article-content th {
    background: rgba(255, 255, 255, 0.3);
    font-family: var(--f-wide);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.article-content a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity var(--transition-smooth);
}

.article-content a:hover {
    opacity: 0.7;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-ink);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.article-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    border-radius: var(--r-inner);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    border-radius: var(--r-inner);
}
