/*** 
=============================================
    news Style2 Area Css
=============================================
***/
.news-events-area {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}
.news-events-row {
  border: 2px solid #d1143e;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
  background: #fff; /* keep content clear */
  box-shadow: 0px 4px 12px rgba(209, 20, 62, 0.1);
}
.sec-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #0a1f44;
}

.sec-title .sub-title p {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

/* Events Box with Red Border */
.events-box {
  border: 3px solid #d1143e; 
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  margin-top: 30px;
  box-shadow: 0px 4px 12px rgba(209, 20, 62, 0.15);
}

/* Scrollable Events */
.events-container {
  height: 280px; 
  overflow: hidden;
  position: relative;
}

/* Event Item */
.event-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.event-item:last-child {
  border-bottom: none;
}

/* Date Calendar Box */
.event-date {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  width: 65px;
  flex-shrink: 0;
}

.event-date .month {
  background: #d1143e;
  color: #fff;
  font-weight: bold;
  padding: 6px 0;
  font-size: 0.9rem;
}

.event-date .day {
  background: #004c8f;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px 0;
}

/* Event Content */
.event-content {
  flex-grow: 1;
}

.event-title {
  font-size: 1.2rem;
  margin: 0 0 6px;
  color: #d1143e; 
}

.event-desc {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}
.events-container {
  height: 280px; 
  overflow-y: auto; 
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none; 
}

.events-container::-webkit-scrollbar {
  display: none;
}