/*<style>*/
	#pageContainer {
		background-color: #ffffff;
		margin: 100px auto;
		padding-top: 5px;
		font-family: Roboto;
		width: 95%;
		max-width: 1000px;
	}
/*</style>*/

/*<!-- BD -->*/
/*<style>*/
    .bd-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* Par défaut : 2 par ligne */
      gap: 1rem;
      align-items: end;
    }

    @media (max-width: 800px) {
      .bd-container {
	grid-template-columns: 1fr; /* Sur petit écran : 1 par ligne */
      }
    }

    .bd-case {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .narration {
      background-color: #ffffcc;
      border: 1px solid #aaa;
      padding: 0.5rem;
      margin-bottom: 0.5rem;
      font-weight: bold;
      font-size: 14px;
      line-height: 1.4;
      border-radius: 4px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .bd-img-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 100%; /* carré */
      background: white;
      border: 2px solid black;
      box-sizing: border-box;
    }

    .bd-img-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      box-sizing: border-box;
    }
/*</style>*/
