/* CSN Featured Guests Carousel
 * Light/modern design
 * ================================================== */

.csn-guests-wrap {
  padding: 20px 0;
}

.csn-guests-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.csn-guests-carousel .owl-item {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
}

.csn-guests-carousel .owl-item .csn-gc-slide {
  height: 100%;
  width: 100%;
  display: flex;
}

.csn-gc-slide {
  padding: 10px;
  height: 100%;
  display: flex;
}

.csn-gc-inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  height: 100%;
  width: 100%;
  min-height: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.15s;
}

.csn-gc-inner:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Circle image */
.csn-gc-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  align-self: flex-start;
}

.csn-gc-image img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f5f9;
  transition: border-color 0.2s, transform 0.2s;
}

.csn-gc-inner:hover .csn-gc-image img {
  border-color: var(--wpcasterpro-btn-background-color--default--hover);
  transform: scale(1.05);
}

/* Content */
.csn-gc-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.csn-gc-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1e293b;
}

.csn-gc-name a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.15s;
}

.csn-gc-name a:hover {
  color: #0f4c5c;
}

.csn-gc-role {
  font-size: 12px;
  color: var(--wpcasterpro-btn-background-color--default--hover);
  font-weight: 600;
  margin: 0 0 10px;
}

.csn-gc-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}

.csn-gc-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 16px;
  margin-top: auto;
  background:var(--wpcasterpro-btn-background-color--default--hover);
  border-radius: 6px;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.1s;
}

.csn-gc-btn:hover {
  background: var(--wpcasterpro-btn-background-color--default--hover);
  transform: translateX(2px);
}

/* Owl nav/dots styling for light theme */
.csn-guests-carousel .owl-nav {
  display: none !important;
}

.csn-guests-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.csn-guests-carousel .owl-dots .owl-dot span {
  background: #cbd5e1 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  transition: background 0.2s, transform 0.2s !important;
}

.csn-guests-carousel .owl-dots .owl-dot.active span {
  background: var(--wpcasterpro-btn-background-color--default--hover) !important;
  transform: scale(1.2);
}

.csn-guests-carousel .owl-dots .owl-dot:hover span {
  background: #0f4c5c !important;
}

/* Responsive */
@media (max-width: 768px) {
  .csn-gc-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    min-height: auto;
  }

  .csn-gc-image {
    width: 70px;
    height: 70px;
  }

  .csn-gc-image img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
  }

  .csn-gc-name {
    font-size: 15px;
  }

  .csn-gc-role {
    font-size: 11px;
  }

  .csn-gc-desc {
    font-size: 12px;
  }

  .csn-gc-btn {
    width: 100%;
    text-align: center;
  }
}
