﻿/*
 * The public blog's extras (Blog.aspx / Blog.aspx.vb, 2026-09-23): category chips, the
 * share bar, older/newer links and "You might also enjoy". Site palette: purple #5e0091 /
 * #34006c / #4828a2 / #30145b, navy #003c78 with a gold #ffd700 hover like .BookButton.
 */

/* ---- Breathing room around a post's text: below the title block and above the panel under it ---- */
.BlogBodyText.lcg-post-body { margin: 1.75em 0 2.25em; }

/* ---- Category chips (both views) ---- */
.lcg-chips-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; margin: 10px 0 4px; }
a.lcg-chip {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-size: 14px; line-height: 1.4; text-decoration: none !important;
    color: #34006c !important; background: #f4eefb; border: 1px solid #d9c9ec;
    transition: background .15s, color .15s, border-color .15s;
}
a.lcg-chip:hover, a.lcg-chip:focus-visible { background: #4828a2; border-color: #4828a2; color: #fff !important; outline: none; }

/* ---- The panel under a post: author, then categories and sharing ---- */
.lcg-post-foot {
    margin: 22px 0 6px; padding: 22px 24px; border-radius: 14px;
    background: #f7f3fc; border: 1px solid #e3daf3; box-shadow: 0 2px 10px rgba(48, 20, 91, .06);
}
.lcg-author { display: flex; gap: 20px; align-items: center; }
.lcg-author-pic {
    width: 96px !important; height: 96px !important; max-width: none !important; flex: none;
    border-radius: 50% !important; object-fit: cover; float: none !important; margin: 0 !important;
    border: 3px solid #fff; box-shadow: 0 0 0 3px #5e0091, 0 4px 12px rgba(48, 20, 91, .25);
}
.lcg-author-text { min-width: 0; }
.lcg-author-name { font-family: "Gabriola", Georgia, serif; font-size: 2em; font-weight: bold; line-height: 1; color: #34006c; }
.lcg-author-role { font-size: 15px; color: #4a4458; margin: 4px 0 12px; }
.lcg-author-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.lcg-author-actions .BookButton { font-size: 15px; padding: 9px 22px; text-decoration: none !important; }
.lcg-author-connect { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 14px; }
a.lcg-connect {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px;
    font-size: 14px; font-weight: 600; line-height: 1.2; text-decoration: none !important;
    color: #fff !important; background: #003c78; box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    transition: background .15s, box-shadow .15s;
}
a.lcg-connect .sub { font-weight: 400; opacity: .85; }
a.lcg-connect:hover, a.lcg-connect:focus-visible { background: #002a55; box-shadow: 0 0 0 2px #ffd700 inset; color: #ffd700 !important; outline: none; }
.lcg-foot-meta {
    margin-top: 18px; padding-top: 14px; border-top: 1px solid #e3daf3;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px;
}
.lcg-foot-meta .lcg-chips-row, .lcg-foot-meta .lcg-share { margin: 0; }
/* One label style for Connect, Categories and Share. */
.lcg-foot-label, .lcg-chips-label, .lcg-share-label {
    font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .08em;
    text-transform: uppercase; color: #6b6280; margin-right: 4px;
}

/* ---- Share bar ---- */
.lcg-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 18px 0 8px; }
.lcg-share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
    background: #003c78; color: #fff !important; font-size: 17px; text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18); transition: transform .15s, box-shadow .15s, background .15s;
}
.lcg-share-btn:hover, .lcg-share-btn:focus-visible { background: #002a55; box-shadow: 0 0 0 2px #ffd700 inset, 0 4px 10px rgba(0, 0, 0, .25); transform: translateY(-1px); outline: none; }
.lcg-share-btn i { line-height: 1; }
.lcg-share-copied { font-size: 14px; color: #34006c; min-width: 1px; }

/* ---- Older / newer ---- */
.lcg-more { margin: 26px 0 2.5em; }
.lcg-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lcg-prevnext a {
    display: flex; flex-direction: column; gap: 4px; padding: 14px 18px; border-radius: 12px;
    background: #fff; border: 1px solid #e3daf3; text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(48, 20, 91, .08); transition: box-shadow .15s, transform .15s, border-color .15s;
}
.lcg-prevnext a:hover, .lcg-prevnext a:focus-visible { box-shadow: 0 6px 18px rgba(48, 20, 91, .18); border-color: #c9bde8; transform: translateY(-1px); outline: none; }
.lcg-prevnext a.newer { text-align: right; grid-column: 2; }
.lcg-prevnext .dir { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #6b6280; }
.lcg-prevnext .t { font-family: "Gabriola", Georgia, serif; font-size: 1.45em; font-weight: bold; line-height: 1.1; color: #34006c; }

/* ---- You might also enjoy ---- */
.lcg-related { margin: 30px 0 10px; }
.lcg-related-title {
    font-family: "Gabriola", Georgia, serif !important; font-size: 2em !important; line-height: 1 !important;
    font-weight: bold; color: #5e0091; text-align: center; margin: 0 0 16px !important;
}
.lcg-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
a.lcg-related-card {
    display: flex; flex-direction: column; background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #e3daf3; text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(48, 20, 91, .08); transition: box-shadow .15s, transform .15s;
}
a.lcg-related-card:hover, a.lcg-related-card:focus-visible { box-shadow: 0 8px 22px rgba(48, 20, 91, .2); transform: translateY(-2px); outline: none; }
.lcg-related-card .pic { display: block; aspect-ratio: 4 / 3; background: #f4eefb; overflow: hidden; padding: 6px; }
.lcg-related-card .pic img {
    /* Undo the blog body's picture rules (float, margins, size caps) for these cards. */
    width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important;
    object-fit: contain; float: none !important; margin: 0 !important; border-radius: 4px !important; display: block;
}
.lcg-related-card .t { padding: 12px 14px 2px; font-family: "Gabriola", Georgia, serif; font-size: 1.45em; font-weight: bold; line-height: 1.1; color: #34006c; }
.lcg-related-card .d { padding: 0 14px 14px; font-size: 13px; color: #6b6280; }

@media (max-width: 760px) {
    .lcg-post-foot { padding: 18px 16px; }
    .lcg-author { align-items: flex-start; gap: 14px; }
    .lcg-author-pic { width: 72px !important; height: 72px !important; }
    .lcg-foot-meta { flex-direction: column; align-items: flex-start; }
    .lcg-prevnext { grid-template-columns: 1fr; }
    .lcg-prevnext a.newer { grid-column: 1; }
    .lcg-related-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .lcg-share-btn, .lcg-prevnext a, a.lcg-related-card, a.lcg-chip { transition: none; }
    .lcg-share-btn:hover, .lcg-prevnext a:hover, a.lcg-related-card:hover { transform: none; }
}

/* ---- The list (Blog.aspx.vb RenderList): browse bar, featured post, card grid, page links ---- */
.lcg-list { width: min(1200px, 100%); margin: 0 auto; padding: 2.2em 16px 2.5em; box-sizing: border-box; }
.lcg-browse { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; margin: 6px 0 18px; }
.lcg-search { display: flex; flex: 1 1 280px; max-width: 460px; border: 1px solid #c9bde8; border-radius: 999px; background: #fff; overflow: hidden; box-shadow: 0 1px 4px rgba(48, 20, 91, .06); }
.lcg-search input { flex: 1; min-width: 0; border: 0; padding: 10px 16px; font: inherit; font-size: 16px; background: transparent; outline: none; }
.lcg-search button { border: 0; background: #003c78; color: #fff; padding: 0 18px; font-size: 16px; cursor: pointer; }
.lcg-search button:hover, .lcg-search button:focus-visible { background: #002a55; color: #ffd700; outline: none; }
.lcg-search:focus-within { box-shadow: 0 0 0 3px rgba(72, 40, 162, .25); border-color: #4828a2; }
.lcg-topics { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 14px; color: #6b6280; }
.lcg-topics select { font: inherit; font-size: 15px; color: #34006c; padding: 9px 12px; border: 1px solid #c9bde8; border-radius: 10px; background: #fff; max-width: 70vw; }
.lcg-list-note { margin: 0 0 16px; font-size: 15px; color: #4a4458; }
.lcg-list-empty { margin: 30px 0; font-size: 17px; color: #4a4458; text-align: center; }

.lcg-post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e3daf3; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(48, 20, 91, .07); transition: box-shadow .15s, transform .15s; }
.lcg-post-card:hover { box-shadow: 0 10px 26px rgba(48, 20, 91, .18); transform: translateY(-2px); }
.lcg-post-card .pic { display: block; aspect-ratio: 4 / 3; background: #f4eefb; padding: 8px; overflow: hidden; }
.lcg-post-card .pic img {
    /* Undo the blog body's picture rules (float, margins, size caps). Pictures often carry
       their own title text, so they are shown whole rather than cropped. */
    width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important;
    object-fit: contain; float: none !important; margin: 0 !important; border-radius: 6px !important; display: block;
}
.lcg-post-card .body { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px 18px; flex: 1; }
.lcg-post-card .t { margin: 0 !important; padding: 0; text-align: left !important; font-family: "Gabriola", Georgia, serif !important; font-size: 1.55em !important; line-height: 1.08 !important; letter-spacing: 0; font-weight: bold; }
.lcg-post-card .t a { color: #34006c !important; text-decoration: none !important; }
.lcg-post-card .t a:hover, .lcg-post-card .t a:focus-visible { color: #5e0091 !important; text-decoration: underline !important; }
.lcg-post-card .meta { font-size: 13px; color: #6b6280; }
.lcg-post-card .x { margin: 2px 0 0; font-size: 15px; line-height: 1.5; color: #3d3746; }
.lcg-post-card .kicker { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #b8860b; }

.lcg-post-card.featured { flex-direction: row; margin-bottom: 22px; border-color: #d9c9ec; background: linear-gradient(135deg, #fff 0%, #faf6ff 100%); }
.lcg-post-card.featured .pic { flex: 0 0 46%; aspect-ratio: auto; min-height: 280px; padding: 12px; }
.lcg-post-card.featured .body { padding: 24px 28px; justify-content: center; gap: 10px; }
.lcg-post-card.featured .t { font-size: 2.2em !important; }
.lcg-post-card.featured .x { font-size: 16px; }
.lcg-post-card.featured .lcg-read { align-self: flex-start; margin-top: 6px; font-size: 15px; padding: 9px 24px; text-decoration: none !important; }

.lcg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.lcg-pager { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin: 30px 0 10px; }
.lcg-pager .nums { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.lcg-pager a, .lcg-pager span.num, .lcg-pager span.step {
    display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: 999px; font-size: 15px; font-weight: 600; text-decoration: none !important; box-sizing: border-box;
}
.lcg-pager a { background: #fff; color: #34006c !important; border: 1px solid #c9bde8; }
.lcg-pager a:hover, .lcg-pager a:focus-visible { background: #003c78; border-color: #003c78; color: #ffd700 !important; outline: none; }
.lcg-pager .num.on { background: #4828a2; color: #fff; border: 1px solid #4828a2; }
.lcg-pager .step.off { color: #b8b0c8; border: 1px solid #ece6f5; }
.lcg-pager .gap { color: #6b6280; padding: 0 2px; }

@media (max-width: 980px) {
    .lcg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lcg-post-card.featured { flex-direction: column; }
    .lcg-post-card.featured .pic { flex: none; min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
    .lcg-grid { grid-template-columns: 1fr; }
    .lcg-post-card.featured .t { font-size: 1.8em !important; }
    .lcg-post-card.featured .body { padding: 16px 18px 20px; }
    .lcg-topics { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
    .lcg-post-card { transition: none; }
    .lcg-post-card:hover { transform: none; }
}

/* Preview note above a post opened from the editor's Preview link (admins only). */
.lcg-preview-note { margin: 18px auto 0 !important; max-width: min(1100px, 92vw); padding: 12px 18px; border-radius: 10px; background: #fff8d6; border: 1px solid #f0d77a; border-left: 5px solid #ffd700; color: #4a3b00; font-size: 16px; text-align: left; }
.lcg-preview-note a { color: #003c78 !important; font-weight: 600; }

/* ---- Comments (Blog.aspx.vb CommentsSection) ---- */
.lcg-comments { margin: 28px 0 8px; }
.lcg-comments-title { font-family: "Gabriola", Georgia, serif !important; font-size: 2em !important; line-height: 1 !important; font-weight: bold; color: #5e0091; text-align: left !important; margin: 0 0 14px !important; }
.lcg-comment { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid #eee8f7; }
.lcg-comment .av {
    flex: none; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: #e1dcff; color: #34006c; font-weight: 700; font-size: 16px; object-fit: cover; float: none !important; margin: 0 !important; max-width: none !important;
}
.lcg-comment.author .av { box-shadow: 0 0 0 2px #5e0091; }
.lcg-comment .bd { min-width: 0; flex: 1; }
.lcg-comment .who { font-size: 15px; color: #34006c; margin-bottom: 4px; }
.lcg-comment .who a { color: #34006c !important; font-weight: 700; }
.lcg-comment .who time { color: #6b6280; font-size: 13px; margin-left: 6px; }
.lcg-comment .badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #4a3b00; background: #ffd700; border-radius: 999px; padding: 1px 8px; margin-left: 4px; }
.lcg-comment .txt { font-size: 16px; line-height: 1.55; color: #333; overflow-wrap: anywhere; }
.lcg-comment.author .txt { background: #f7f3fc; border-radius: 10px; padding: 10px 14px; }

.lcg-comment-form { margin-top: 16px; padding: 18px 20px; border-radius: 14px; background: #f7f3fc; border: 1px solid #e3daf3; }
.lcg-comment-form .intro { margin: 0 0 12px; font-size: 15px; color: #4a4458; }
.lcg-comment-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lcg-comment-form label { display: block; font-size: 14px; font-weight: 600; color: #34006c; margin: 0 0 12px; }
.lcg-comment-form .opt { font-weight: 400; color: #6b6280; }
.lcg-comment-form input, .lcg-comment-form textarea {
    display: block; width: 100%; box-sizing: border-box; margin-top: 5px; padding: 10px 12px;
    font: inherit; font-size: 16px; font-weight: 400; color: #222; background: #fff; border: 1px solid #cfc3ea; border-radius: 8px;
}
.lcg-comment-form textarea { resize: vertical; min-height: 120px; }
.lcg-comment-form input:focus, .lcg-comment-form textarea:focus { outline: 2px solid #4828a2; outline-offset: 1px; }
.lcg-comment-form .hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.lcg-comment-form .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.lcg-comment-form .lcg-comment-send { font-size: 15px; padding: 10px 26px; border: 0; cursor: pointer; }
.lcg-comment-form .lcg-comment-send:disabled { opacity: .6; cursor: default; }
.lcg-comment-form .status { font-size: 15px; color: #4a4458; }
.lcg-comment-form .status.ok { color: #1d6b2f; font-weight: 600; }
.lcg-comment-form .status.err { color: #a3162c; }
.lcg-comments-closed { margin: 10px 0 0; font-size: 15px; color: #6b6280; font-style: italic; }
@media (max-width: 600px) { .lcg-comment-form .row { grid-template-columns: 1fr; gap: 0; } }

/* Buttons borrow .BookButton's look, whose icon is a calendar (fine for "Book a session").
   Each other button gets an icon that says what it does (Themify). */
.lcg-comment-send.BookButton:before { content: "\e644"; }   /* speech bubble */
.lcg-read.BookButton:before { content: "\e6b7"; }           /* open book */

/* Opt-in follow boxes on the comment form. */
.lcg-comment-form .follow { border: 0; margin: 0 0 14px; padding: 0; }
.lcg-comment-form .follow legend { font-size: 14px; font-weight: 600; color: #34006c; margin-bottom: 6px; padding: 0; }
.lcg-comment-form label.chk { display: flex; align-items: center; gap: 8px; font-weight: 400; color: #333; margin: 0 0 6px; }
.lcg-comment-form label.chk input { width: 18px; height: 18px; margin: 0; flex: none; }
.lcg-comment-form .fine { display: block; font-size: 13px; color: #6b6280; }

/* ---- "From the Cosmic Calendar" under a post on Mercury, voids, the Moon or numerology
        (Blog.aspx.vb CalendarLink). A gold edge, so it reads as a note from the calendar
        rather than part of the post. ---- */
.lcg-cosmic {
    margin: 22px 0 0; padding: 16px 20px; border-radius: 14px;
    background: #fff; border: 1px solid #e3daf3; border-left: 5px solid #ffd700;
    box-shadow: 0 2px 10px rgba(48, 20, 91, .06);
}
.lcg-cosmic-head { font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .08em; text-transform: uppercase; color: #6b6280; margin-bottom: 8px; }
.lcg-cosmic p { margin: 0 0 10px; font-size: 16px; line-height: 1.5; color: #333; text-align: left; }
.lcg-cosmic .lcg-cosmic-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; font-size: 15px; }
.lcg-cosmic .lcg-cosmic-links a { color: #34006c !important; font-weight: 600; }
.lcg-cosmic .lcg-cosmic-links a:hover, .lcg-cosmic .lcg-cosmic-links a:focus-visible { color: #5e0091 !important; }
