/* Style des articles Osmodev */
.osmodev-article {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  padding: 1em;
}

.osmodev-article h1,
.osmodev-article h2,
.osmodev-article h3 {
  font-weight: 700;
  color: #0f172a;
  margin-top: 2em;
}

.osmodev-article h1 {
  font-size: 2.2em;
  margin-bottom: 0.2em;
}

.osmodev-article h2 {
  font-size: 1.6em;
}

.osmodev-article h3 {
  font-size: 1.2em;
}

.osmodev-article p {
  margin-bottom: 1em;
}

.osmodev-article ul,
.osmodev-article ol {
  margin: 0 0 1.5em 1.5em;
  padding-left: 1em;
}

.osmodev-article li {
  margin-bottom: 0.5em;
}

.osmodev-article strong {
  color: #0ea5e9;
  font-weight: 600;
}

.osmodev-article hr {
  margin: 3em 0;
  border: none;
  border-top: 1px solid #cbd5e1;
}

.osmodev-article table { width: 100%; border-collapse: collapse; margin: 1em 0; 
}
.osmodev-article  th, td { border: 1px solid #ccc; padding: 0.5em; text-align: left; 
}
.osmodev-article th { background-color: #f0f4f8; 
}

.osmodev-article .coming-soon {
  background-color: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: 1em;
  margin-top: 2em;
  border-radius: 4px;
}

/* CTA */
.osmodev-cta {
  margin: 3em auto;
  padding: 2em;
  background: #e0f2fe;
  border-left: 6px solid #0ea5e9;
  border-radius: 8px;
  max-width: 800px;
}

.osmodev-cta-content h2 {
  font-size: 1.4em;
  color: #0f172a;
  margin-bottom: 0.5em;
}

.osmodev-cta-content p {
  color: #334155;
  margin-bottom: 1em;
}

.osmodev-cta-button {
  display: inline-block;
  background: #0ea5e9;
  color: white;
  font-weight: 600;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.osmodev-cta-button:hover {
  background: #0284c7;
}

/* Figure */
.osmodev-figure {
  text-align: center;
  margin: 2em auto;
  max-width: 900px;
}

.osmodev-figure img {
  width: 70%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.osmodev-figure figcaption {
  font-size: 0.95em;
  color: #4b5563;
  margin-top: 0.5em;
}

.svg-lightbox {
  cursor: zoom-in;
}

.svg-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.svg-modal img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px #000;
}

.svg-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2em;
  color: white;
  cursor: pointer;
  font-family: sans-serif;
}

