
		body {
		  margin: 0;
		  font-family: 'Inter', sans-serif;
		  background-color: #f8f9fa; /* much lighter gray */
		  color: #333;
		  line-height: 1.6;
		  display: flex;
		  justify-content: center;
		  padding: 60px 0;
		}

		@media (max-width: 768px) {
		  body {
		    padding: 0;
		  }
		}
	  
		.container {
		  background-color: #ffffff;
		  width: 90%;
		  max-width: 1100px; /* slightly wider */
		  border-radius: 16px;
		  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
		  overflow: hidden;
		}

		@media (max-width: 768px) {
		  .container {
		    width: 100%;
		    border-radius: 0;
		  }
		}
	  
		header {
		  background-color: #56c4aa;
		  color: #ffffff;
		  padding: 30px 60px;
		  display: flex;
		  justify-content: space-between;
		  align-items: center;
		}

		@media (max-width: 768px) {
		  header {
		    flex-direction: column;
		    padding: 30px 20px;
		    text-align: center;
		  }
		}
	  
		.site-title {
		  font-size: 22px;
		  font-weight: 800; /* Extra bold */
		  letter-spacing: -0.5px;
		  color: #ffffff;
		  display: flex;
		  align-items: center;
		  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
		}

		@media (max-width: 768px) {
		  .site-title {
		    margin-bottom: 25px;
		    justify-content: center;
		  }
		}
	  
		.site-title picture img {
		  height: 32px; /* Slightly smaller logo */
		  width: auto;
		  margin-right: 12px;
		}
	  
		nav a {
		  margin-left: 30px;
		  text-decoration: none;
		  color: #ffffff;
		  font-weight: 500;
		  font-size: 0.95rem;
		  transition: all 0.2s ease;
		}

		@media (max-width: 768px) {
		  nav {
		    display: flex;
		    flex-wrap: wrap;
		    justify-content: center;
		    gap: 15px;
		  }
		  nav a {
		    margin-left: 0;
		    margin: 0 5px;
		  }
		}
	  
		nav a:hover {
		  color: #ffffff;
		  text-decoration: none;
		  opacity: 1;
		}

        nav a i {
          margin-right: 4px;
          opacity: 0.7;
        }
	  
		main.with-sidebar {
		  display: flex;
		  gap: 60px; /* more gap */
		  padding: 50px 60px;
		}

		@media (max-width: 768px) {
		  main.with-sidebar {
		    flex-direction: column-reverse;
		    padding: 30px 20px;
		    gap: 40px;
		  }
		}

        main.without-sidebar {
            padding: 50px 60px;
            max-width: 800px; /* limit content width for better readability */
            margin: 0 auto;
        }

		@media (max-width: 768px) {
		    main.without-sidebar {
		        padding: 30px 20px;
		    }
		}
		
		.content {
		  flex: 2;
		}
		
		.sidebar {
		  flex: 1;
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  background-color: #fcfcfc;
		  padding: 30px;
		  border-radius: 12px;
		  border: 1px solid #f0f0f0;
		}
		
		.profile-photo, .sidebar picture img {
		  height: 250px; /* Reduced height for better proportions */
		  width: 250px;
		  object-fit: cover;
		  border-radius: 50%; /* Circle for a modern look */
		  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
		  margin-bottom: 25px;
		  border: 4px solid #fff;
		}

		@media (max-width: 768px) {
		  .profile-photo, .sidebar picture img {
		    height: 180px;
		    width: 180px;
		  }
		}
		
		.social-links a img, .social-links a picture img {
		  height: 25px;
		  width: auto;
		  margin: 0;
		  border-radius: 0;
		  box-shadow: none;
		  display: inline; /* Changed to inline */
		  vertical-align: middle;
		}
		
		.social-links a:hover {
		  text-decoration: underline;
		}

		main a,
		main a:visited {
		  color: #38a88e; /* Slightly deeper teal for better contrast on white */
		  text-decoration: none;
		  border-bottom: 1px solid rgba(86, 196, 170, 0.2);
		  transition: all 0.2s ease;
		}

		main a:hover {
		  color: #56c4aa;
		  border-bottom: 1px solid #56c4aa;
		  text-decoration: none;
		}

		.photo-showcase {
		  margin: 20px 0;
		  text-align: center;
		}

		.photo-showcase img, .photo-showcase picture img {
		  border-radius: 8px;
		  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
		  max-width: 400px;
		  width: 100%;
		  height: auto;
		}

  .photo-showcase.bill-gates img, .photo-showcase.bill-gates picture img {
  		  max-width: 240px;
  		}

  		.photo-showcase figcaption {
		  margin-top: 10px;
		  font-style: italic;
		  color: #666;
		}

		/* Work logos */
		.work-logos {
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  gap: 40px;
		  margin: 30px 0;
		}

		.work-logos img, .work-logos picture img {
		  height: auto;
		  max-width: 200px;
		  width: 100%;
		}

		@media (max-width: 600px) {
		  .work-logos {
		    flex-direction: column;
		    gap: 20px;
		  }
		}

		/* Blog styles */
		hr {
		  border: 0;
		  border-bottom: 1px solid #f0f0f0;
		  margin: 60px 0;
		  width: 100%;
		}

		.post-list {
		  list-style: none;
		  padding: 0;
		}

		.post-list li {
		  margin-bottom: 30px;
		  padding-bottom: 30px;
		  border-bottom: 1px solid #f0f0f0;
		}

		.post-list time {
		  color: #999;
		  font-size: 0.85rem;
		  text-transform: uppercase;
		  letter-spacing: 0.05em;
		}

		.post-list a {
		  font-weight: 700;
		  font-size: 1.25rem;
		  color: #333 !important;
		  border-bottom: none !important;
		}

        .post-list a:hover {
          color: #56c4aa !important;
        }

		.post-date, .album-genre {
		  margin-bottom: 10px;
		  color: #999;
		  font-size: 0.8rem;
		  font-weight: 600;
		  text-transform: uppercase;
		  letter-spacing: 0.1em;
		}

		main h1, main h2, main h3 {
		  color: #2c3e50; /* Darker, more professional color for headers */
		  font-weight: 800;
		  letter-spacing: -0.02em;
		}

        .post-full h2 a {
            color: #2c3e50 !important;
            border-bottom: none !important;
            transition: color 0.2s ease;
        }

        .post-full h2 a:hover {
            color: #56c4aa !important;
        }

		.post h2, .post h1 {
		  margin-top: 0;
          line-height: 1.2;
		}

        .post-content {
            font-size: 1.05rem;
            color: #444;
        }

        .post-content p {
            margin-bottom: 1.5rem;
        }

		.post-content img, .post-content picture img {
		  max-width: 100%;
		  height: auto;
		  border-radius: 8px;
		  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		  display: block;
		  margin: 20px auto;
		}

		.post-content img.album-art, .post-content picture.album-art img {
		  float: left;
		  max-width: 30%;
		  margin: 0 20px 10px 0;
		  display: inline; /* override block */
		}

		.post-content blockquote {
		  margin: 20px 0;
		  padding: 10px 20px;
		  border-left: 4px solid #56c4aa;
		  background-color: rgba(86, 196, 170, 0.05);
		  font-style: italic;
		  color: #555;
		  overflow: hidden; /* prevents overlapping with floated images */
		}

		.post-content blockquote p {
		  margin: 5px 0;
		}

		.album-entry {
		  clear: both;
		  margin-bottom: 30px;
		  overflow: hidden; /* containment */
		}

  .post-footer {
    margin-top: 60px;
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
  }

  .post-navigation {
    margin-bottom: 30px;
  }

  .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  @media (max-width: 600px) {
    .nav-links {
      flex-direction: column;
      gap: 20px;
    }
    .prev-post, .next-post, .back-link {
      text-align: center;
      width: 100%;
    }
  }

  .nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    color: #666 !important;
    border-bottom: none !important;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: #56c4aa !important;
  }

  .prev-post {
    text-align: left;
  }

  .back-link {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    color: #999 !important;
  }

  .next-post {
    text-align: right;
  }

  .nav-links span {
    flex: 1;
  }

		.archive-post {
		  margin-bottom: 25px !important;
		}
