/* Container for the RSS post */
.rss-post {
max-width: 800px;
margin: 0 auto;
padding: 24px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
color: #2b2b2b;
line-height: 1.7;
}
/* Post Title */
.rss-post h2 {
font-size: 1.8rem;
margin-bottom: 20px;
color: #111111;
line-height: 1.3;
}
/* Paragraph Formatting (targets your 3-4 paragraphs) */
.rss-post p {
font-size: 1.1rem;
margin-bottom: 24px;
text-align: justify;
}
/* Make the first paragraph slightly larger for visual hierarchy */
.rss-post p:first-of-type {
font-size: 1.2rem;
font-weight: 500;
}
/* Focus mode (Optional): Emphasize the second paragraph */
.rss-post p:nth-of-type(2) {
color: #4a5568;
}
/* Last paragraph styled as a wrap-up or conclusion */
.rss-post p:last-of-type {
margin-bottom: 0;
font-style: italic;
color: #555555;
}
/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
.rss-post {
margin: 16px;
padding: 16px;
}
.rss-post h2 {
font-size: 1.5rem;
}
.rss-post p {
font-size: 1rem;
}
}

