body { 
  background-image: url('images/lainbg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed; 
}

/* header */
#blog-header {
    background: #0085FA;
    color: #000000;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Cinzel';
    letter-spacing: 2px;
    padding: 14px 0;
    margin-bottom: 0;
    border-bottom: 2px solid #52c2fa;
  }
  
#blog-wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
  }
  
/* left side bar */
#blog-sidebar {
    width: 200px;
    background: #0a0a0a;
    border-right: 2px solid #52c2fa;
    min-height: 100vh;
    padding: 14px 10px;
    font-family: 'Cinzel';
    font-size: 12px;
    color: #cccccc;
  }
  
#blog-sidebar strong {
    color: #ffffff;
    font-size: 13px;
  }
  
#blog-sidebar a {
    color: #52c2fa;
    text-decoration: none;
    display: block;
    margin: 2px 0;
  }
  
#blog-sidebar a:hover {
  color: #1c91ff;
  text-decoration: underline;
}

.sidebar-section {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #222;
  }
  
/* main blog area */
#blog-main {
    flex: 1;
    padding: 20px 24px;
    background: #000;
    min-height: 100vh;
    color: white;
  }

/* individual posts */
.blog-post {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.blog-post:last-child {
  border-bottom: none;
}

.post-divider {
  border: none;
  border-top: 1px solid #ffffff;   
  margin: 16px 0 0 0;
}

.post-title {
  color: #ffffff;
  font-family: 'Cinzel';
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px 0;
}

.post-date {
  color: #52c2fa;
  font-size: 11px;
  font-family: 'Cinzel';
  margin-bottom: 12px;
}

.post-preview {
  color: #cccccc;
  font-size: 12px;
  line-height: 1.7;
  margin: 10px 0 0 0;
}

/* images */

.post-images {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.post-images img {
  width: 200px;
  height: 150px;
  object-fit: cover;    
  border: 1px solid #333;
}
  
  
  
  