/* Blog Common Styles */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.blog_wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

/* Blog Header */
.blog_header {
  background: linear-gradient(135deg, #ed6224 0%, #ff8c5f 100%);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog_header .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_header .logo {
  display: inline-block;
}

.blog_header .logo img {
  height: 45px;
}

.blog_header .home_btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog_header .home_btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Blog Content */
.blog_content {
  padding: 60px 40px;
}

.blog_content .category {
  display: inline-block;
  background: #fffbf8;
  color: #ed6224;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #ed6224;
}

.blog_content .blog_title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #1e1e1e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog_content .blog_meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
  color: #666;
  font-size: 15px;
}

.blog_content .blog_meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Table of Contents */
.blog_toc {
  background: #f9f9f9;
  border-left: 4px solid #ed6224;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.blog_toc h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.blog_toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog_toc ul li {
  margin-bottom: 12px;
}

.blog_toc ul li a {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  display: block;
  padding-left: 20px;
  position: relative;
}

.blog_toc ul li a:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ed6224;
}

.blog_toc ul li a:hover {
  color: #ed6224;
}

/* Blog Section */
.blog_section {
  margin-bottom: 50px;
}

.blog_section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ed6224;
  letter-spacing: -1.5px;
}

.blog_section h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 35px 0 20px;
  letter-spacing: -1px;
}

.blog_section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.blog_section strong,
.blog_section b {
  color: #ed6224;
  font-weight: 700;
}

/* Highlight Box */
.highlight_box {
  background: linear-gradient(135deg, #fffbf8 0%, #fff5f0 100%);
  border-left: 5px solid #ed6224;
  padding: 25px 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.highlight_box p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}

.highlight_box strong {
  font-size: 19px;
}

/* Info Cards */
.info_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.info_card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.info_card:hover {
  border-color: #ed6224;
  box-shadow: 0 5px 15px rgba(237, 98, 36, 0.1);
  transform: translateY(-3px);
}

.info_card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.info_card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* List Styles */
.blog_section ul,
.blog_section ol {
  margin: 25px 0;
  padding-left: 25px;
}

.blog_section ul li,
.blog_section ol li {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.blog_section ul li::marker {
  color: #ed6224;
}

/* Numbered List Style */
.numbered_list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered_list li {
  counter-increment: item;
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.numbered_list li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #ed6224 0%, #ff8c5f 100%);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.numbered_list li h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.numbered_list li p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Table Styles */
.comparison_table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.comparison_table thead {
  background: linear-gradient(135deg, #ed6224 0%, #ff8c5f 100%);
  color: #fff;
}

.comparison_table th,
.comparison_table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
}

.comparison_table th {
  font-weight: 700;
  font-size: 17px;
}

.comparison_table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.comparison_table tbody tr:hover {
  background: #fffbf8;
}

.comparison_table tbody td {
  color: #444;
}

/* CTA Section */
.blog_cta {
  background: linear-gradient(135deg, #ed6224 0%, #ff8c5f 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
}

.blog_cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.blog_cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 25px;
}

.blog_cta .cta_btn {
  display: inline-block;
  background: #fff;
  color: #ed6224;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog_cta .cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Related Links */
.related_links {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.related_links h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 25px;
  text-align: center;
}

.related_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.related_links li a {
  display: block;
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  border: 2px solid #f0f0f0;
  color: #333;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 45px;
}

.related_links li a:before {
  content: "→";
  position: absolute;
  left: 20px;
  color: #ed6224;
  font-size: 20px;
  font-weight: 700;
}

.related_links li a:hover {
  border-color: #ed6224;
  background: #fffbf8;
  padding-left: 50px;
}

/* Blog Footer */
.blog_footer {
  background: #282a29;
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

.blog_footer p {
  margin: 5px 0;
  font-size: 14px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .blog_content {
    padding: 40px 20px;
  }

  .blog_content .blog_title {
    font-size: 28px;
  }

  .blog_section h2 {
    font-size: 24px;
  }

  .blog_section h3 {
    font-size: 20px;
  }

  .blog_section p,
  .blog_section ul li,
  .blog_section ol li {
    font-size: 16px;
  }

  .info_cards {
    grid-template-columns: 1fr;
  }

  .numbered_list li {
    padding-left: 50px;
  }

  .numbered_list li:before {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

