body#tinymce.wp-editor { 
    font-family: 'Roboto',Arial; 
    margin: 10px; 
}

body#tinymce.wp-editor a {
    color: #5E5340;
}

.my-stats-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 15px;
  background: #ff8800;
}

.my-stats-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 15px;
  background: #ff8800;
}

.my-stats-carousel .my-slide {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 220px;
  flex: 1 0 220px; /* equal width/height ka base */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.my-stats-carousel .my-slide img {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}

.my-stats-carousel .my-slide p {
  margin: 5px 0;
}

.my-stats-carousel .big-number {
  font-size: 30px;
  font-weight: 600;
}

.events-workshops-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.events-box {
  flex: 1;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.events-box h3 {
  color: #444;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.whats-happening-box p{
   color: #1a1a1a;
}

.whats-happening-box {
  flex: 1;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.whats-happening-box h3 {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 15px;
}

.whats-happening-box ul {
  padding-left: 20px;
  line-height: 1.6;
  color: #1a1a1a;
}

.more-link {
  display: inline-block;
  margin-top: 10px;
  color: #0000ee;
  text-decoration: none;
  font-weight: bold;
}

/* sponsor container */
.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* sponsor cards */
.logo-container img {
  background: #fbfbfb;          /* light background */
  border: 1px solid #e0e0e0;    /* light border */
  border-radius: 10px;          /* rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* soft shadow */
  padding: 20px;                /* space around logo */
  width: 600px;                 /* fix width */
  height: 350px;                /* fix height */
  object-fit: contain;          /* logo fit properly */
  transition: all 0.3s ease;
}

/* hover effect */
.logo-container img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  background: #fff;
	
}