.blog-cover-image {
  width: 100%;
  height: 60vh;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}
.blog-cover-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-details {
  padding: 0 0 80px;
  background: #fff;
}
.blog-details .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-details .blog-details-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.blog-details .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.blog-details .blog-category {
  color: #00abdc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-details .blog-title {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}
.blog-details .blog-content {
  max-width: 800px;
  margin: 0 auto;
}
.blog-details .blog-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-details .blog-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-details .video-section {
  margin: 50px 0;
}
.blog-details .video-section .video-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.blog-details .video-section .video-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00abdc;
}
.blog-details .video-section .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-details .video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.blog-details .related-articles {
  margin: 60px 0 40px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}
.blog-details .related-articles h3 {
  font-size: 22px;
  color: #333;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.blog-details .related-articles h3 a {
  color: #00abdc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-details .related-articles h3 a:hover {
  color: #005c76;
  text-decoration: underline;
}
.blog-details .related-articles h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00abdc;
}
.blog-details .blog-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}
.blog-details .blog-text img,
.blog-details .blog-content > img,
.blog-details .blog-content figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.blog-details .blog-text figure,
.blog-details .blog-content figure {
  margin: 30px auto;
  max-width: 100%;
}
.blog-details .blog-text figure figcaption,
.blog-details .blog-content figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  text-align: center;
  font-style: italic;
}
.blog-details .blog-text h2 {
  font-size: 28px;
  margin: 50px 0 20px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}
.blog-details .blog-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00abdc;
}
.blog-details .blog-text p {
  margin-bottom: 25px;
}
.blog-details .blog-text a {
  color: #00abdc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-details .blog-text a:hover {
  color: #005c76;
  text-decoration: underline;
}
.blog-details .blog-section {
  margin: 40px 0;
}
.blog-details .blog-section:first-child {
  margin-top: 0;
}
.blog-details .blog-section h2 {
  font-size: 28px;
  margin: 50px 0 20px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}
.blog-details .blog-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00abdc;
}
.blog-details .blog-section .section-image {
  margin: 30px 0;
  text-align: center;
}
.blog-details .blog-section .section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.blog-details .blog-section .section-image figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}
.blog-details .blog-section .section-content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}
.blog-details .blog-section .section-content p {
  margin-bottom: 25px;
}
.blog-details .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}
.blog-details .blog-tags .tag {
  background: #f0f7fc;
  color: #00abdc;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-details .blog-tags .tag:hover {
  background: #00abdc;
  color: #fff;
}
.blog-details .blog-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 50px 0;
}
.blog-details .blog-share span {
  font-weight: 700;
  color: #333;
}
.blog-details .share-buttons {
  display: flex;
  gap: 10px;
}
.blog-details .share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}
.blog-details .share-button:hover {
  background: #00abdc;
  color: #fff;
  transform: translateY(-3px);
}

.related-posts {
  width: 100%;
  max-width: 100vw;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-family: "Nunito Sans", Arial, sans-serif;
  background: rgba(0, 96, 188, 0.0588235294);
  margin-top: 0;
}
.related-posts .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
.related-posts h2 {
  font-size: 32px;
  font-weight: 800;
  color: #545454;
  text-align: center;
  max-width: 800px;
  margin: 0 0 40px 0;
  position: relative;
  padding-bottom: 15px;
  width: auto;
  left: auto;
  transform: none;
  display: block;
}
.related-posts h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00abdc;
}
@media (max-width: 768px) {
  .related-posts h2 {
    font-size: 24px;
  }
}
.related-posts .blog-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .related-posts .blog-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-posts .blog-cards-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.related-posts .blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
  gap: 16px;
  text-align: left;
}
.related-posts .blog-card .blog-icon {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.related-posts .blog-card .blog-title {
  font-size: 22px;
  font-weight: 700;
  color: #545454;
  margin: 0;
  text-transform: capitalize;
  line-height: 1.2;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-posts .blog-card .blog-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-align: left;
}
.related-posts .blog-card .blog-button {
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-start;
  margin: 0;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00abdc 0%, #005c76 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.related-posts .blog-card .blog-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 171, 220, 0.3);
}

@media (max-width: 992px) {
  .blog-details .blog-title {
    font-size: 36px;
  }
  .blog-details .blog-text {
    font-size: 16px;
  }
  .blog-details .blog-text h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .blog-details {
    padding: 50px 0;
  }
  .blog-details .blog-title {
    font-size: 30px;
  }
  .blog-details .blog-share {
    flex-direction: column;
    align-items: flex-start;
  }
  .related-posts {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .blog-details .blog-title {
    font-size: 26px;
  }
  .blog-details .blog-text h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=blog-details.css.map */