.gt-container,
.gt__bottom-container {
  display: flex;
  gap: var(--gutter_width_px);
}
.gt__title-container,
.gt__content-container {
  width: calc(50% - var(--gutter_width_px) / 2);
}
.gt__title-primary {
  color: var(--black_color);
}
.gt__title-secondary {
  color: var(--secondary_color);
  font-size: 4.2rem;
  line-height: 4.2rem;
  font-style: italic;
  display: block;
}
.bb-gray {
  border-bottom: 1px solid #aeaeae;
}
.gt__bottom-container {
  padding-top: var(--spacer_16);
  width: 100%;
}
.gt__lieu {
  font-size: var(--font_size_18);
  font-weight: var(--font_weight_600);
}
.gt__date {
  color: var(--text_grey);
}
.gt__date-lieu {
  min-width: 30%;
}
@media screen and (max-width: 991px) {
  .gt-container {
    flex-direction: column;
  }
  .gt__title-container,
  .gt__content-container {
    width: 100%;
  }
}
/* -------------- POPUP ------------ */
.gt__list-item-popup {
	position: fixed;
	width: 100vw;
	height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility var(--default_transition), opacity var(--default_transition);
}
.gt__list-item-popup--opened {
  opacity: 1;
	visibility: visible;
	z-index: 20;
}

.gt__list-item-popup-container {
	display: flex;
	width: 80vw;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 21;
	background-color: var(--white_color);
	gap: var(--spacer_40);
	padding: var(--spacer_60);
  max-height: 100%;
  overflow: hidden;
	height: 80vh;
}
@media(min-width: 1441px) {
	.gt__list-item-popup-container {
	  width: calc(var(--container_width)*0.8);
	}
}
@media(max-width: 992px) {
	.gt__list-item-popup-container {
	  width: calc(100vw - (var(--spacer_18)*2));
		padding: var(--spacer_24);
	}
	.gt__list-item-popup-title {
		padding-right: var(--spacer_24);
	}
}

.gt__list-item-popup-img {
  object-fit: contain;
	object-position: center;
	width: 20rem;
	flex-shrink: 0;
	max-height: 100%;
	background-image: radial-gradient(circle, var(--white_color) 0, var(--dark_color_70) 93%);
}
@media(max-width: 700px) {
	.gt__list-item-popup-img {
	  display: none;
	}
}

.gt__list-item-popup-title {
	margin-bottom; var(--spacer_20);
	color: var(--tertiary_color);
}

.gt__list-item-popup-text-container {
	overflow-y: auto;
  width: 100%;
}

.gt__list-item-popup-text {
	color: #012340;
	font-weight: 500;
}
.gt__list-item-popup-text--first {
	margin-bottom: var(--spacer_8);
}
.gt__list-item-popup-text--second {
	margin-bottom: 0;
}

.gt__list-item-popup-item-closer {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
	background-color: var(--primary_color);
	border-bottom-left-radius: .4rem;
}

.gt__list-item-popup-item-closer:before,
.gt__list-item-popup-item-closer:after {
	content: '';
	position: absolute;
	width: 2rem;
	height: .2rem;
	border-radius: 1rem;
	background-color: #012340;
	top: 50%;
	left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.gt__list-item-popup-item-closer:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gt__caption .nowrap-lg {
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .gt__caption .nowrap-lg {
    white-space: wrap;
  }
}