body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: auto;
  margin-left: 10px;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: black;
}

.nav-links a:hover {
  text-decoration: underline;
}

.page-content {
  padding: 2rem 0;
}

.page-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

.sidebar {
  width: 150px;
}

.content-container {
  flex: 1;
  max-width: 1000px;
  font-size: 1.15rem;
  line-height: 1.8;
  padding: 2rem 1rem;
  margin: 0 auto;
}

.content-container h1,
.content-container h2,
.content-container h3 {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-container p {
  margin-bottom: 1.2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.boxed {
  background-color: #f9f9f9; /* Light gray background */
  border: 1px solid #ddd;    /* Subtle border */
  border-radius: 8px;        /* Rounded corners */
  padding: 1.5rem;           /* Inner spacing */
  margin: 2rem 0;            /* Vertical spacing */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Soft shadow */
  font-size: 1.1rem;         /* Slightly larger font */
  line-height: 1.6;          /* Improved readability */
}


.post-date,
.entry-date,
.date,
.meta-date {
  display: none !important;
}



.category-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  background-color: #eef; /* light blue like your screenshot */
  font-weight: bold;
}

.category-bar a {
  text-decoration: none;
  color: black;
}

.category-bar a.active {
  text-decoration: underline;
}

body, main, header, h1, h2, h3, nav {
  margin-top: 0;
  padding-top: 0;
}


@media (max-width: 600px) {
  .page-wrapper {
    padding: 5px;
  }
}

@media (max-width: 600px) {
  .sidebar {
    display: none;
  }

  .content-container {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 600px) {
  .category-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .category-bar a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}


a h3 {
  color: black;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: normal;
  margin: 0.5rem 0;
}

/* Ensure underline doesn't sneak in from parent anchor */
a {
  text-decoration: none;
}

a h3:hover {
  color: #333;
  text-decoration: underline; /* Optional: remove this line if you don't want it at all */
}


