/* ============================================================
   YOU BLOW DEAD BEARS — House Stylesheet
   "Design is a strong word for what happened here"
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #44cc44;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(0,0,0,0.03) 40px,
            rgba(0,0,0,0.03) 41px
        );
    color: #1a1a1a;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    min-height: 100vh;
}

a { color: #000080; }
a:visited { color: #551A8B; }
a:hover { color: #ff0000; text-decoration: none; }

img { max-width: 100%; height: auto; }

/* --- MASTHEAD --- */
.masthead {
    background: #800000;
    border-bottom: 6px solid #ffcc00;
    text-align: center;
    padding: 10px 15px;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.05) 10px,
            rgba(0,0,0,0.05) 20px
        );
}
.masthead-inner {
    max-width: 960px;
    margin: 0 auto;
}
.masthead-issue {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: #ffcc00;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.masthead-title {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(28px, 6vw, 64px);
    color: #ffcc00;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
    letter-spacing: 2px;
    margin: 5px 0;
    line-height: 1.1;
}
.masthead-title a {
    color: #ffcc00;
    text-decoration: none;
}
.masthead-title a:hover {
    color: #fff;
}
.masthead-tagline {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 16px;
    color: #ffeebb;
}

/* --- NAVIGATION --- */
.main-nav {
    background: #222;
    border-bottom: 3px solid #ff0000;
}
.nav-ticker {
    background: #ffcc00;
    color: #800000;
    font-weight: bold;
    font-size: 15px;
    padding: 3px 0;
    font-family: 'Courier New', monospace;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}
.nav-links a {
    color: #44cc44;
    text-decoration: none;
    padding: 10px 18px;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid #444;
    transition: background 0.2s;
}
.nav-links a:first-child { border-left: 1px solid #444; }
.nav-links a:hover {
    background: #44cc44;
    color: #000;
}

/* --- PAGE CONTENT --- */
.page-content {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 15px;
}

/* --- SECTION HEADINGS --- */
.section-heading {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(22px, 4vw, 36px);
    color: #800000;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #ffcc00;
    border-bottom: 4px double #800000;
    padding-bottom: 8px;
    margin: 25px 0 15px 0;
}

/* --- FRONT PAGE --- */
.front-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}
@media (max-width: 700px) {
    .front-grid { grid-template-columns: 1fr; }
}

.content-box {
    background: #ffffcc;
    border: 3px solid #800000;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.content-box h2 {
    font-family: Impact, 'Arial Black', sans-serif;
    color: #800000;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 5px;
}
.content-box p {
    margin-bottom: 10px;
}

/* Sidebar fake ads */
.sidebar .fake-ad {
    background: #fff;
    border: 3px dashed #ff0000;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}
.fake-ad h3 {
    font-size: 22px;
    color: #ff0000;
    text-transform: uppercase;
    font-family: Impact, 'Arial Black', sans-serif;
}
.fake-ad .price {
    font-size: 30px;
    font-weight: bold;
    color: #008000;
}

/* --- HAIKU PAGE --- */
.haiku-display {
    background: #ffffcc;
    border: 5px solid #800000;
    padding: 40px 30px;
    text-align: center;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}
.haiku-display .haiku-name {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    color: #800000;
    margin-bottom: 20px;
}
.haiku-display .haiku-line {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(20px, 3.5vw, 32px);
    color: #333;
    font-style: italic;
    margin: 10px 0;
    line-height: 1.5;
}
.haiku-form {
    background: #ffffcc;
    border: 3px solid #800000;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto 20px auto;
    text-align: center;
}
.haiku-form input[type="text"] {
    font-size: 18px;
    padding: 8px 12px;
    border: 2px solid #800000;
    font-family: 'Comic Sans MS', cursive;
    width: 45%;
    margin: 5px;
}
.haiku-form button {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 18px;
    padding: 10px 25px;
    background: #800000;
    color: #ffcc00;
    border: 3px solid #ffcc00;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}
.haiku-form button:hover {
    background: #cc0000;
}

/* --- TROY'S VIDEO VAULT --- */
.vault-intro {
    background: #1a1a1a;
    color: #44cc44;
    border: 3px solid #44cc44;
    padding: 20px;
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
    text-align: center;
    text-shadow: 0 0 8px rgba(68, 204, 68, 0.5);
}
.vault-intro h2 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(24px, 5vw, 42px);
    color: #ff0000;
    text-shadow: 2px 2px 0 #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.vault-intro p {
    font-size: 14px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.video-card {
    background: #1a1a1a;
    border: 3px solid #ffcc00;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}
.video-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.video-card .card-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.video-card .card-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-card .play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.video-card:hover .play-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.2);
}
.video-card .card-info {
    padding: 12px 15px;
    color: #ffffcc;
}
.video-card .card-title {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 16px;
    color: #ffcc00;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.video-card .card-meta {
    font-size: 12px;
    color: #999;
    font-family: 'Courier New', monospace;
}
.video-card .card-rating {
    color: #ffcc00;
    font-size: 16px;
    margin-top: 5px;
}

/* --- VIDEO PLAYER PAGE --- */
.player-wrapper {
    background: #000;
    border: 4px solid #ffcc00;
    margin-bottom: 20px;
}
.player-wrapper video {
    width: 100%;
    display: block;
}
.video-details {
    background: #1a1a1a;
    border: 3px solid #ffcc00;
    padding: 20px;
    color: #ffffcc;
    margin-bottom: 20px;
}
.video-details h1 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(22px, 4vw, 36px);
    color: #ffcc00;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.video-details .video-meta-line {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}
.video-details .directors-commentary {
    border-top: 2px solid #444;
    padding-top: 15px;
    margin-top: 10px;
}
.video-details .directors-commentary h3 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 8px;
}
.video-details .directors-commentary p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.suggested-videos h2 {
    font-family: Impact, 'Arial Black', sans-serif;
    color: #800000;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0 #ffcc00;
}

/* --- COMPLAINTS FORM --- */
.complaint-form {
    background: #ffffcc;
    border: 3px solid #800000;
    padding: 25px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.complaint-form label {
    display: block;
    font-weight: bold;
    margin: 15px 0 5px 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}
.complaint-form input[type="text"],
.complaint-form select,
.complaint-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #800000;
    font-family: 'Comic Sans MS', cursive;
    font-size: 14px;
}
.complaint-form textarea {
    height: 150px;
    resize: vertical;
}
.complaint-form .anger-slider {
    width: 100%;
    margin: 5px 0;
}
.complaint-form .anger-value {
    font-size: 36px;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    font-family: Impact, 'Arial Black', sans-serif;
}
.complaint-form button[type="submit"] {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 20px;
    padding: 12px 30px;
    background: #800000;
    color: #ffcc00;
    border: 3px solid #ffcc00;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
    width: 100%;
}
.complaint-form button[type="submit"]:hover {
    background: #cc0000;
}

.complaint-response {
    background: #ffffcc;
    border: 3px solid #800000;
    padding: 30px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.complaint-response h2 {
    color: #800000;
    font-family: Impact, 'Arial Black', sans-serif;
}
.complaint-response .ref-number {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #ff0000;
    margin: 15px 0;
}

/* --- 404 --- */
.four-oh-four {
    text-align: center;
    padding: 60px 20px;
}
.four-oh-four h1 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    color: #800000;
    text-shadow: 3px 3px 0 #ffcc00;
}
.four-oh-four p {
    font-size: 20px;
    margin: 15px 0;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    background: #800000;
    color: #ffcc00;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    border-top: 4px solid #ffcc00;
}
.cookie-banner button {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 14px;
    padding: 8px 20px;
    margin: 5px 8px;
    cursor: pointer;
    border: 2px solid #ffcc00;
    background: #222;
    color: #44cc44;
    text-transform: uppercase;
}
.cookie-banner button:hover {
    background: #44cc44;
    color: #000;
}

/* --- FOOTER --- */
.site-footer {
    background: #222;
    color: #999;
    text-align: center;
    padding: 20px 15px 80px 15px; /* extra bottom for cookie banner */
    font-size: 12px;
    margin-top: 30px;
    border-top: 4px solid #800000;
}
.site-footer p { margin: 8px 0; }
.footer-disclaimer {
    font-style: italic;
    color: #666;
}
.fake-counter {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #0f0;
    padding: 3px 8px;
    font-size: 11px;
}

.fire-hr {
    border: none;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #ff0000,
        #ff6600 10%,
        #ffcc00 20%,
        #ff6600 30%,
        #ff0000 40%
    );
    margin: 0;
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}
@keyframes blink-animation {
    to { visibility: hidden; }
}

/* --- MUSIC SECTION HUB --- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.album-card {
    background: #1a1a1a;
    border: 3px solid #ffcc00;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.album-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}
.album-card-cover {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #333;
}
.album-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: #fff;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 13px;
    padding: 4px 10px;
    transform: rotate(5deg);
}
.album-card-info {
    padding: 15px;
    color: #ffffcc;
}
.album-card-artist {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 18px;
    color: #ffcc00;
    text-transform: uppercase;
}
.album-card-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-style: italic;
    color: #f5deb3;
    margin: 4px 0;
}
.album-card-genre {
    font-size: 13px;
    color: #999;
    font-family: 'Courier New', monospace;
}
.album-card-meta {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
}
.album-card-coming-soon {
    opacity: 0.5;
    border-style: dashed;
    cursor: default;
}

/* --- ALBUM PAGE (INFOMERCIAL STYLE) --- */
.album-infomercial {
    max-width: 800px;
    margin: 0 auto;
}
.infomercial-stripe {
    background: repeating-linear-gradient(
        -45deg,
        #ff0000,
        #ff0000 10px,
        #ffcc00 10px,
        #ffcc00 20px
    );
    text-align: center;
    padding: 8px;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.infomercial-body {
    background: #ffffcc;
    border: 4px solid #800000;
    padding: 30px 25px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}
.infomercial-headline {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    color: #800000;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.infomercial-highlight {
    color: #ff0000;
    text-decoration: line-through;
}
.infomercial-pitch {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}
.infomercial-divider {
    text-align: center;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 20px;
    color: #800000;
    padding: 15px 0;
    margin: 25px 0;
    border-top: 3px solid #800000;
    border-bottom: 3px solid #800000;
    letter-spacing: 2px;
}

/* Album hero section */
.album-hero {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin: 25px 0;
}
@media (max-width: 700px) {
    .album-hero { flex-direction: column; align-items: center; }
}
.album-cover-wrap {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}
.album-cover {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.album-sticker {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 16px;
    padding: 12px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    transform: rotate(12deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.album-sticker-note {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}
.album-details {
    flex: 1;
}
.band-name {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(22px, 4vw, 34px);
    color: #800000;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 0 #ffcc00;
}
.album-title-display {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-style: italic;
    color: #333;
    margin: 8px 0;
}
.album-tagline {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}
.album-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.album-badges .badge {
    background: #222;
    color: #ffcc00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #ffcc00;
}

/* Sales pitch & reviews */
.sales-pitch {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    line-height: 1.7;
}
.sales-pitch p {
    margin-bottom: 15px;
}
.fake-review {
    background: #fff;
    border-left: 5px solid #800000;
    padding: 12px 18px;
    margin: 15px 0;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}
.fake-review cite {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    font-style: normal;
}

/* Band members */
.band-member {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
    line-height: 1.6;
}
.band-member:last-child { border-bottom: none; }
.band-member strong {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 18px;
    color: #ffcc00;
}

/* Track listing & player */
.album-track {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}
.album-track:last-of-type { border-bottom: none; }
.track-number {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 28px;
    color: #ffcc00;
    min-width: 35px;
    text-align: center;
    line-height: 1;
}
.track-info {
    flex: 1;
}
.track-title {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 18px;
    color: #ffcc00;
    text-transform: uppercase;
}
.track-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin: 4px 0 10px 0;
}
.track-player {
    width: 100%;
    height: 35px;
    filter: sepia(30%) saturate(150%);
}
.track-duration {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #777;
    min-width: 45px;
    text-align: right;
}

/* CTA section */
.infomercial-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 4px double #800000;
}
.infomercial-cta h2 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    color: #800000;
    margin-bottom: 10px;
}
.cta-button {
    display: inline-block;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 16px;
    padding: 12px 25px;
    background: #222;
    color: #ffcc00 !important;
    text-decoration: none !important;
    border: 3px solid #ffcc00;
    text-transform: uppercase;
    margin: 8px 5px;
    transition: background 0.2s;
}
.cta-button:hover {
    background: #ffcc00;
    color: #000 !important;
}

/* --- ADVICE COLUMN (DR. PANTYBOTTOM) --- */
.advice-header {
    display: flex;
    gap: 20px;
    background: #ffffcc;
    border: 3px solid #800000;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
@media (max-width: 700px) {
    .advice-header { flex-direction: column; align-items: center; text-align: center; }
}
.advice-portrait {
    flex-shrink: 0;
}
.portrait-placeholder {
    width: 120px;
    height: 120px;
    background: #800000;
    border: 3px solid #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}
.portrait-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #ffcc00;
    border-radius: 50%;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}
.advice-intro h3 {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 22px;
    color: #800000;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.advice-credentials {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.advice-intro p {
    margin-bottom: 8px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    line-height: 1.6;
}

.advice-qa {
    background: #ffffcc;
    border: 3px solid #800000;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    overflow: hidden;
}
.advice-question {
    display: flex;
    gap: 12px;
    padding: 18px 20px;
    background: #fff8dc;
    border-bottom: 2px dashed #800000;
}
.advice-answer {
    display: flex;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffcc;
}
.qa-label {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 32px;
    color: #800000;
    line-height: 1;
    min-width: 35px;
    flex-shrink: 0;
}
.advice-answer .qa-label {
    color: #006400;
}
.qa-body {
    flex: 1;
}
.qa-from {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 6px;
}
.qa-body p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.qa-sign-off {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 14px;
    color: #800000;
    text-align: right;
    margin-top: 8px;
}
