.breadcrumb {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.breadcrumb:before {
  content: "";
  background: rgba(48, 65, 105, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.breadcrumb .container {
  padding: 30px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.breadcrumb .icon {
  margin-right: 15px;
}
.breadcrumb .content h1 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.breadcrumb .navigation {
  display: flex;
  align-items: center;
}
.breadcrumb .content a {
  color: #fff;
  font-size: 13px;
  opacity: 0.5;
  margin-right: 15px;
}
.breadcrumb .content a:last-child {
  opacity: 1;
}
.breadcrumb .content svg {
  margin-right: 15px;
}

.fact--page .facts--wrapper {
  padding: 40px 0;
  display: flex;
  max-width: 800px;
  margin: 0 auto;
}

.fact--page .facts--wrapper .facts {
  width: 100%;
  padding: 0 30px;
}

.fact--page .facts--wrapper .sidebar {
  width: 300px;
}

.fact--page .facts > div {
  margin: 0 auto;
  width: 100%;
}

.fact--page .facts {
  margin: 0;
}
.fact--page .facts .col {
  padding: 0;
}

/* New Fact Single Card Styles */
.fact-single-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 10px 40px rgba(48, 65, 105, 0.1);
}

.fact-single-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3fa;
}

.fact-single-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fact-single-content {
  padding: 40px;
}

.fact-single-description {
  font-size: 24px;
  line-height: 1.7;
  color: #304169;
  font-weight: 500;
}

.fact-single-description p {
  margin: 0 0 20px 0;
  font-size: 24px;
  line-height: 1.7;
}

.fact-single-description p:last-child {
  margin-bottom: 0;
}

.fact-single-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f3fa;
}

.fact-single-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #f78677;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.fact-single-source:hover {
  opacity: 0.8;
  text-decoration: none;
}

.fact-single-source svg {
  flex-shrink: 0;
}

.fact-single-date {
  font-size: 15px;
  color: #a8a8a8;
}

@media (max-width: 960px) {
  .fact--page .facts--wrapper {
    flex-direction: column;
    padding: 20px 0;
  }

  .fact--page .facts--wrapper .facts {
    padding: 0 15px;
  }

  .fact--page .sidebar {
    width: 100%;
  }

  .fact--page .facts {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .fact--page .facts .col {
    width: 100% !important;
    float: none;
  }

  .fact-single-content {
    padding: 25px;
  }

  .fact-single-description,
  .fact-single-description p {
    font-size: 18px;
  }

  .fact-single-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
