/* =============================== */
/*   TRAINING CATALOG PARAGRAPH    */


.tc {

      width: 100%;
    margin: 100px auto;
    padding: 124px 0 119px;
    font-family: "Lato", sans-serif;
    background-color: #f4f4f4;
}

.tc__desc p
 {
    font-size: 20px;
    text-align: justify;
    padding: 8px 100px 8px 100px;
    line-height: 1.5;
    font-family: "Lato-Light", sans-serif !important;
}


/* Main row layout */
.tc__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Left big section */
.tc__left {
	  background: #ffffff !important;   
  padding: 0;
  margin: 0;
  border-radius: 0;
	width: 100%;
	}

/* Main big card */
.tc__card {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.tc__card--main {
  height: 600px;
}

.tc__media img,
.tc__media picture,
.tc__media figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay title for the MAIN left image */
.tc__title--overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

/* Description paragraph under left main card */
.tc__desc {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 24px;
  color: #222;
}

/* Right column cards (top & bottom) */
.tc__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Right cards same height */
.tc__card--side {
  height: 500px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

/* Image takes top portion */
.tc__card--side .tc__media {
  height: 65%;
}

/* Text below image */

.tc__title--below {
    height: 35%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    padding: 10px 90px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
}



/* =============================== */
/*             RESPONSIVE          */
/* =============================== */

@media (max-width: 1100px) {
  .tc__row {
    grid-template-columns: 1fr;
  }

  .tc__card--main {
    height: 260px;
  }

  .tc__card--side {
    height: 180px;
  }
}

@media (max-width: 700px) {
  .tc__title--overlay {
    font-size: 20px;
    padding: 18px 12px;
  }

  .tc__title--below {
    font-size: 16px;
  }

  .tc__card--main {
    height: 220px;
  }

  .tc__card--side {
    height: 160px;
  }
}
