/* Static Resources / Industries pages — guide layout */

.site-page-view {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 20px 64px;
}

.site-page-view .breadcrumbs {
    font-size: 15px;
    margin-bottom: 24px;
    color: #555;
}

.site-page-view .breadcrumbs a {
    color: #0a3542;
    text-decoration: none;
}

.site-page-view .breadcrumbs a:hover {
    text-decoration: underline;
}

.site-page-view h1 {
    color: #78c450;
    font-size: clamp(1.75rem, 4vw, 2.125rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.site-page-view .featured-image {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e3df;
}

.site-page-view .featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.site-page-view .page-body {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.site-page-view .page-body img {
    max-width: 100%;
    height: auto;
}

/* ── Guide layout components ── */

.site-guide {
    margin-top: 8px;
}

.site-guide__meta {
    font-size: 14px;
    color: #777;
    margin: 0 0 16px;
}

.site-guide__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a3542;
    background: #eef8e8;
    border: 1px solid #c8e6b4;
    border-radius: 4px;
    padding: 4px 10px;
    margin: 0 0 16px;
}

.site-guide__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #444;
    margin: 0 0 32px;
    max-width: 72ch;
}

.site-guide__toc {
    background: #f8faf7;
    border: 1px solid #e1e3df;
    border-left: 4px solid #78c450;
    border-radius: 6px;
    padding: 20px 24px;
    margin: 0 0 40px;
}

.site-guide__toc-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a3542;
    margin: 0 0 12px;
}

.site-guide__toc-list {
    margin: 0;
    padding-left: 1.25rem;
    columns: 1;
}

.site-guide__toc-list li {
    margin-bottom: 6px;
    break-inside: avoid;
}

.site-guide__toc-list a {
    color: #0a3542;
    text-decoration: none;
    font-size: 15px;
}

.site-guide__toc-list a:hover {
    color: #78c450;
    text-decoration: underline;
}

@media (min-width: 640px) {
    .site-guide__toc-list {
        columns: 2;
        column-gap: 32px;
    }
}

.site-guide__section {
    margin-bottom: 48px;
    scroll-margin-top: 24px;
}

.site-guide__section > h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a3542;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef0ec;
    line-height: 1.3;
}

.site-guide__section > h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    margin: 28px 0 10px;
    line-height: 1.35;
}

.site-guide__section > h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 20px 0 8px;
}

.site-guide__section p {
    margin: 0 0 16px;
}

.site-guide__section ul:not(.site-guide__checklist):not(.site-guide__highlights),
.site-guide__section ol:not(.site-guide__toc-list) {
    margin: 0 0 16px;
    padding-left: 1.35rem;
}

.site-guide__section li {
    margin-bottom: 6px;
}

.site-guide__callout {
    background: #f8faf7;
    border: 1px solid #e1e3df;
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0;
}

.site-guide__callout--summary {
    background: #eef8e8;
    border-color: #c8e6b4;
}

.site-guide__callout--note {
    background: #f5f8fa;
    border-left: 4px solid #0a3542;
}

.site-guide__callout-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0a3542;
    margin: 0 0 10px;
}

.site-guide__callout p:last-child,
.site-guide__callout ul:last-child,
.site-guide__callout ol:last-child {
    margin-bottom: 0;
}

.site-guide__checklist {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
}

.site-guide__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.site-guide__checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 16px;
    height: 16px;
    background: #78c450;
    border-radius: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.site-guide__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.site-guide__highlights li {
    background: #f8faf7;
    border: 1px solid #e1e3df;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.site-guide__highlights strong {
    display: block;
    color: #0a3542;
    margin-bottom: 4px;
}

.site-guide__table-wrap {
    overflow-x: auto;
    margin: 20px 0 24px;
    border: 1px solid #e1e3df;
    border-radius: 6px;
}

.site-guide__table-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 15px;
}

.site-guide__table-wrap th,
.site-guide__table-wrap td {
    border: 1px solid #e1e3df;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.site-guide__table-wrap th {
    background: #f0f4ee;
    color: #0a3542;
    font-weight: 600;
    white-space: nowrap;
}

.site-guide__table-wrap tr:nth-child(even) td {
    background: #fafbfa;
}

.site-guide__faq {
    border-top: 2px solid #eef0ec;
    padding-top: 8px;
}

.site-guide__faq-item {
    border-bottom: 1px solid #e8ebe6;
    padding: 20px 0;
}

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

.site-guide__faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0a3542;
    margin: 0 0 8px;
}

.site-guide__faq-item p {
    margin: 0;
    color: #444;
}

.site-guide__cta {
    background: linear-gradient(135deg, #eef8e8 0%, #f8faf7 100%);
    border: 1px solid #c8e6b4;
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 48px;
    text-align: center;
}

.site-guide__cta h2 {
    font-size: 1.375rem;
    color: #0a3542;
    margin: 0 0 10px;
    border: none;
    padding: 0;
}

.site-guide__cta p {
    margin: 0;
    color: #444;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

/* Section index (resources / industries listing) */

.site-page-index {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 20px 56px;
}

.site-page-index h1 {
    color: #78c450;
    font-size: 32px;
    margin: 0 0 8px;
}

.site-page-index .breadcrumbs {
    font-size: 15px;
    margin-bottom: 24px;
}

.site-page-index .breadcrumbs a {
    color: #0a3542;
    text-decoration: none;
}

.site-page-index .page-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.site-page-index .page-card {
    border: 1px solid #e1e3df;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.15s ease;
}

.site-page-index .page-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.site-page-index .page-card__img {
    height: 140px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-page-index .page-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.site-page-index .page-card__body {
    padding: 16px;
}

.site-page-index .page-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #78c450;
    margin: 0 0 8px;
}

.site-page-index .page-card__excerpt {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}
