/* missing-cash-flow.css — article-specific styles for the gated research page
   (research/missing-cash-flow/index.php). Extracted from the inline <style> block.
   Hand-written CSS (not compiled from SCSS); load order: plugins.css → style.css
   → missing-cash-flow.css. */

.article-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    font-family: 'Nunito', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.75;
}
.article-container h1 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #131629;
    margin-bottom: 6px;
    line-height: 1.25;
}
.article-container .subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 24px;
}
.article-container .byline {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 40px;
}
.article-container .byline a {
    color: #427eb8;
    text-decoration: none;
}
.article-container .byline a:hover {
    text-decoration: underline;
}
.article-container h2 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #131629;
    margin-top: 48px;
    margin-bottom: 16px;
}
.article-container h3 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #131629;
    margin-top: 36px;
    margin-bottom: 12px;
}
.article-container p {
    margin-bottom: 18px;
    text-align: justify;
}
.article-container blockquote {
    font-weight: 700;
    color: #131629;
    margin: 24px 0 24px 30px;
    padding: 0;
    border: none;
    font-size: 1rem;
}
.article-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 24px;
    font-size: 0.9rem;
}
.article-container thead th {
    background: #f4f6f9;
    color: #131629;
    font-weight: 700;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
}
.article-container thead th:first-child {
    text-align: left;
}
.article-container tbody td {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.article-container tbody td:first-child {
    text-align: left;
}
.article-container tr.highlight {
    background: #e8eff7;
    font-weight: 700;
}
.article-container tr.exit-row {
    background: #e8eff7;
}
.article-container tr.exit-row td:first-child {
    font-weight: 700;
}
.article-container hr {
    border: none;
    border-top: 3px solid #427eb8;
    width: 80px;
    margin: 48px 0;
}
.article-container .disclaimer {
    font-size: 0.82rem;
    color: #999;
    font-style: italic;
    margin-top: 40px;
    line-height: 1.6;
}
.article-container .disclaimer a {
    color: #427eb8;
    text-decoration: none;
}
.article-container .disclaimer a:hover {
    text-decoration: underline;
}

/* TL;DR box */
.tldr-box {
    background: #f8f9fb;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #427eb8;
    border-radius: 4px;
    padding: 24px 28px;
    margin: 0 0 40px;
}
.tldr-box .tldr-label {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: #427eb8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.tldr-box p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    text-align: justify;
}
.tldr-box p:last-child {
    margin-bottom: 0;
}

/* Email gate */
.article-gate {
    position: relative;
    margin-top: -120px;
    padding-top: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%);
}
.article-gate-inner {
    background: #fff;
    text-align: center;
    padding: 40px 30px 50px;
}
.article-gate-inner h3 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    color: #131629;
    margin-bottom: 8px;
}
.article-gate-inner p {
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.gate-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.gate-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
}
.gate-form button {
    padding: 12px 28px;
    background: #427eb8;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.gate-form button:hover {
    background: #356a9e;
}
.gate-note {
    font-size: 0.78rem;
    color: #999;
    margin-top: 12px;
}
.gate-hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Breadcrumb styling */
.breadcrumb-bar {
    background: #f4f6f9;
    padding: 12px 0;
    font-size: 0.85rem;
}
.breadcrumb-bar a {
    color: #427eb8;
    text-decoration: none;
}
.breadcrumb-bar a:hover {
    text-decoration: underline;
}
.breadcrumb-bar span {
    color: #999;
    margin: 0 6px;
}

/* Download CTA */
.download-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fb;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}
.download-cta a {
    display: inline-block;
    padding: 12px 32px;
    background: #427eb8;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.download-cta a:hover {
    background: #356a9e;
}
.download-cta p {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 600px) {
    .article-container h1 { font-size: 1.6rem; }
    .article-container h2 { font-size: 1.25rem; }
    .article-container { padding: 40px 16px 60px; }
    .article-container table { font-size: 0.78rem; }
    .article-container thead th, .article-container tbody td { padding: 6px 6px; }
}
