/* Training Events */

.trainingEvent {
    background: #fff;
    border-radius: 0px;
    padding: 30px;
	margin-bottom: 30px;
}

@media (min-width: 1000px) {
  .trainingEvent {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    column-gap: 40px;
  }

  .trainingEvent > div:first-child {
    margin-right: 0;
  }

  /* Right column */
  .trainingEvent > div:nth-child(2) {
    padding: 20px 20px 20px 30px;
  }

  .trainingEvent::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: var(--soft-white);
    z-index: 0;
  }

  .trainingEvent > * {
    position: relative;
    z-index: 1;
  }
}


.trainingEvent > div:first-child {
    margin-right: 40px;
}

.te_title {
    margin: 10px 0 16px !important;
    line-height: 1;
    font-size: 2rem !important;
}

.te_detail_label {
	margin-bottom: 0px !important;
	line-height: 1.1 !important;
}

.te_description {
    /*font-size: 22px;*/
	line-height: 1.2em !important;
    margin-bottom: 0px;
}

.te_description li {
	line-height: 1.2em !important;
}

.te_link:any-link {
    display: inline-block;
    background: var(--midnight);
    color: #fff;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
    padding: 10px 30px !important;
    border-radius: 0px;
	margin-top: 20px;
	cursor: pointer;
}


.te_link:any-link:hover {
    background: var(--denim);
    color: #fff;
}

@media (max-width: 999px) {
    .te_link:any-link {
        margin-bottom: 20px;
    }
}

.te_details_heading {
    font-style: italic;
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 999px) {
    .te_details_heading  {
        font-size: 22px;
    }
}

.trainingEvent > div:nth-child(2) hr  {
    border-top: 1px solid var(--sky);
    margin: 0 0 25px -10px;
}

@media (max-width: 999px) {
    .trainingEvent > div:nth-child(2) hr {
        margin-right: -10px;
        
    }
}

.te_details h4 {
    color: var(--light-blue);
    font-family: var(--franklin);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0px;
}

.te_details span {
    /*font-size: 22px;*/
    display: block;
    margin-bottom: 20px;
    font-weight: 375;
}