.ahuramazda-post {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--ahuramazda-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--ahuramazda-shadow);
}

.ahuramazda-post__back {
    display: inline-block;
    color: var(--ahuramazda-blue);
    text-decoration: none;
    font-size: var(--ahuramazda-font-size-sm);
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.ahuramazda-post__back:hover {
    color: var(--ahuramazda-gold);
}

.ahuramazda-post h1 {
    color: var(--ahuramazda-purple);
    font-size: var(--ahuramazda-font-size-2xl);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ahuramazda-gold);
}

.ahuramazda-post h2 {
    color: var(--ahuramazda-blue);
    font-size: var(--ahuramazda-font-size-xl);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.ahuramazda-post h3 {
    color: var(--ahuramazda-purple);
    font-size: var(--ahuramazda-font-size-lg);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.ahuramazda-post p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ahuramazda-post strong {
    color: var(--ahuramazda-purple);
    font-weight: 700;
}

.ahuramazda-post em {
    color: var(--ahuramazda-gold);
    font-style: italic;
}

.ahuramazda-post blockquote {
    border-right: 4px solid var(--ahuramazda-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--ahuramazda-clay);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--ahuramazda-purple);
}

.ahuramazda-post table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: var(--ahuramazda-font-size-sm);
}

.ahuramazda-post th {
    background: var(--ahuramazda-purple);
    color: var(--ahuramazda-white);
    padding: 0.75rem 1rem;
    text-align: right;
    font-weight: 700;
}

.ahuramazda-post td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--ahuramazda-clay-dark);
}

.ahuramazda-post tr:nth-child(even) td {
    background: var(--ahuramazda-clay);
}

.ahuramazda-post ul, .ahuramazda-post ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.ahuramazda-post li {
    margin-bottom: 0.5rem;
}

/* Post Navigation */
.ahuramazda-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ahuramazda-clay-dark);
}

.ahuramazda-post-nav a {
    color: var(--ahuramazda-purple);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.ahuramazda-post-nav a:hover {
    color: var(--ahuramazda-gold);
}