<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ===============================
   Fonts & Colors
================================== */
@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Montserrat:wght@500;700&family=Roboto&display=swap');

:root {
  --bg-dark: #163948;
  --nav-bg: #1E4B66;
  --text-color: #ACB99F;
  --heading-color: #C9BB8B;
  --section-bg: #1F4966;
  --accent-color: #C9BB8B;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-nav: 'Bitter', serif;
}

/* ===============================
   Base Styles
================================== */
body.blog-post-page {
  background-color: var(--bg-dark);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.7;
  margin: 0;
  padding-bottom: 4rem;
  min-height: 100vh;
}

/* ===============================
   Navigation
================================== */
.main-header {
  background-color: var(--nav-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  font-family: var(--font-nav);
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--heading-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  outline: none;
}

/* ===============================
   Blog Post Wrapper & Article
================================== */
.blog-post-wrapper {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
  background-color: var(--section-bg);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.7);
}

.blog-post {
  padding: 2rem 2.5rem;
}

/* ===============================
   Titles & Metadata
================================== */
.post-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--accent-color);
}

.post-meta {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* ===============================
   Post Cover Image
================================== */
.post-cover {
  max-width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.8);
}

.post-cover img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===============================
   Post Body Content
================================== */
.post-body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-color);
}

.post-body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.post-body p {
  margin-bottom: 1.4rem;
}

.post-body ul {
  list-style: disc inside;
  margin-left: 1.5rem;
  margin-bottom: 1.6rem;
}

.post-body ul li {
  margin-bottom: 0.8rem;
}

.post-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
  background-color: rgba(201, 187, 139, 0.15);
  border-left: 4px solid var(--accent-color);
  border-radius: 6px;
  color: var(--accent-color);
}

/* ===============================
   Tags Section
================================== */
.blog-tags {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-tags span {
  background-color: var(--nav-bg);
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease;
  cursor: default;
}

.blog-tags span:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
}

/* ===============================
   Responsive
================================== */
@media (max-width: 700px) {
  .post-title {
    font-size: 2.2rem;
  }
  .post-body h2 {
    font-size: 1.5rem;
  }
  .blog-post-wrapper {
    padding: 1rem;
  }
  .blog-post {
    padding: 1rem 1.5rem;
  }
}

.wrapped-image-left {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.wrapped-image-right {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.wrapped-image-center {
  float: center;
  margin: 0 0 20px 20px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.wrapped-image-right-medium {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.wrapped-image-left-medium {
  float: left;
  margin: 20px 20px 0 0;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}


.wrapped-image-right-small {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

.wrapped-image-left-small {
  float: left;
  margin: 20px 20px 0 0;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .wrapped-image-left,
  .wrapped-image-right {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
}

</style>
<!-- end Simple Custom CSS and JS -->
