/* AS Latest Carousel — black theme, no font-family set */
.aslc {
  background: #000;
  color: #fff;
  padding: 24px 16px;
}

.aslc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 14px auto;
}

.aslc__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.aslc__controls {
  display: flex;
  gap: 8px;
}

.aslc__btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.aslc__btn:hover {
  background: rgba(255,255,255,0.12);
}

.aslc__viewport {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.aslc__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 10px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.aslc__track:focus {
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 6px;
  border-radius: 14px;
}

.aslc__card {
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.aslc__imageFrame {
  width: 100%;
  aspect-ratio: 16 / 9; /* desktop 16:9 */
  background: rgba(255,255,255,0.06);
}

.aslc__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aslc__imageFallback {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
}

.aslc__body {
  padding: 14px 14px 16px 14px;
}

.aslc__postTitle {
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.25;
}

.aslc__link {
  color: #fff;
  text-decoration: none;
}

.aslc__link:hover {
  text-decoration: underline;
}

.aslc__excerpt {
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

.aslc__readMore {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* desktop: 3 cards visible */
@media (min-width: 900px) {
  .aslc__track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }
}

/* --- Force equal lines for title & excerpt --- */

/* TITLE: π.χ. 2 γραμμές */
.aslc__postTitle {
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.aslc__postTitle .aslc__link{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;   /* <-- πόσες γραμμές τίτλος */
  overflow: hidden;
}

/* EXCERPT: π.χ. 3 γραμμές */
.aslc__excerpt{
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;   /* <-- πόσες γραμμές excerpt */
  overflow: hidden;
}


#aslc-root h2{
  color:#fff !important;
}

#aslc-root .aslc__postTitle a{
  color:#fff !important;
}