 .content-wrapper {
     max-width: 800px;
     margin: auto;
     padding: 20px;
     margin-top: 70px;
     /* Added to push the content below the navbar */
 }

 .content-title {
     font-size: 28px;
     font-weight: bold;
     margin-bottom: 15px;
 }

 .content-wrapper p {
     text-align: justify;
     /* Added to justify the paragraph text */
 }

 #photo-gallery {
     position: relative;
     width: 100%;
     max-width: 800px;
     margin: auto;
     overflow: hidden;
 }

 .gallery-header {
     position: absolute;
     top: 0;
     left: 0;
     margin-top: 12px;
     /* Adjust the spacing here */
     margin-left: 0;
     font-size: 24px;
     color: white;
     background: rgba(0, 0, 0, 0.5);
     padding: 10px;
     z-index: 1000;
 }

 .slides {
     display: flex;
     transition: transform 0.5s ease;
 }

 .slide {
     min-width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .slide img {
     max-width: 100%;
     height: 400px;
     /* Set a uniform height */
     object-fit: cover;
     /* Ensures the image fills the space while maintaining aspect ratio */
 }

 .thumbnails {
     display: flex;
     justify-content: center;
     margin-top: 10px;
     padding-bottom: 20px;
 }

 .thumbnails img {
     width: 100px;
     height: 75px;
     /* Adjust this to match the uniform height */
     object-fit: cover;
     /* Ensures the image fills the thumbnail space */
     margin: 0 5px;
     cursor: pointer;
 }

 .arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.5);
     color: white;
     padding: 10px;
     cursor: pointer;
     z-index: 1000;
     user-select: none;
 }

 .left-arrow {
     left: 10px;
 }

 .right-arrow {
     right: 10px;
 }

 .post-navigation {
     display: flex;
     justify-content: space-between;
     margin-top: 40px;
     padding: 10px;
     background-color: #0c0c0c;
     border-top: 1px solid #ddd;
 }

 .video-container {
     margin: 20px 0;
     text-align: center;
 }

 .video-wrapper {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     /* 16:9 aspect ratio (height / width * 100%) */
     height: 0;
     overflow: hidden;
 }

 .video-wrapper iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
 }

 .video-description {
     font-size: 16px;
     color: #333;
     margin-top: 10px;
     text-align: center;
 }

 .byline {
     font-style: italic;
     text-align: right;
     margin-top: 20px;
 }