/* PHOENIX RECOVERY HUB - main stylesheet */

:root {
    --phx-primary: #F26B1F;
    --phx-primary-dark: #C9530F;
    --phx-primary-light: #FF8A3D;
    --phx-primary-glow: rgba(242, 107, 31, 0.28);
    --phx-bg-dark: #0F1116;
    --phx-bg-darker: #07080B;
    --phx-bg-section: #15171D;
    --phx-bg-card: #1C1F26;
    --phx-bg-card-hover: #232730;
    --phx-text: #FFFFFF;
    --phx-text-muted: #C9CCD2;
    --phx-text-faint: #8B919B;
    --phx-border: rgba(255,255,255,0.08);
    --phx-border-light: rgba(255,255,255,0.16);
    --phx-crisis: #DC2626;
    --phx-crisis-dark: #991B1B;
    --phx-success: #10B981;

    --phx-font-display: 'Bebas Neue', system-ui, -apple-system, sans-serif;
    --phx-font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --phx-w-content: 1200px;
    --phx-radius: 8px;
    --phx-radius-sm: 4px;
    --phx-shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --phx-shadow-glow: 0 0 28px var(--phx-primary-glow);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--phx-font-body);
    background: var(--phx-bg-dark);
    color: var(--phx-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--phx-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--phx-primary-light); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--phx-font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.0625rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--phx-text); margin-bottom: 0.875rem; }
p { margin: 0 0 1em; }

.phx-container { max-width: var(--phx-w-content); margin: 0 auto; padding: 0 1.5rem; }

/* CRISIS BAR (sticky top) */
.phx-crisis-bar { background: var(--phx-crisis-dark); color: white; font-size: 0.875rem; }
.phx-crisis-bar__inner { display: flex; align-items: center; gap: 0.5rem 1.25rem; flex-wrap: wrap; padding: 0.5rem 1.5rem; justify-content: center; }
.phx-crisis-bar__label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.phx-crisis-bar__link { color: white; padding: 0.125rem 0.5rem; border-radius: var(--phx-radius-sm); white-space: nowrap; }
.phx-crisis-bar__link:hover { background: rgba(255,255,255,0.15); color: white; }
.phx-crisis-bar__link--999 { background: rgba(0,0,0,0.3); }
.phx-crisis-bar__link--999:hover { background: black; }

/* HEADER */
.phx-header {
    background: rgba(7,8,11,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--phx-border);
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.phx-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.phx-header__brand img,
.phx-header__brand .phx-logo { height: 64px; width: auto; display: block; }
.phx-logo--header { height: 64px; }
.phx-logo--footer { height: 96px; width: auto; display: block; }
.phx-nav__menu { display: flex; gap: 0.25rem; list-style: none; padding: 0; margin: 0; }
.phx-nav__menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--phx-text);
    font-weight: 500;
    border-radius: var(--phx-radius-sm);
    transition: background 0.15s, color 0.15s;
}
.phx-nav__menu a:hover,
.phx-nav__menu .current-menu-item a,
.phx-nav__menu .current_page_item a {
    color: var(--phx-primary);
    background: rgba(242,107,31,0.08);
}
.phx-nav-toggle { display: none; padding: 0.5rem; border-radius: var(--phx-radius-sm); }
.phx-nav-toggle:hover { background: rgba(255,255,255,0.05); }
.phx-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--phx-text); margin: 5px 0; transition: transform 0.2s; }

@media (max-width: 880px) {
    .phx-nav-toggle { display: block; }
    .phx-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--phx-bg-darker); border-top: 1px solid var(--phx-border); padding: 0.5rem; }
    .phx-nav.is-open { display: block; }
    .phx-nav__menu { flex-direction: column; }
    .phx-nav__menu a { padding: 0.875rem 1rem; border-bottom: 1px solid var(--phx-border); border-radius: 0; }
    .phx-nav__menu li:last-child a { border-bottom: 0; }
}

/* HERO */
.phx-hero { background: var(--phx-bg-darker); padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; overflow: hidden; }
.phx-hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, var(--phx-primary-glow) 0%, transparent 65%);
    pointer-events: none;
}
.phx-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.phx-hero__inner { position: relative; text-align: center; z-index: 1; }
.phx-hero__title { color: var(--phx-text); margin-bottom: 1rem; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.phx-hero__subtitle { font-size: clamp(1.0625rem, 2vw, 1.375rem); color: var(--phx-text-muted); max-width: 720px; margin: 0 auto 2.25rem; }
.phx-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.phx-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--phx-font-display);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: var(--phx-radius-sm);
    transition: all 0.15s;
    border: 2px solid transparent;
    text-align: center;
}
.phx-btn--primary { background: var(--phx-primary); color: white; box-shadow: var(--phx-shadow-glow); }
.phx-btn--primary:hover { background: var(--phx-primary-dark); color: white; transform: translateY(-1px); }
.phx-btn--ghost { color: var(--phx-text); border-color: var(--phx-border-light); }
.phx-btn--ghost:hover { background: rgba(255,255,255,0.05); color: var(--phx-primary); border-color: var(--phx-primary); }
.phx-btn--lg { padding: 1.125rem 2.25rem; font-size: 1.25rem; }

/* SECTIONS */
.phx-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.phx-section--alt { background: var(--phx-bg-section); }
.phx-section--dark { background: var(--phx-bg-darker); }
.phx-section__title { text-align: center; }
.phx-section__title--crisis { color: var(--phx-crisis); }
.phx-section__lead { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: var(--phx-text-muted); font-size: 1.0625rem; }
.phx-section__centered { text-align: center; }
.phx-section__body { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--phx-text-muted); }

/* CRISIS GRID */
.phx-crisis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.phx-crisis-card {
    background: var(--phx-bg-card);
    padding: 1.5rem;
    border-radius: var(--phx-radius);
    border: 1px solid var(--phx-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.2s;
}
.phx-crisis-card:hover { border-color: var(--phx-crisis); background: var(--phx-bg-card-hover); transform: translateY(-2px); }
.phx-crisis-card__label { color: var(--phx-text-muted); font-size: 0.875rem; }
.phx-crisis-card__number { color: var(--phx-text); font-family: var(--phx-font-display); font-size: 2rem; letter-spacing: 0.02em; }
.phx-crisis-card--emergency { background: var(--phx-crisis-dark); border-color: var(--phx-crisis); }
.phx-crisis-card--emergency .phx-crisis-card__label,
.phx-crisis-card--emergency .phx-crisis-card__number { color: white; }
.phx-crisis-card--emergency:hover { background: var(--phx-crisis); border-color: white; }

/* CARDS GRID */
.phx-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.phx-card {
    background: var(--phx-bg-card);
    padding: 1.75rem;
    border-radius: var(--phx-radius);
    border: 1px solid var(--phx-border);
    transition: all 0.2s;
}
.phx-card:hover { border-color: var(--phx-primary); transform: translateY(-2px); box-shadow: var(--phx-shadow-md); }
.phx-card__title { color: var(--phx-text); margin-bottom: 0.75rem; }
.phx-card__desc { color: var(--phx-text-muted); margin-bottom: 1rem; font-size: 0.9375rem; }
.phx-card__link { font-weight: 600; }

/* MAIN */
.phx-main { min-height: 50vh; }

/* PAGE */
.phx-page { padding: 3rem 0 4rem; }
.phx-page__hero { background: var(--phx-bg-section); padding: 3rem 0 2.25rem; text-align: center; border-bottom: 1px solid var(--phx-border); }
.phx-page__hero--directory { background: linear-gradient(180deg, var(--phx-bg-darker) 0%, var(--phx-bg-section) 100%); }
.phx-page__title { color: var(--phx-text); margin-bottom: 0.5rem; }
.phx-page__lead { color: var(--phx-text-muted); font-size: 1.125rem; max-width: 720px; margin: 0 auto; }
.phx-page__content { max-width: 720px; margin: 0 auto; color: var(--phx-text-muted); font-size: 1.0625rem; }
.phx-page__content h2, .phx-page__content h3 { color: var(--phx-text); margin-top: 2rem; }

/* DIRECTORY */
.phx-directory { padding: 2.5rem 0 4rem; background: var(--phx-bg-dark); }
.phx-directory__inner { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .phx-directory__inner { grid-template-columns: 1fr; } }

.phx-directory__sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; }
@media (max-width: 880px) { .phx-directory__sidebar { position: static; } }

.phx-filter { background: var(--phx-bg-card); padding: 1.25rem; border-radius: var(--phx-radius); border: 1px solid var(--phx-border); }
.phx-filter__label { display: block; font-family: var(--phx-font-display); font-size: 1.125rem; letter-spacing: 0.04em; margin-bottom: 0.75rem; color: var(--phx-text); }
.phx-filter__input { width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--phx-border-light); background: var(--phx-bg-darker); color: var(--phx-text); border-radius: var(--phx-radius-sm); }
.phx-filter__input:focus { outline: 2px solid var(--phx-primary); outline-offset: 1px; border-color: var(--phx-primary); }
.phx-filter__check { display: flex; align-items: center; gap: 0.5rem; color: var(--phx-text-muted); padding: 0.375rem 0; cursor: pointer; }
.phx-filter__check input { accent-color: var(--phx-primary); }
.phx-filter__cats { list-style: none; padding: 0; margin: 0; max-height: 380px; overflow-y: auto; }
.phx-filter__cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.625rem;
    color: var(--phx-text-muted);
    border-radius: var(--phx-radius-sm);
    transition: all 0.15s;
    font-size: 0.9375rem;
}
.phx-filter__cat:hover { background: rgba(255,255,255,0.04); color: var(--phx-text); }
.phx-filter__cat.is-active { background: var(--phx-primary); color: white; font-weight: 600; }
.phx-filter__cat span { font-size: 0.75rem; opacity: 0.85; background: rgba(0,0,0,0.25); padding: 0.125rem 0.5rem; border-radius: 999px; }

.phx-directory__count { color: var(--phx-text-muted); margin-bottom: 1rem; font-size: 0.9375rem; }
.phx-directory__list { display: grid; gap: 1rem; }
.phx-directory__empty { padding: 3rem 1rem; text-align: center; color: var(--phx-text-faint); background: var(--phx-bg-card); border-radius: var(--phx-radius); border: 1px solid var(--phx-border); }

/* SERVICE CARD */
.phx-service-card {
    background: var(--phx-bg-card);
    border: 1px solid var(--phx-border);
    border-radius: var(--phx-radius);
    padding: 1.5rem;
    transition: all 0.15s;
}
.phx-service-card.is-hidden { display: none; }
.phx-service-card:hover { border-color: var(--phx-primary); }
.phx-service-card__title { margin-bottom: 0.5rem; font-size: 1.375rem; }
.phx-service-card__title a { color: var(--phx-text); }
.phx-service-card__title a:hover { color: var(--phx-primary); }
.phx-service-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.875rem; }
.phx-tag {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    font-size: 0.6875rem;
    background: rgba(255,255,255,0.06);
    color: var(--phx-text-muted);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
a.phx-tag:hover { background: var(--phx-primary); color: white; }
.phx-tag--247 { background: var(--phx-success); color: white; }
.phx-tag--crisis { background: var(--phx-crisis); color: white; }
.phx-service-card__desc { color: var(--phx-text-muted); font-size: 0.9375rem; margin-bottom: 1rem; }
.phx-service-card__meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 0 0 1rem; font-size: 0.875rem; color: var(--phx-text-muted); }
.phx-service-card__meta div { display: flex; gap: 0.5rem; }
.phx-service-card__meta dt { font-weight: 600; color: var(--phx-text-faint); margin: 0; }
.phx-service-card__meta dd { margin: 0; }
.phx-service-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--phx-border); }
.phx-action {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(242,107,31,0.08);
    color: var(--phx-primary);
    border-radius: var(--phx-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.15s;
}
.phx-action:hover { background: var(--phx-primary); color: white; }
.phx-action--more { background: transparent; }

/* SINGLE SERVICE */
.phx-back { display: inline-block; margin-bottom: 1rem; color: var(--phx-text-muted); font-size: 0.875rem; }
.phx-back:hover { color: var(--phx-primary); }
.phx-service__hero { background: var(--phx-bg-section); padding: 3rem 0 2rem; border-bottom: 1px solid var(--phx-border); }
.phx-service__title { color: var(--phx-text); margin-bottom: 1rem; }
.phx-service__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.phx-service__body { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 3rem 0 5rem; }
@media (max-width: 880px) { .phx-service__body { grid-template-columns: 1fr; } }
.phx-service__content { color: var(--phx-text-muted); font-size: 1.0625rem; line-height: 1.7; }
.phx-service__sidebar { background: var(--phx-bg-card); padding: 1.75rem; border-radius: var(--phx-radius); border: 1px solid var(--phx-border); align-self: start; position: sticky; top: 110px; }
.phx-service__sidebar h3 { color: var(--phx-text); margin-bottom: 1rem; }
.phx-service__meta-list { margin: 0; }
.phx-service__meta-list > div { padding: 0.75rem 0; border-bottom: 1px solid var(--phx-border); }
.phx-service__meta-list > div:last-child { border-bottom: 0; }
.phx-service__meta-list dt { color: var(--phx-text-faint); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; font-weight: 600; }
.phx-service__meta-list dd { margin: 0; color: var(--phx-text); word-break: break-word; }
.phx-service__meta-list a { word-break: break-word; }

/* FOOTER */
.phx-footer { background: var(--phx-bg-darker); border-top: 1px solid var(--phx-border); margin-top: 3rem; }
.phx-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 3rem 1.5rem 2rem; max-width: var(--phx-w-content); margin: 0 auto; }
@media (max-width: 720px) { .phx-footer__inner { grid-template-columns: 1fr; gap: 2rem; } }
.phx-footer__brand img,
.phx-footer__brand .phx-logo { height: 96px; width: auto; margin-bottom: 0.75rem; display: block; }
.phx-tagline { color: var(--phx-primary); font-family: var(--phx-font-display); font-size: 1.25rem; letter-spacing: 0.05em; margin: 0; }
.phx-footer__menu { list-style: none; padding: 0; margin: 0; }
.phx-footer__menu a { display: block; padding: 0.375rem 0; color: var(--phx-text-muted); }
.phx-footer__menu a:hover { color: var(--phx-primary); }
.phx-footer__crisis p { color: var(--phx-text-muted); font-size: 0.9375rem; margin: 0.375rem 0; }
.phx-footer__crisis a { color: var(--phx-text); font-weight: 600; }
.phx-footer__crisis a:hover { color: var(--phx-primary); }
.phx-footer__bottom { background: var(--phx-bg-darker); border-top: 1px solid var(--phx-border); padding: 1.25rem 0; }
.phx-footer__disclaimer { color: var(--phx-text-faint); font-size: 0.8125rem; max-width: 920px; margin: 0 0 0.5rem; }
.phx-footer__copy { color: var(--phx-text-faint); font-size: 0.8125rem; margin: 0; }

/* =============== FORMS =============== */
.phx-form { max-width: 720px; }
.phx-form__field { margin-bottom: 1.5rem; }
.phx-form__field > label,
.phx-form__label { display: block; font-weight: 600; color: var(--phx-text); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.phx-form__req { color: var(--phx-primary); margin-left: 0.125rem; }
.phx-form__field input[type="text"],
.phx-form__field input[type="email"],
.phx-form__field input[type="tel"],
.phx-form__field input[type="url"],
.phx-form__field select,
.phx-form__field textarea {
    display: block; width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--phx-border-light); background: var(--phx-bg-card); color: var(--phx-text);
    border-radius: var(--phx-radius-sm); font-size: 1rem; font-family: inherit;
}
.phx-form__field textarea { resize: vertical; min-height: 140px; }
.phx-form__field input:focus,
.phx-form__field select:focus,
.phx-form__field textarea:focus {
    outline: 2px solid var(--phx-primary); outline-offset: 1px; border-color: var(--phx-primary);
}
.phx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .phx-form__row { grid-template-columns: 1fr; } }
.phx-form__radio,
.phx-form__check {
    display: flex; align-items: flex-start; gap: 0.625rem;
    color: var(--phx-text-muted); cursor: pointer; font-weight: 400;
    margin-bottom: 0.5rem; font-size: 0.9375rem;
}
.phx-form__radio input,
.phx-form__check input { accent-color: var(--phx-primary); margin-top: 0.25rem; flex-shrink: 0; }
.phx-form__hint { color: var(--phx-text-faint); font-size: 0.8125rem; margin: 0.375rem 0 0 1.625rem; }
.phx-form__field--error input,
.phx-form__field--error select,
.phx-form__field--error textarea { border-color: var(--phx-crisis); }
.phx-form__honeypot { position: absolute; left: -9999px; top: -9999px; }

.phx-form-message {
    padding: 1rem 1.25rem; border-radius: var(--phx-radius);
    margin-bottom: 1.5rem; font-size: 0.9375rem;
}
.phx-form-message--success { background: rgba(16,185,129,0.12); border: 1px solid var(--phx-success); color: var(--phx-text); }
.phx-form-message--error { background: rgba(220,38,38,0.12); border: 1px solid var(--phx-crisis); color: var(--phx-text); }
.phx-form-message--warn { background: rgba(242,107,31,0.12); border: 1px solid var(--phx-primary); color: var(--phx-text); }

/* =============== CONTACT PAGE =============== */
.phx-contact { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; padding: 1rem 0; }
@media (max-width: 880px) { .phx-contact { grid-template-columns: 1fr; } }
.phx-contact__sidebar { background: var(--phx-bg-card); padding: 1.5rem; border-radius: var(--phx-radius); border: 1px solid var(--phx-border); }
.phx-contact__sidebar h3 { color: var(--phx-text); margin-bottom: 1rem; }
.phx-contact__sidebar p { color: var(--phx-text-muted); font-size: 0.9375rem; }
.phx-contact__crisis-list { list-style: none; padding: 0; margin: 0; }
.phx-contact__crisis-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--phx-border); color: var(--phx-text-muted); font-size: 0.9375rem; }
.phx-contact__crisis-list li:last-child { border-bottom: 0; }
.phx-contact__crisis-list a { color: var(--phx-text); font-weight: 600; }

/* =============== COMMUNITY PAGE =============== */
.phx-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.phx-event-card { background: var(--phx-bg-card); padding: 1.5rem; border-radius: var(--phx-radius); border: 1px solid var(--phx-border); transition: border-color 0.15s; }
.phx-event-card:hover { border-color: var(--phx-primary); }
.phx-event-card__date { font-family: var(--phx-font-display); font-size: 1.125rem; color: var(--phx-primary); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.phx-event-card__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.phx-event-card__title a { color: var(--phx-text); }
.phx-event-card__title a:hover { color: var(--phx-primary); }
.phx-event-card__loc { color: var(--phx-text-muted); font-size: 0.875rem; margin-bottom: 0.5rem; }
.phx-event-card__excerpt { color: var(--phx-text-muted); font-size: 0.9375rem; margin: 0; }

.phx-news-list { list-style: none; padding: 0; margin: 0 auto; max-width: 820px; }
.phx-news-item { padding: 1.25rem 0; border-bottom: 1px solid var(--phx-border); }
.phx-news-item:last-child { border-bottom: 0; }
.phx-news-item__meta { display: flex; gap: 0.75rem; font-size: 0.8125rem; color: var(--phx-text-faint); margin-bottom: 0.375rem; flex-wrap: wrap; align-items: center; }
.phx-news-item__source { background: rgba(242,107,31,0.12); color: var(--phx-primary); padding: 0.125rem 0.625rem; border-radius: 999px; font-weight: 600; text-transform: uppercase; font-size: 0.6875rem; letter-spacing: 0.05em; }
.phx-news-item__title { font-family: var(--phx-font-body); font-size: 1.125rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.375rem; }
.phx-news-item__title a { color: var(--phx-text); }
.phx-news-item__title a:hover { color: var(--phx-primary); }
.phx-news-item__desc { color: var(--phx-text-muted); font-size: 0.9375rem; margin: 0; }
