.hero-content h1 {
    font-size: 2.2rem;
}

.article article {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

.article article ul,
.article article ol {
    padding-left: 1.5rem;
}

.article article ul li,
.article article ol li{
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article article h2,
.article article h3,
.article article h4,
.article article h5,
.article article h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.article article h2 {
    font-size: 1.75rem;
}

.article article h3 {
    font-size: 1.5rem;
}

.article article h4 {
    font-size: 1.25rem;
}

.article article p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
    background-color: var(--dark-bg-lighter);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table th {
    background-color: rgba(155, 135, 245, 0.1);
    color: var(--text);
    text-align: left;
    padding: 1rem;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background-color: rgba(155, 135, 245, 0.1);
}

code {
    font-family: var(--font-code);
}