.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;
}

.category--page .articles--wrapper {
  padding: 0px 0;
  display: flex;
}

.category--page .articles--wrapper .articles {
  width: 100%;
}

.category--page .articles--wrapper .sidebar {
  width: 300px;
}

.category--page .meta {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category--page .meta > div {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.category--page .meta .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category--page .meta span {
  font-weight: bold;
  font-size: 13px;
  color: #a8a8a8;
}

.category--page .meta span:nth-child(1) {
  margin-right: 12px;
}

.category--page .article {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f0f3fa;
  box-shadow: 0px 7px 24px #f0f3fa;
}

.category--page .articles > div {
  float: left;
  width: 25%;
}

.category--page .articles .post {
  width: 100%;
  margin: 0;
}
.category--page .articles {
  margin-left: -15px;
  margin-right: -15px;
}
.category--page .articles .col {
  padding: 0 15px;
}
.category--page .article {
  margin-bottom: 30px;
}

.category--page .articles .content {
  padding: 30px;
}

.category--page .articles .article_expanded .post,
.category--page .articles .article_expanded .share--overlay {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Pagination */
.pagination {
  padding: 30px 0;
  margin-bottom: 30px;
}

.pagination-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination-link {
  background: #304169;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
}

.pagination-link:hover {
  background: #1e2a47;
  color: #fff;
}

.pagination-info {
  color: #666;
  font-size: 14px;
}

@media (max-width: 960px) {
  .category--page .articles--wrapper {
    flex-direction: column;
  }

  .category--page .article {
    flex-direction: column;
    margin-top: 0;
  }

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

  .category--page .articles {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .category--page .articles .col {
    width: 100% !important;
    float: none;
  }
}
