/* Source: templates/page-admin-guide.php block 1 */
.fn-guide-password-page {
        max-width: 720px;
        margin: 0 auto;
        padding: 90px 20px;
        font-family: "Outfit", Arial, sans-serif;
        color: #1C1C1C;
    }

    .fn-guide-password-card {
        padding: 32px;
        border-radius: 22px;
        background: #ffffff;
        border: 1px solid rgba(28, 28, 28, 0.08);
        box-shadow: 0 18px 52px rgba(0,0,0,0.08);
    }

    .fn-guide-password-eyebrow {
        margin: 0 0 10px;
        color: #1D4486;
        font-size: 12px;
        line-height: 1;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .fn-guide-password-card h1 {
        margin: 0 0 12px;
        color: #1D4486;
        font-size: clamp(36px, 6vw, 58px);
        line-height: 0.95;
        font-weight: 900;
        letter-spacing: -0.04em;
    }

    .fn-guide-password-card p {
        margin: 0 0 20px;
        color: #555;
        font-size: 15px;
        line-height: 1.65;
    }

    .fn-guide-password-card form {
        display: grid;
        gap: 12px;
    }

    .fn-guide-password-card label {
        display: grid;
        gap: 8px;
        color: #1C1C1C;
        font-size: 14px;
        line-height: 1.35;
        font-weight: 800;
    }

    .fn-guide-password-card input[type="password"] {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid rgba(28, 28, 28, 0.18);
        border-radius: 12px;
        background: #ffffff;
        color: #1C1C1C;
        font-size: 15px;
        outline: none;
    }

    .fn-guide-password-card input[type="password"]:focus {
        border-color: rgba(29, 68, 134, 0.50);
        box-shadow: 0 0 0 3px rgba(29, 68, 134, 0.10);
    }

    .fn-guide-password-card input[type="submit"] {
        width: fit-content;
        min-height: 46px;
        padding: 12px 22px;
        border: 0;
        border-radius: 999px;
        background: #1D4486;
        color: #ffffff;
        font-size: 14px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
    }

    .fn-guide-password-card input[type="submit"]:hover {
        background: #C12135;
    }


/* Source: templates/page-admin-guide.php block 2 */
/* =========================================================
   FILNATION ADMIN GUIDE PAGE
========================================================= */

.fn-guide-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 20px;
    font-family: "Outfit", Arial, sans-serif;
    color: #1C1C1C;
}

.fn-guide-hero {
    margin-bottom: 42px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-eyebrow {
    margin: 0 0 10px;
    color: #1D4486;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fn-guide-hero h1 {
    margin: 0 0 14px;
    color: #1D4486;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.fn-guide-hero p {
    max-width: 820px;
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
}

/* =========================================================
   SECTIONS
========================================================= */

.fn-guide-section {
    margin-bottom: 48px;
}

.fn-guide-section-header {
    max-width: 820px;
    margin-bottom: 18px;
}

.fn-guide-section-header h2 {
    margin: 0 0 8px;
    color: #1D4486;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.fn-guide-section-header p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

/* =========================================================
   QUICK REFERENCE
========================================================= */

.fn-guide-reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    border-top: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-reference-block {
    padding: 18px 0 0;
}

.fn-guide-reference-block h3 {
    margin: 0 0 10px;
    color: #1D4486;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.fn-guide-reference-block ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fn-guide-reference-block li {
    position: relative;
    padding-left: 24px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.fn-guide-reference-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(29, 68, 134, 0.35);
}

.fn-guide-reference-block strong {
    color: #1D4486;
}

/* =========================================================
   LINK GROUPS
   These are the only card-style areas because they are clickable navigation.
========================================================= */

.fn-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 48px;
    align-items: start;
}

.fn-guide-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(28, 28, 28, 0.08);
    box-shadow: 0 12px 34px rgba(0,0,0,0.055);
}

.fn-guide-card h2 {
    margin: 0;
    color: #1D4486;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.fn-guide-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
}

.fn-guide-links {
    display: grid;
    gap: 9px;
}

.fn-guide-links a {
    position: relative;
    display: block;
    padding: 13px 38px 13px 14px;
    border-radius: 12px;
    background: #f7f8fb;
    color: #1C1C1C;
    text-decoration: none !important;
    border: 1px solid rgba(28, 28, 28, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fn-guide-links a::after {
    content: "→";
    position: absolute;
    right: 14px;
    top: 14px;
    color: #1D4486;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
}

.fn-guide-links a:hover {
    transform: translateY(-1px);
    background: rgba(29, 68, 134, 0.08);
    border-color: rgba(29, 68, 134, 0.20);
    color: #1D4486;
}

.fn-guide-links a span {
    display: block;
    margin-bottom: 4px;
    color: inherit;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
}

.fn-guide-links a small {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

/* =========================================================
   NUMBERED SETUP WORKFLOW
========================================================= */

.fn-guide-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: guide-step;
    border-top: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-steps li {
    position: relative;
    min-height: 44px;
    padding: 16px 0 16px 52px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
    color: #1C1C1C;
    font-size: 15px;
    line-height: 1.65;
    counter-increment: guide-step;
}

.fn-guide-steps li::before {
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(29, 68, 134, 0.10);
    color: #1D4486;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.fn-guide-steps strong {
    color: #1D4486;
}

/* =========================================================
   EMAIL REFERENCE
========================================================= */

.fn-guide-email-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-email-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.fn-guide-email-table th,
.fn-guide-email-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    color: #1C1C1C;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.fn-guide-email-table th {
    background: #f7f8fb;
    color: #1D4486;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fn-guide-email-table tr:last-child td {
    border-bottom: 0;
}

.fn-guide-email-table strong {
    color: #1D4486;
}

.fn-guide-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.08);
    color: #1C1C1C;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.fn-guide-pill.is-green {
    background: rgba(26, 127, 55, 0.10);
    color: #1a7f37;
}

.fn-guide-pill.is-blue {
    background: rgba(29, 68, 134, 0.10);
    color: #1D4486;
}

/* =========================================================
   CHECKLIST
========================================================= */

.fn-guide-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-checklist li {
    position: relative;
    min-height: 44px;
    padding: 14px 0 14px 36px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
    color: #1C1C1C;
    font-size: 14px;
    line-height: 1.55;
}

.fn-guide-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: #ffffff;
    border: 2px solid #1D4486;
    box-sizing: border-box;
}

/* =========================================================
   HOW-TO GUIDES
========================================================= */

.fn-guide-howto-list {
    display: grid;
    gap: 26px;
}

.fn-guide-howto {
    padding: 0 0 26px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-howto:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.fn-guide-howto h3 {
    margin: 0 0 12px;
    color: #1D4486;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.fn-guide-howto ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
    color: #1C1C1C;
    font-size: 14px;
    line-height: 1.6;
}

.fn-guide-howto li::marker {
    color: #1D4486;
    font-weight: 900;
}

/* =========================================================
   COMMON TASKS / TROUBLESHOOTING
========================================================= */

.fn-guide-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    border-top: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-note {
    padding: 18px 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
}

.fn-guide-note h3 {
    margin: 0 0 8px;
    color: #1D4486;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.fn-guide-note p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .fn-guide-grid,
    .fn-guide-checklist,
    .fn-guide-notes-grid,
    .fn-guide-reference-grid {
        grid-template-columns: 1fr;
    }

    .fn-guide-page {
        padding: 52px 16px;
    }

    .fn-guide-card {
        padding: 20px;
    }
}
