/*-------------------------------------------------------*/
/* Blog Adjustments
/*-------------------------------------------------------*/
.post-content p{
	font-size: 1.38em !important;
	line-height: 200%;
	font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 420;
  font-style: normal;
}

pre[class*="language-"] {
    border-radius: 6px;
    margin: 1.5em 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.token.comment {
    color: #6a9955;
}

.token.keyword {
    color: #569cd6;
}

.token.string {
    color: #ce9178;
}

.token.function {
    color: #dcdcaa;
}

/* Copy button styling */
.copy-to-clipboard-button {
    background-color: #2d2d2d;
    border: 1px solid #3f3f3f;
    border-radius: 4px;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8em;
}

.copy-to-clipboard-button:hover {
    background-color: #3f3f3f;
}

.post-preview {
    margin-bottom: 2rem;
}

.post-title {
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #666;
    margin-bottom: 1rem;
}

.post-excerpt {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}
.social-share {
  padding: 20px 0;
  text-align: center;
}

.social-share ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-share ul li {
  display: inline-block;
  margin: 0 10px;
}

.social-share ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.social-share ul li a:hover {
  background: #333;
  color: #fff;
}
.newsletter-container {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h4 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.newsletter-box p {
    margin-bottom: 25px;
    color: #666;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.form-group {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #555;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }
}