/* ---------------------------------------------------------------------------
   Framework guide pages (frameworks/) — layered on top of the main site's site.css.
   Scoped under .guide-page so nothing here can leak into the rest of the site.
   --------------------------------------------------------------------------- */

/* --- "Why it matters" cards ------------------------------------------------ */
.guide-page .guide-card {
    background: #F8F6F3;
    border: 1px solid #ece7e1;
    border-left: 4px solid #F08820;   /* overridden inline per card */
    padding: 1.5rem 1.6rem;
}
.guide-page .guide-card__title {
    color: #000;
    letter-spacing: -0.01em;
}
.guide-page .guide-card__body {
    color: #56535b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Protocol steps -------------------------------------------------------- */
.guide-page .guide-step {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #ece7e1;
    overflow: hidden;
}
.guide-page .guide-step__num {
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.guide-page .guide-step__body {
    padding: 1.25rem 1.5rem;
}
.guide-page .guide-step__body p {
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 575.98px) {
    .guide-page .guide-step { display: block; }
    .guide-page .guide-step__num { width: 100%; padding: 0.6rem 0; }
    .guide-page .guide-step__body { padding: 1.1rem 1.25rem; }
}

/* --- Services table -------------------------------------------------------- */
.guide-page .guide-table-wrap {
    background: #fff;
    border: 1px solid #ece7e1;
    overflow-x: auto;
}
.guide-page .guide-table {
    width: 100%;
    min-width: 560px;
    margin: 0;
    border-collapse: collapse;
}
.guide-page .guide-table thead th {
    background: #26242A;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 1.25rem;
}
.guide-page .guide-table tbody th,
.guide-page .guide-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    vertical-align: middle;
    border-top: 1px solid #f0eae3;
}
.guide-page .guide-table tbody th {
    font-weight: 700;
    color: #000;
    text-align: left;
}
.guide-page .guide-table tbody td { color: #56535b; }

.guide-page .guide-badge {
    display: inline-block;
    background: #efe7dd;
    color: #6b6168;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
}
.guide-page .guide-badge--now {
    background: #F48034;
    color: #fff;
}

/* --- Warning signs (dark panel) -------------------------------------------- */
.guide-page .guide-signs {
    background: #26242A;
    color: #d8d3da;
    padding: 2.75rem 2.5rem;
}
.guide-page .guide-signs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #F48034;
    letter-spacing: 0.16em;
}
.guide-page .guide-signs__tri {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #F48034;
}
.guide-page .guide-signs__title {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.15;
}
.guide-page .guide-sign {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
}
.guide-page .guide-sign__dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 0.5rem;
    transform: rotate(45deg);
}
@media (max-width: 575.98px) {
    .guide-page .guide-signs { padding: 2rem 1.5rem; }
    .guide-page .guide-signs__title { font-size: 1.35rem; }
}

/* --- Patient quote --------------------------------------------------------- */
.guide-page .guide-quote {
    background: #F8F6F3;
    border: 1px solid #ece7e1;
    padding: 2.5rem 2.75rem;
    position: relative;
    overflow: hidden;
}
.guide-page .guide-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(#F08820, #E01080, #602098, #0070B8, #00A080);
}
.guide-page .guide-quote__body {
    font-size: 1.35rem;
    line-height: 1.45;
    color: #26242A;
}
.guide-page .guide-quote__cite {
    color: #a89a8a;
    letter-spacing: 0.12em;
}
@media (max-width: 575.98px) {
    .guide-page .guide-quote { padding: 1.75rem 1.5rem; }
    .guide-page .guide-quote__body { font-size: 1.1rem; }
}

/* --- Disclaimer ------------------------------------------------------------ */
.guide-page .guide-disclaimer {
    max-width: 760px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #86808a;
}

/* --- Guide index page ------------------------------------------------------ */
.guide-index-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #ece7e1;
    border-top: 4px solid #F08820;
    padding: 1.75rem 1.75rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-index-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
    color: inherit;
}
.guide-index-card__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a89a8a;
}
.guide-index-card__title {
    color: #000;
    letter-spacing: -0.015em;
}
.guide-index-card__body {
    color: #56535b;
    font-size: 0.95rem;
    line-height: 1.6;
}
.guide-index-card__link {
    color: #F48034;
    font-weight: 600;
    font-size: 0.9rem;
}
