.post-content {
    padding: 20px 0 60px;
    margin-top: 80px;
}

.post-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.post-text {
    flex: 1;
    max-width: 800px;
}

.category {
    display: inline-block;
    background-color: var(--secondary-background);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.post-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 32px 0;
    line-height: 1.2;
    color: var(--text-color);
}

.post-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.post-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
}

.post-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-text a:hover {
    text-decoration: underline;
}

.post-image {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.post-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-credit {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.image-credit a {
    color: var(--text-light);
    text-decoration: underline;
}

.cta-wrapper {
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    background-color: var(--secondary-background);
    border-radius: 12px;
}

.cta-wrapper p {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    margin: 16px 0;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-color-dark);
    color: white !important;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: var(--secondary-background);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .post-body {
        flex-direction: column;
    }

    .post-image {
        width: 100%;
        max-width: 600px;
        position: static;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .post-content {
        padding: 20px 20px 40px;
    }

    .post-text h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .post-text h2 {
        font-size: 24px;
    }

    .post-text p {
        font-size: 16px;
    }
}

.post-text ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.post-text ul + p {
    margin-top: 32px;
} 