/* Reset and base styles */
.blog-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header styles */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.blog-header p {
  font-size: 1.2rem;
  color: #666;
}

.blog-video-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.blog-video-container iframe {
  max-width: 100%;
  border-radius: 8px;
}

/* Tab navigation */
.blog-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-tab-button {
  background-color: #444;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-tab-button:hover {
  background-color: #222;
}

.blog-tab-button.blog-active {
  background-color: #0078D7;
}

/* Tab content only */
.blog-tab-content {
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  color: #000;       /* make all text inside black */
  font-size: 14px;   /* set base font size */
}

.blog-tab-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0078D7;    /* keep headings distinct */
}

.blog-tab-content p {
  margin-bottom: 10px;
}

.blog-tab-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.blog-tab-content ul li {
  margin-bottom: 8px;
}
.blog-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
