@charset "UTF-8";
/**
 * @file blog-list.scss
 * @description Styles spécifiques pour la page Blogue (App)
 */
/**
 * @file _tokens.scss
 * @description Variables de design (couleurs, typo, espacements, breakpoints)
 */
#page-blog .blog__card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #F2F2F2;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.1);
}
#page-blog .blog__image {
  width: 5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  object-fit: cover;
}
#page-blog .blog__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#page-blog .blog__title a {
  color: inherit;
  text-decoration: none;
}
#page-blog .blog__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
#page-blog .blog__text {
  font-size: 0.81rem;
  color: #646464;
  margin: 0;
}