/* General layout */
body.single-post {
  background: #f7f9fa;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Container */
.alsadhikblogtech-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Header Section */
.alsadhikblogtech-header {
  position: relative;
  background: #103E57;
  color: #fff;
  text-align: center;
  padding: 100px 30px 60px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.alsadhikblogtech-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.alsadhikblogtech-meta {
  font-size: 0.9rem;
  color: #c8e3f0;
}

/* Featured Image */
.alsadhikblogtech-featured {
  margin-top: -80px;
  text-align: center;
}
.alsadhikblogtech-featured img {
  width: 85%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Post Content */
.alsadhikblogtech-content {
  padding: 40px 35px;
  line-height: 1.8;
  font-size: 1rem;
}

.alsadhikblogtech-content img {
  border-radius: 10px;
  margin: 20px 0;
}

/* Newsletter Section */
.alsadhikblogtech-newsletter {
  background: #103E57;
  color: white;
  text-align: center;
  padding: 70px 30px;
  border-radius: 20px;
  margin: 40px 30px;
}
.alsadhikblogtech-newsletter img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.alsadhikblogtech-newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.alsadhikblogtech-newsletter input[type="email"] {
  padding: 12px;
  border-radius: 25px;
  border: none;
  width: 60%;
  max-width: 300px;
  margin-right: 10px;
}
.alsadhikblogtech-newsletter button {
  background: white;
  color: #103E57;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

/* Related Posts */
.alsadhikblogtech-related {
  padding: 40px 30px;
}
.alsadhikblogtech-related h2 {
  color: #103E57;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
}
.alsadhikblogtech-related-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.alsadhikblogtech-related-post {
  background: #f1f6f8;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}
.alsadhikblogtech-related-post:hover {
  transform: translateY(-5px);
}
.alsadhikblogtech-related-post img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
}

/* Author Section */
.alsadhikblogtech-author {
  background: #f5f8f9;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  margin: 40px 30px;
}
.alsadhikblogtech-author img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.alsadhikblogtech-author h4 {
  color: #103E57;
  margin-bottom: 5px;
}

/* Comments */
.comments-area {
  padding: 40px 30px;
  background: #f7fafb;
  border-radius: 15px;
  margin: 40px 30px;
}
.comment-body {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .alsadhikblogtech-featured img { width: 95%; }
  .alsadhikblogtech-newsletter input, .alsadhikblogtech-newsletter button {
    width: 100%;
    margin-bottom: 10px;
  }
  .alsadhikblogtech-author {
    flex-direction: column;
    text-align: center;
  }
}
