.jb-articles-liste {
display: flex;
flex-direction: column;
gap: 24px;
width: 100%;
}
.jb-article-item {
display: flex;
align-items: flex-start;
gap: 24px;
padding: 0 0 24px;
border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.jb-article-item:last-child {
padding-bottom: 0;
border-bottom: 0;
}
.jb-article-image {
flex: 0 0 200px;
width: 200px;
height: 200px;
}
.jb-article-image a,
.jb-article-image img,
.jb-article-image-placeholder {
display: block;
width: 200px;
height: 200px;
}
.jb-article-image img {
object-fit: cover;
}
.jb-article-image-placeholder {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 12px;
background: #f2f2f2;
border: 1px solid #dedede;
color: #666;
text-align: center;
}
.jb-article-contenu {
flex: 1 1 auto;
min-width: 0;
}
.jb-article-titre {
margin: 0 0 12px;
font-size: clamp(1.25rem, 2vw, 1.7rem);
line-height: 1.25;
}
.jb-article-titre a {
color: inherit;
text-decoration: none;
}
.jb-article-titre a:hover,
.jb-article-titre a:focus {
text-decoration: underline;
}
.jb-article-resume {
line-height: 1.65;
}
.jb-article-lire-suite {
margin: 14px 0 0;
}
.jb-article-lire-suite a {
font-weight: 700;
}
.jb-articles-message {
padding: 12px 16px;
border-left: 4px solid currentColor;
background: rgba(0, 0, 0, 0.04);
}
@media (max-width: 560px) {
.jb-article-item {
flex-direction: column;
gap: 16px;
}
.jb-article-image {
align-self: center;
}
}