
                .box {
                        border: 4px solid #f76707;
                        border-radius: 5px;
                        padding: 25px;
                        margin: 0 auto;
                        max-width: fit-content;
                        box-sizing: border-box;
                        overflow-wrap: break-word;
                        overflow: hidden;
                }

                /* On very large screens, shrink the box width slightly */
                @media (min-width: 1200px) {
                        .box {
                                max-width: 65%;
                        }
                }

                /* Optional: Tighten width even more on ultra-wide monitors */
                @media (min-width: 1600px) {
                        .box {
                                max-width: 55%;
                        }
                }

.section {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px; /* space between sections */
}

/* Optional: Remove bottom margin on the last one */
.section:last-child {
    margin-bottom: 0;
}
                .post {
                        font-family: Georgia, serif;
                        font-size: 1.1rem;
                        line-height: 1.6;
                        color: white;

                        word-break: break-word;
                        overflow-wrap: break-word;
                        hyphens: auto;

                        text-align: left;
                        padding: 0;
                        margin: 0;
                }

                .post-entry {
                				position: relative;
                				padding-bottom: 1.5em;
                        margin-bottom: 2em;
                        /* optional line separator */
                }
                
                .post-entry header {
                  			display: block;
                        margin-bottom: 0.5em;
                }

                .post-entry h2 {
                				display: block;
                				margin: 0 0 0.25em 0;
                        font-size: 1.4em;
                        font-weight: bold;
                }

                .post-entry time {
                				display: block;
                        font-size: 0.9em;
                        color: #ccc;
                }
.separator {
  display: flex;
  align-items: center;
  margin: 1.5em 0 2em;
}

.separator::before,
.separator::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #444;
}

.separator::before {
  margin-right: 0.6em;
}

.separator::after {
  margin-left: 0.6em;
}

.separator span {
  color: #f76707;
  font-size: 1.4em;
  line-height: 1;
  user-select: none; /* optional, prevents star text selection */
}

                header {
                        display: flex;
                        justify-content: center;
                        padding: 5px;
                        color: white;
                        font-size: 1.2em;
                }
