/* content.css - Styling for static content pages (Legal, About, FAQ, etc) */

.content-container {
    width: 100%;
    max-width: 48rem; /* max-w-3xl */
    margin: 2.5rem auto 0; /* mt-10 */
    text-align: left;
}

/* Legal/Content Typography */
.content-body p {
    color: #d1d5db; /* text-gray-300 */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem;
}

.content-body h2,
.content-body h3 {
    color: var(--rgb-blue);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-body h2 {
    font-size: 1.5rem; /* text-2xl */
}

.content-body h3 {
    font-size: 1.25rem; /* text-xl */
}

.content-body ul {
    color: #d1d5db; /* text-gray-300 */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem;
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 1rem;
}

.content-body a {
    color: var(--rgb-green);
    text-decoration: none;
    transition: color 0.2s;
}

.content-body a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.content-body em {
    color: #9ca3af; /* text-gray-400 */
    font-style: italic;
    font-size: 0.875rem; /* text-sm */
    display: block;
    margin-top: 2rem;
}
