.blog-breadcrumb-wrapper {
  background: #F5FAFF;
  border-bottom: 1px solid #edf6fb;
}

.blog-breadcrumb {
  font-size: 14px;
}

.blog-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-breadcrumb-link {
  color: #004f9f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-breadcrumb-link:hover {
  color: #003d7a;
  text-decoration: underline;
}

.blog-breadcrumb-current {
  color: #666666;
}

.blog-breadcrumb-sep {
  color: #8F98A3;
  font-size: 12px;
}

.blog-main {
  padding: 40px 0 60px;
}

.blog-header {
  margin-bottom: 32px;
}

.blog-header-content {
  max-width: 800px;
  margin-bottom: 24px;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.blog-categories {
  margin-bottom: 24px;
}

.blog-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.blog-categories-list::-webkit-scrollbar {
  height: 4px;
}
.blog-categories-list::-webkit-scrollbar-track {
  background: #edf6fb;
  border-radius: 2px;
}
.blog-categories-list::-webkit-scrollbar-thumb {
  background: #47c2ff;
  border-radius: 2px;
}

.blog-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 10px 20px;
  background: #ffffff;
  color: #333333;
  border: 2px solid #e5e5e5;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-category-btn:hover {
  border-color: #47c2ff;
  color: #004f9f;
  background: #E8F8FF;
}
.blog-category-btn.active {
  background: linear-gradient(135deg, #47c2ff 0%, #00B0B5 100%);
  color: #ffffff;
  border-color: transparent;
}

.blog-category-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf6fb;
}

.blog-toolbar-info {
  flex: 1;
}

.blog-pagination-info {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.blog-pagination-info-sep {
  margin: 0 8px;
  color: #8F98A3;
}

.blog-sort {
  position: relative;
}

.blog-sort-select {
  appearance: none;
  padding: 10px 40px 10px 16px;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  color: #333333;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 16px center;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-sort-select:hover {
  border-color: #47c2ff;
}
.blog-sort-select:focus {
  outline: none;
  border-color: #004f9f;
  box-shadow: 0 0 0 3px rgba(0, 79, 159, 0.1);
}

.blog-sort-mobile {
  margin-bottom: 16px;
}

.blog-grid {
  margin: 0 -12px;
}

.blog-card-col {
  padding: 12px;
  margin-bottom: 8px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 79, 159, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #edf6fb;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 79, 159, 0.12);
  border-color: #47c2ff;
}
.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
.blog-card:hover .blog-card-cta {
  background: #004f9f;
  color: #ffffff;
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
}

.blog-card-figure {
  margin: 0;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-header {
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-title-link:hover {
  color: #004f9f;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #edf6fb;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8F98A3;
}
.blog-card-date svg {
  opacity: 0.7;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 13px;
  background: transparent;
  color: #004f9f;
  border: 2px solid #004f9f;
}
.blog-card-cta svg {
  transition: transform 0.2s ease;
}
.blog-card-cta:hover svg {
  transform: translateX(4px);
}

.blog-card-compact {
  margin-bottom: 16px;
}
.blog-card-compact:last-child {
  margin-bottom: 0;
}

.blog-card-compact-link {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #edf6fb;
  transition: all 0.2s ease;
}
.blog-card-compact-link:hover {
  border-color: #47c2ff;
  box-shadow: 0 2px 8px rgba(0, 79, 159, 0.08);
}
.blog-card-compact-link:hover .blog-card-compact-title {
  color: #004f9f;
}

.blog-card-compact-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.blog-card-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-compact-content {
  flex: 1;
  min-width: 0;
}

.blog-card-compact-title {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 4px;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-compact-date {
  font-size: 12px;
  color: #8F98A3;
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  background: #F5FAFF;
  border-radius: 16px;
}

.blog-empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #47c2ff 0%, #00B0B5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(71, 194, 255, 0.35);
}

.blog-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
}

.blog-empty-text {
  font-size: 1rem;
  color: #666666;
  margin: 0 0 24px;
}

.blog-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 12px 24px;
  background: linear-gradient(135deg, #004f9f 0%, #0970E6 100%);
  color: #ffffff;
  font-size: 14px;
}
.blog-empty-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 79, 159, 0.35);
  transform: translateY(-2px);
}

.blog-pagination-wrapper {
  margin-top: 48px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination-item.blog-pagination-ellipsis span {
  padding: 8px 4px;
  color: #8F98A3;
}

.blog-pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-pagination-link:hover:not(.disabled):not(.active) {
  border-color: #47c2ff;
  color: #004f9f;
  background: #E8F8FF;
}
.blog-pagination-link.active {
  background: linear-gradient(135deg, #47c2ff 0%, #00B0B5 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(71, 194, 255, 0.35);
}
.blog-pagination-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-pagination-prev,
.blog-pagination-next {
  padding: 8px;
}

.blog-other-categories {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #edf6fb;
}

.blog-other-categories-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px;
  text-align: center;
}

.blog-other-categories-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .blog-other-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-other-category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #edf6fb;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-other-category-card:hover {
  border-color: #47c2ff;
  box-shadow: 0 4px 16px rgba(0, 79, 159, 0.1);
}
.blog-other-category-card:hover .blog-other-category-arrow {
  transform: translateX(4px);
  color: #47c2ff;
}

.blog-other-category-icon {
  width: 50px;
  height: 50px;
  background: #E8F8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-other-category-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.blog-other-category-content {
  flex: 1;
  min-width: 0;
}

.blog-other-category-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px;
}

.blog-other-category-desc {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-other-category-arrow {
  color: #8F98A3;
  transition: all 0.2s ease;
}

.blog-article-main {
  padding: 40px 0;
}

.blog-article-header {
  margin-bottom: 32px;
}

.blog-article-category-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #47c2ff 0%, #00B0B5 100%);
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}
.blog-article-category-badge:hover {
  box-shadow: 0 4px 15px rgba(71, 194, 255, 0.4);
  transform: translateY(-2px);
}

.blog-article-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #333333;
  line-height: 1.3;
  margin: 0 0 16px;
}

.blog-article-subtitle {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 20px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8F98A3;
}

.blog-article-date,
.blog-article-reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-article-date svg,
.blog-article-reading-time svg {
  opacity: 0.7;
}

.blog-article-meta-sep {
  color: #e5e5e5;
}

.blog-article-cover {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 79, 159, 0.12);
}

.blog-article-cover-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.blog-article-cover-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: #8F98A3;
  background: #F5FAFF;
  text-align: center;
  font-style: italic;
}

.blog-article-toc {
  background: #F5FAFF;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 4px solid #47c2ff;
}

.blog-article-toc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #004f9f;
}

.blog-article-toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.blog-sommaire-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sommaire-item {
  margin-bottom: 8px;
}
.blog-sommaire-item:last-child {
  margin-bottom: 0;
}

.blog-sommaire-link {
  display: block;
  padding: 8px 12px;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.blog-sommaire-link:hover, .blog-sommaire-link.active {
  background: #ffffff;
  color: #004f9f;
  padding-left: 16px;
  box-shadow: 0 2px 8px rgba(0, 79, 159, 0.08);
}
.blog-sommaire-link.active {
  border-left: 3px solid #47c2ff;
}

.blog-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
}
.blog-article-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #edf6fb;
  scroll-margin-top: 100px;
}
.blog-article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
  margin: 36px 0 16px;
}
.blog-article-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 28px 0 12px;
}
.blog-article-content p {
  margin: 0 0 20px;
}
.blog-article-content a {
  color: #004f9f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.blog-article-content a:hover {
  color: #00B0B5;
}
.blog-article-content ul, .blog-article-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.blog-article-content ul li, .blog-article-content ol li {
  margin-bottom: 8px;
}
.blog-article-content ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.blog-article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #47c2ff 0%, #00B0B5 100%);
  border-radius: 50%;
}
.blog-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.blog-article-content figure {
  margin: 32px 0;
}
.blog-article-content figure img {
  margin: 0;
}
.blog-article-content figure figcaption {
  font-size: 14px;
  color: #8F98A3;
  text-align: center;
  padding-top: 12px;
  font-style: italic;
}
.blog-article-content blockquote {
  margin: 32px 0;
  padding: 24px 24px 24px 28px;
  background: #F5FAFF;
  border-left: 4px solid #47c2ff;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #666666;
}
.blog-article-content blockquote p:last-child {
  margin-bottom: 0;
}
.blog-article-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 15px;
}
.blog-article-content table th, .blog-article-content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.blog-article-content table th {
  background: #F5FAFF;
  font-weight: 700;
  color: #004f9f;
}
.blog-article-content table tr:hover td {
  background: #f8fbff;
}
.blog-article-content code {
  padding: 2px 6px;
  font-size: 14px;
  background: #F5FAFF;
  border-radius: 4px;
  color: #004f9f;
}
.blog-article-content pre {
  margin: 24px 0;
  padding: 20px;
  background: #333333;
  border-radius: 12px;
  overflow-x: auto;
}
.blog-article-content pre code {
  padding: 0;
  background: none;
  color: #F5FAFF;
}
.blog-article-content iframe {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}
.blog-article-content hr {
  margin: 48px 0;
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
}

.blog-article-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #edf6fb;
}

.blog-article-share {
  margin-bottom: 24px;
}

.blog-article-share-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
}

.blog-article-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-article-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-article-share-btn:hover {
  transform: translateY(-2px);
}
.blog-article-share-btn.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #ffffff;
}
.blog-article-share-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}
.blog-article-share-btn.twitter:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.blog-article-share-btn.email:hover {
  background: #004f9f;
  border-color: #004f9f;
  color: #ffffff;
}
.blog-article-share-btn.copy-link:hover, .blog-article-share-btn.copy-link.copied {
  background: #47c2ff;
  border-color: #47c2ff;
  color: #ffffff;
}

.blog-article-back {
  text-align: center;
}

.blog-article-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 12px 24px;
  font-size: 14px;
  color: #004f9f;
  background: #F5FAFF;
  border: 2px solid #e5e5e5;
}
.blog-article-back-link:hover {
  background: #E8F8FF;
  border-color: #47c2ff;
}

.blog-article-sidebar {
  margin-top: 32px;
}
@media (min-width: 992px) {
  .blog-article-sidebar {
    margin-top: 0;
  }
}

.blog-article-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.blog-article-offre {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 79, 159, 0.1);
  transition: all 0.3s ease;
  padding: 24px;
  margin-bottom: 24px;
  border: 2px solid #47c2ff;
  background: linear-gradient(135deg, #ffffff 0%, #E8F8FF 100%);
}

.blog-article-offre-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
}

.blog-article-offre-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-article-offre-image-link {
  display: block;
  margin-bottom: 16px;
}

.blog-article-offre-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-article-offre-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: linear-gradient(135deg, #004f9f 0%, #0970E6 100%);
  color: #ffffff;
}
.blog-article-offre-cta:hover {
  box-shadow: 0 6px 20px rgba(0, 79, 159, 0.35);
  transform: translateY(-2px);
}

.blog-article-image-item {
  margin: 0 0 16px;
}
.blog-article-image-item:last-child {
  margin-bottom: 0;
}

.blog-article-image-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 79, 159, 0.08);
}

.blog-related-section {
  padding: 60px 0;
  background: #F5FAFF;
}

.blog-related-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-related-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
}

.blog-related-subtitle {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

.blog-related-grid {
  margin: 0 -12px;
}

.blog-related-more {
  text-align: center;
  margin-top: 40px;
}

.blog-related-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 15px;
  background: #ffffff;
  color: #004f9f;
  border: 2px solid #004f9f;
}
.blog-related-more-link:hover {
  background: #004f9f;
  color: #ffffff;
}
.blog-related-more-link:hover svg {
  transform: translateX(4px);
}
.blog-related-more-link svg {
  transition: transform 0.2s ease;
}

.blog-cta-section {
  padding: 60px 0;
  background: #ffffff;
}

.blog-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #004f9f 0%, #0970E6 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.blog-cta-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(71, 194, 255, 0.15);
  border-radius: 50%;
}

.blog-cta-content {
  position: relative;
  z-index: 1;
}

.blog-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.blog-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.blog-cta-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 16px 32px;
  font-size: 15px;
  background: #ffffff;
  color: #004f9f;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.blog-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .blog-title {
    font-size: 1.7rem;
  }
  .blog-article-title {
    font-size: 1.8rem;
  }
  .blog-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .blog-cta-title {
    font-size: 1.4rem;
  }
  .blog-related-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .blog-main {
    padding: 24px 0 40px;
  }
  .blog-title {
    font-size: 1.5rem;
  }
  .blog-description {
    font-size: 1rem;
  }
  .blog-categories-list {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .blog-category-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .blog-card-image {
    height: 180px;
  }
  .blog-card-body {
    padding: 16px;
  }
  .blog-card-title {
    font-size: 1rem;
  }
  .blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .blog-card-cta {
    width: 100%;
    justify-content: center;
  }
  .blog-pagination-link {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .blog-article-main {
    padding: 24px 0;
  }
  .blog-article-title {
    font-size: 1.5rem;
  }
  .blog-article-subtitle {
    font-size: 1rem;
  }
  .blog-article-meta {
    font-size: 13px;
  }
  .blog-article-cover-img {
    max-height: 300px;
  }
  .blog-article-toc {
    padding: 20px;
  }
  .blog-article-content {
    font-size: 1rem;
  }
  .blog-article-content h2 {
    font-size: 1.4rem;
    margin: 36px 0 16px;
  }
  .blog-article-content h3 {
    font-size: 1.2rem;
  }
  .blog-article-share-buttons {
    justify-content: center;
  }
  .blog-related-section {
    padding: 40px 0;
  }
  .blog-related-title {
    font-size: 1.3rem;
  }
  .blog-cta-section {
    padding: 40px 0;
  }
  .blog-cta-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .blog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-toolbar-sort {
    width: 100%;
  }
  .blog-toolbar-sort .blog-sort-select {
    width: 100%;
  }
  .blog-other-category-card {
    padding: 16px;
  }
  .blog-other-category-icon {
    width: 40px;
    height: 40px;
    background: #E8F8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-other-category-icon img {
    width: 22px;
    height: 22px;
  }
}
/* ============================================
   FIX STICKY SIDEBAR
   ============================================ */
/* ============================================
   FIX STICKY SIDEBAR
   ============================================ */
.blog-article-main .row {
  align-items: stretch !important;
}

.blog-article-sidebar-sticky {
  position: sticky;
  top: 100px;
}

/*# sourceMappingURL=conseils.css.map */
