body {
  background-color: #ffffff;
}

/* blog hero */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, Roboto,
    sans-serif;
}
.blog-top-header .nav-link {
  color: #2a446f;
}
.blog-top-header .contact-button {
  background-color: #006dc1;
}

.blog-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f4fafd;
  margin-top: 65px;
}

.blog-hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  margin: 0 auto;
}

.blog-hero__date {
  color: #0061ab;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.blog-hero__title {
  color: #000;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 1400px;
}

.blog-hero__tagline {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
}

.blog-hero__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #006dc1;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  transition: background-color 0.2s;
}

.blog-hero__share-btn:hover {
  background-color: #106ebe;
}

.blog-hero__share-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

/* Hero image - large photo above Executive Summary */
.blog-hero__image {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
}

.blog-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 480px;
}

/* Share button at bottom of article */
.blog-share-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 24px 64px;
  width: 100%;
  text-align: center;
}

.summary-text {
  font-size: 19px;
  max-width: 600px;
  line-height: 1.6;
}

.summary-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #002f4b;
  color: white;
}

.summary-sub-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 0;
  max-width: 960px;
  margin: 0 auto;
  gap: 60px;
}

.summary-title {
  font-size: 19px;
  font-weight: 500;
  min-width: 200px;
  flex-shrink: 0;
}

.blog-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.blog-section_main_header {
  display: flex;
  padding: 48px 0;
}

.read-story-title {
  font-size: 20px;
  font-weight: 500;
  width: 200px;
}

.blog-compny-logo {
  width: calc(100% - 200px);
  display: flex;
  justify-content: center;
  translate: -125px;
}

.blog-compny-logo img {
  height: 80%;
  margin: auto;
}

.blog-section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 24px;
  margin: 0 auto;
}

.blog-section__start__comma {
  height: 72px;
  width: 72px;
  font-size: 50px;
  background-color: #106ebe;
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: start;
  justify-content: center;
}
.blog-section__start__comma svg {
  height: 20px;
  width: 100%;
  rotate: 180deg;
  margin-top: 16px;
}

.blog-section__title {
  color: #000;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 1200px;
}

.blog-section__subtitle {
  font-size: 16px;
}

.blog-section__content {
  max-width: 650px;

  padding: 48px 24px;
  margin: 0 auto;
}

.blog_content_titles {
  font-size: 32px;
  font-weight: 600;
}

.blog_content_details {
  font-size: 16px;
  margin: 30px 0;
  line-height: 1.6;
}

.blog-conclusion-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: #002f4b;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 2px solid #d0e8f5;
}

.blog-section__content a {
  color: #0078d4;
}

/* Blog data tables */
.blog-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.blog-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  min-width: 600px;
}

.blog-data-table thead tr {
  background-color: #002f4b;
  color: #ffffff;
}

.blog-data-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.blog-data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  color: #333;
}

.blog-data-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.blog-data-table tbody tr:hover {
  background-color: #e7f1ff;
}

.blog-data-table tbody tr.table-highlight {
  background-color: #e7f1ff;
  font-weight: 600;
}

.blog-data-table tbody tr.table-highlight td {
  color: #002f4b;
  border-bottom: 1px solid #b6d4fe;
}

@media (max-width: 1440px) {
  .summary-sub-container {
    flex-direction: column;
    gap: 20px;
    padding: 80px 24px;
  }
  .summary-text {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .blog-section__title {
    font-size: 24px;
  }

  .blog_content_titles {
    font-size: 24px;
  }
  .blog-section__content {
    max-width: 100%;
  }

  .blog-hero__title {
    font-size: 36px;
    padding: 0 0;
  }
  .summary-text {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-compny-logo img {
    height: 65%;
    margin: auto;
    margin-bottom: 0;
  }
  .blog-hero__content {
    padding: 32px 24px;
  }

  .blog-hero__title {
    font-size: 28px;
  }

  .blog-hero__image {
    max-width: 100%;
    margin: 24px auto 0;
  }

  .blog-hero__image img {
    max-height: 320px;
    border-radius: 8px;
  }

  .blog-share-bottom {
    padding: 32px 24px 48px;
  }
}

@media (max-width: 480px) {
  .blog-hero__content {
    padding: 24px 0;
  }

  .blog-hero__title {
    font-size: 24px;
  }

  .blog-hero__image img {
    max-height: 240px;
  }
}
@media (max-width: 768px) {
  .summary-container {
    padding: 10px;
  }

  .summary-title {
    font-size: 1.25rem;
  }

  .summary-text {
    font-size: 0.95rem;
  }
}
