.article-container {
    max-width: 760px;
}

.article-container ul li + li {
    border-top: 1px solid #5A0514;
    padding-top: 10px;
    margin-top: 10px;
}

.article-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    background-color: white;
}

.article-container table, th, td {
    border: 1px solid #5A0514;
}

.article-container th {
    background-color: #5A0514;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.article-container td {
    padding: 10px;
    text-align: center;
}

.article-container tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.article-container tr:hover td {
    background-color: #f2f2f2;
}

.article-container td:first-child, th:first-child {
    text-align: left;
}

.article-title {
    width: 100%;
    border: 2px solid #5A0514;
    background-color: #5A0514;
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.article-title h1 {
    margin: 0;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.meta {
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    letter-spacing: .06em;
}

strong {
    color: #5A0514;
}

.article-intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: #5A0514;
    border-left: 3px solid currentColor;
    padding-left: 20px;
    margin-bottom: 40px;
    font-style: italic;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #5A0514;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #5A0514;
    font-weight: bold;
}

.article-sub-subtitle {
    font-size: 1.1rem;
    color: #5A0514;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #5A0514;
}

.legal-quote {
    background: #f2f2f2;
    border-left: 4px solid #5A0514;
    border-radius: 0 6px 6px 0;
    padding: 22px 28px;
    margin: 36px 0;
    box-shadow: 0 2px 16px rgba(26,37,64,.07);
}
.legal-quote .ref {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5A0514;
    margin-bottom: 10px;
    font-weight: bold;
}
.legal-quote blockquote {
    font-style: italic;
    color: #3a3a3a;
    font-size: .95rem;
    line-height: 1.7;
}

.key-point {
      background: #f2f2f2;
      border: 1px solid #5A0514;
      border-radius: 8px;
      padding: 24px 28px;
      margin: 32px 0;
      position: relative;
    }

.key-point::before {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #5A0514;
    color: #f2f2f2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    display: grid;
    place-items: center;
}

.key-point[data-type="jur"]::before {
    content: '⚖';
}

.key-point[data-type="dispositif"]::before {
    content: '⚙️';
}

.key-point[data-type="attention"]::before {
    content: '⚠️';
}

.key-point[data-type="conseil"]::before {
    content: '💡';
}

.simple-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 36px 0;
    }

@media (max-width: 560px) { 
    .simple-grid { 
        grid-template-columns: 1fr; 
    } 
}

.simple-card {
    background: #f2f2f2;
    border: solid 1px #5A0514;
    border-radius: 8px;
    padding: 20px 22px;
}
.simple-card .title {
    font-size: .9rem;
    text-transform: uppercase;
    color: #5A0514;
    margin-bottom: 8px;
    font-weight: bold;
}

.simple-card p { 
    font-size: .88rem;
    margin-bottom: 0; 
    line-height: 1.55; 
}

.juris-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 36px 0;
    }

@media (max-width: 560px) { 
    .juris-grid { 
        grid-template-columns: 1fr; 
    } 
}

.juris-card {
    background: #5A0514;
    color: #f2f2f2;
    border-radius: 8px;
    padding: 20px 22px;
}
.juris-card .date {
    font-size: .9rem;
    text-transform: uppercase;
    color: #f2f2f2;
    margin-bottom: 8px;
    font-weight: bold;
}

.juris-card p { 
    font-size: .88rem; 
    color: #f2f2f2; 
    margin-bottom: 0; 
    line-height: 1.55; 
}

.juris-card .ref-num { 
    font-size: .72rem; 
    color: #f2f2f2; 
    margin-top: 10px;
    font-style: italic;
}

.article-ref {
  vertical-align: super;
  font-size: smaller;
  text-align: left;
  border-top: 1px solid #5A0514;
  padding-top: 4px;
}

.article-outro {
    width: 100%;
    border: 2px solid #5A0514;
    background-color: #5A0514;
    padding: 20px;
    border-radius: 8px;
}

.article-outro-text {
    text-align: justify;
    color: white;
    font-weight: 700;
}

.article-outro-text-center {
    text-align: center;
    color: white;
    font-weight: 700;
}

.article-outro-actions {
    gap: 80px;
}

@media (max-width: 560px) { 
    .article-outro-actions { 
        gap: 40px;
    } 
}

.article-outro .btn.btn-light {
    padding: 12px 25px;
    color: #5A0514;
}

.article-outro .btn.btn-light:hover {
    background-color: #f2f2f2;
    color: #5A0514;
}

.text-justify-article {
  text-align: justify;
}