
<style>

@font-face {
  font-family: 'Bebas Neue';
  src: url('/templates/utfolio/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.ysd-article {
  font-family: 'Inter', sans-serif;
  max-width: 860px;
  margin: 0 auto;
  color: #1a1a1a;
  line-height: 1.7;
}
.ysd-article-hero {
  background: #1a1a1a;
  padding: 4rem 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.ysd-article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ysd-article-hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F99500;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ysd-article-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #F99500;
}
.ysd-article-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.88;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.ysd-article-hero-title .accent { color: #F99500; }
.ysd-article-hero-title .rule {
  display: block;
  width: 100%;
  height: 3px;
  background: #F99500;
  margin: 0.4rem 0;
}
.ysd-article-hero-desc {
  font-size: 1.05rem;
  color: #888;
  line-height: 1.75;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.ysd-article-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.ysd-article-hero-tag {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(249,149,0,0.3);
  color: #F99500;
}

/* BODY */
.ysd-article-body { padding: 0 0 3rem; }

.ysd-article h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F99500;
  display: inline-block;
}
.ysd-article p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.ysd-article strong { color: #1a1a1a; font-weight: 600; }

/* STEPS */
.ysd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8e8;
  margin: 2rem 0;
}
.ysd-step {
  background: #fff;
  padding: 1.5rem;
  position: relative;
}
.ysd-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #F99500;
}
.ysd-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #F99500;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ysd-step-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.ysd-step-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* USE CASES */
.ysd-usecases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.ysd-usecase {
  padding: 1.2rem 1.5rem;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #F99500;
}
.ysd-usecase-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.ysd-usecase-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* SPECS */
.ysd-specs {
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.ysd-specs-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}
.ysd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.ysd-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.8rem;
}
.ysd-spec-key { color: #888; }
.ysd-spec-val { color: #1a1a1a; font-weight: 500; }

/* CTA */
.ysd-article-cta {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ysd-article-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ysd-article-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.ysd-article-cta-title span { color: #F99500; }
.ysd-article-cta p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.ysd-article-cta-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  background: #F99500;
  color: #fff !important;
  text-decoration: none !important;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.ysd-article-cta-btn:hover { background: #d07d00; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .ysd-article-hero { padding: 2.5rem 1.5rem; }
  .ysd-steps { grid-template-columns: 1fr; }
  .ysd-usecases { grid-template-columns: 1fr; }
  .ysd-specs-grid { grid-template-columns: 1fr; }
  .ysd-article h2 { font-size: 1.8rem; }
}

/* SECTION PETITES BRIBES */
.featured-article-badge {
    display: none !important;
}
.mod-languages .lang-toggle,
.mod-languages .dropdown-toggle {
    background-color: #ffffff !important;
    border: none !important;
    color: #333333 !important;
}
.sppb-gallery-btn {
    overflow: hidden;
}

.sppb-gallery-btn {
    overflow: hidden;
}

.sppb-gallery-btn img {
    object-fit: cover !important;
    background: #f5f5f5;
}


.pswp__zoom-wrap {
    transform: scale(0.5) !important;
    transform-origin: center center !important;
}
#sp-user1 {
    text-align: right;
}

.cart-item-count {
  background: #F7941D;
  border-radius: 0px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  height: 25px;
  line-height: 24px;
  text-align: center;
  width: 25px;
}

.j2store-minicart-button .fa-shopping-cart {
  color: #333333 !important;
  font-size: 18px !important;
  display: inline-block !important;
}
#sp-top3 {
  text-align: right;
}

#sp-user1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Réduire padding dropdown items */
.sp-dropdown-items li {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.sp-dropdown-items .sp-menu-heading {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    line-height: 2 !important;
}

.sp-dropdown-inner {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
line-height: 2 !important;
}




@font-face {
  font-family: 'Bebas Neue';
  src: url('/templates/utfolio/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.ysd-card-title {
  font-family: 'Bebas Neue', sans-serif !important;
}


/* CSS poUR LE LOGIN FORM DANS LE FOOTER */
#sp-footer2 .list-group-item {
  background-color: transparent !important;
  color: #F99500 !important;
  border-color: #444 !important;
}

#sp-footer2 .list-group-item a {
  color: #F99500 !important;
}

#sp-footer2 .list-group-item a:hover {
  color: #fff !important;
}


</style>
