
/* ------------------------------------------------------ */
/* Image (badge) classes                                  */
/* ------------------------------------------------------ */

.image-badge-container-center {
  display: flex;
  justify-content: center;
}

.image-badge-container-right {
  display: flex;
  justify-content: right;
}

.image-badge-container-left {
  display: flex;
  justify-content: left;
}

/* Image badge in 3:3 format */
.image-badge3x3 {
  margin-bottom: 3rem;
  text-align: center;
}

  .image-badge3x3 img {
    width: 12rem;
    height: 12rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
  }

  .image-badge3x3 h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }


/* Image badge in 4:3 format */
.image-badge4x3 {
  margin-bottom: 3rem;
  text-align: center;
}

  .image-badge4x3 img {
    width: 16rem;
    height: 12rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
  }

  .image-badge4x3 h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }


