/*  Marquee - START  */
.marquee-container {
    width: 100%;
    max-width: 1400px;
    background: #111111;
    border-radius: 5px;
    padding: 40px 0px;
    border: 1px solid #333333;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.logo-item:hover {
    transform: scale(1.15);
}

.logo-item img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content.paused {
    animation-play-state: paused;
}


/* Marquee - END */

/* VSEL - START */

#vsel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Each card gets same height behavior */
.vsel-content {
  position: relative; /* Required for glare positioning */
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #121212;
  max-height: 500px;
  border: 1.2px solid #50C878 !important;
  border-radius: 5px;
  padding: 20px !important;
  box-sizing: border-box;
  overflow: hidden; /* Clip glare effect */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
}

/* Glare animation effect */
.vsel-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.vsel-content:hover::before {
  opacity: 1;
  animation: glare-sweep 0.8s linear forwards;
}

@keyframes glare-sweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Layout fix */
.vsel-alignleft {
  width: 100% !important;
}

/* Title structure */
.vsel-meta-title span {
  display: block;
  line-height: 1.3;
}

.vsel-meta-title span#part_0 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #50C878;
}

.vsel-meta-title span#part_1 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #bbbbbb;
  margin-top: 2px;
}

.vsel-meta-title a {
  text-decoration: none !important;
  color: #ffffff;
}

/* Date + Location */
.vsel-meta {
  margin-top: auto;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #999999;
  font-weight: 400;
}

.vsel-meta-date span,
.vsel-meta-location span {
  display: inline;
  margin: 0 2px;
}

.vsel-alignright {
	width: 100% !important;
}



/* VSEL - END */

/* Blog Widget - START */

h2.entry-title {
	color: #50C878 !important;
}

/* Blog Widget - END */

li.thum-list {
	padding: 10px !important;
}

li.thum-list a {
	border-radius: 5px;
}


/* Responsive design */
@media (max-width: 768px) {
    .marquee-container {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .logo-item {
        margin: 0 20px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 50px;
    }
    .vsel-shortcode {
        text-align: center;
    }

}

@media (max-width: 480px) {
    .logo-item img {
        max-width: 80px;
        max-height: 40px;
    }
}

@media (min-width: 768px) {
    .vsel-content {
            max-width: 380px;
    }
}
@media (max-width : 1200px) {
    .ast-plain-container.ast-no-sidebar #primary {
        margin-top : 60px;
    }
}
@media (max-width: 544px) {
    .ast-plain-container.ast-no-sidebar #primary {
        margin-top: 0em;
    }
    
}
#upcoming-trainings {
	scroll-margin-top: 160px;
}

pre {
	color: black;
}
.vsel-content img.vsel-image-img {
	border-radius : 8px;
}
.ti-platform-icon {
	display: none;
}