/* Page content styling */
article.page .entry-content {
    margin: 2rem 0;
}

article.page header.entry-header {
    margin-bottom: 2rem;
}

article.page header.entry-header h1.entry-title {
    font-family: var(--font-bold);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to right, var(--color-pink-bright), var(--color-orange-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section.grey article.page header.entry-header h1.entry-title {
    color: var(--color-grey-dark);
}

.content-section.pink article.page header.entry-header h1.entry-title {
    color: white !important;
}

.content-section.orange article.page header.entry-header h1.entry-title {
    color: var(--color-orange-light);
}

.content-section.turquoise article.page header.entry-header h1.entry-title {
    color: var(--color-turquoise-dark);
}

article.page .entry-content ul {
    list-style: none;
    padding-left: 0;
}

article.page .entry-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
}

.content-section.grey article.page .entry-content ul li {
    color: var(--color-grey-dark);
}

.content-section.pink article.page .entry-content ul li {
    color: var(--color-pink-light);
}

.content-section.orange article.page .entry-content ul li {
    color: var(--color-orange-light);
}

.content-section.turquoise article.page .entry-content ul li {
    color: var(--color-turquoise-dark);
}

/* Jungle post styling */
.jungle-post {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.jungle-post:last-child {
    border-bottom: none;
}

.jungle-post .entry-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.jungle-post .entry-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.jungle-post .entry-title a:hover {
    opacity: 0.8;
}

.jungle-post .entry-meta {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.jungle-post .entry-content {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.jungle-post .entry-content p {
    margin-bottom: 1rem;
}

.content-section.grey .jungle-post .entry-title,
.content-section.grey .jungle-post .entry-meta,
.content-section.grey .jungle-post .entry-content {
    color: var(--color-grey-dark);
}

.content-section.pink .jungle-post .entry-title,
.content-section.pink .jungle-post .entry-meta,
.content-section.pink .jungle-post .entry-content {
    color: var(--color-pink-light);
}

.content-section.orange .jungle-post .entry-title,
.content-section.orange .jungle-post .entry-meta,
.content-section.orange .jungle-post .entry-content {
    color: var(--color-orange-light);
}

.content-section.turquoise .jungle-post .entry-title,
.content-section.turquoise .jungle-post .entry-meta,
.content-section.turquoise .jungle-post .entry-content {
    color: var(--color-turquoise-dark);
} 