/* Learning Resource (long-form article) pages — shared chrome around the
   per-article content, which is rendered inside .lr-article-wrap with its
   own auto-scoped <style> block (see Articleform::scopeCss). This file only
   styles the site-branded parts: breadcrumb, hero and the wrapper's base
   typography — it never reaches into blog/landing-page templates. */

.lr-breadcrumb {
    padding: 14px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.lr-breadcrumb a {
    color: #3747FF;
    text-decoration: none;
}

.lr-breadcrumb a:hover {
    text-decoration: underline;
}

.lr-hero {
    background: linear-gradient(135deg, #1a2b5c 0%, #3747FF 100%);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.lr-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff !important;
}

.lr-hero .lr-subtitle {
    font-size: 1.05rem;
    color: #fff !important;
    opacity: 0.92;
    max-width: 760px;
    margin: 0 0 1rem;
}

.lr-hero .lr-meta {
    font-size: 0.9rem;
    color: #fff !important;
    opacity: 0.85;
}

.lr-hero .lr-meta span {
    color: #fff;
    margin-right: 1.25rem;
}

.lr-article-wrap {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #1a202c;
}

.lr-article-wrap img,
.lr-article-wrap svg {
    max-width: 100%;
    height: auto;
}

.lr-listing-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s;
}

.lr-listing-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lr-listing-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.lr-listing-card h2 a {
    color: #1a202c;
    text-decoration: none;
}

.lr-listing-card h2 a:hover {
    color: #3747FF;
}

.lr-listing-card .lr-cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3747FF;
    margin-bottom: 0.4rem;
}
