/* Image Modal/Lightbox for Gallery Preview */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.image-modal.show {
  opacity: 1;
}
.image-modal-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: modalZoomIn 0.3s;
}
@keyframes modalZoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.image-modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.image-modal-close:hover {
  color: #ff4444;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000;
}

.a_body {
	text-decoration: none;
	color: #129887;
	font-weight: 700;
  position: relative;
  border-bottom: 2px solid rgba(0,0,0,0);
  transition: all 0.3s;
}

.a_body:hover {
  color: #129887;
  border-bottom: 2px solid #129887;
}

#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #fafafa;
  color: white;
  border: none;
  padding: 0px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: 0.5s; 
  
  justify-content: center;
  align-items: center;
}

#topBtn:hover {
  background-color: #fff;
}

@font-face {
  font-family: 'Kollektif';
  src: url('Kollektif.ttf') format('truetype');
}


@font-face {
  font-family: 'KollektifBold';
  src: url('Kollektif-Bold.ttf') format('truetype');
}

h1 {
  all: unset;
  display: block;
}

h2 {
  all: unset;
  display: block;
}

h3 {
  all: unset;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.showondesktoponly {
  display: none;
}

@media (min-width: 768px) {
  .showondesktoponly {
    display: block;
  }
}
.showonmobileonly {
  display: block;
}

@media (min-width: 768px) {
  .showonmobileonly{
    display: none;
  }
}

.shimmer-container {
  position: relative;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.shimmer-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--x, -100%) var(--y, -100%), rgba(186, 188, 191, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  opacity: 1;
  transition: background 0.1s ease-out;
  pointer-events: none;
}

.quotation {
  align-self: baseline;
  font-size: 5em;
}

.quotation-mobile {
  align-self: baseline;
  font-size: 5em;
  position: absolute;
}

.quoteHolder {
  display: flex;
  /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  flex-direction: column-reverse;
}

.quoteTextHolder {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quoteText {
  text-align: center;
  padding: 15px 40px;
  /* color: white; */
  font-family: 'Kollektif', sans-serif;
  /* font-family: 'Allerta Stencil'; */
  font-size: 1.5em;
  /* background-color: #fafafa; */
}

.quoteImageHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px 0;
}

.quoteImage {
  width: 100px;
  height: 100px;
  border-radius: 150px;
  border: 3px solid black;
}

@media (min-width: 768px) {
  .quoteImage {
    width: 150px;
    height: 150px;
    border-radius: 150px;
    border: 3px solid black;
  }

  .quoteImageHolder {
    margin: 0;
  }

  .quoteHolder {
    flex-direction: row
  }
}



/* Header Design */
.header {
  background-color: rgba(0,0,0,0.9); /* Black w/opacity */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  height: 80px;
  /* 100px */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3%;
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.header-container {
  max-width: 1920px;
  position: fixed;
  width: 100%;
  z-index: 100;
  overflow: visible;
}

/* header logo */
.header-logo-container {
  flex: 1;
  display: flex;
  justify-content: left;
  cursor: pointer;
}

.header-logo-container ::hover {
  cursor: pointer;
}

.header-logo {
  height: 45px; 
}
/* 65px */

.header-logo::hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .header-logo {
    height: 55px; 
  }

  .header {
    height: 100px;
  }
}

/* Navbar */
.navbar-item {
  font-family: "Allerta Stencil", serif;
  text-transform: uppercase;
  font-size: 1.1em;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
}

.navbar-link {
  all: unset;
}
.mobile-nav-btn {
  color: white;
  padding: 5px 10px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 2em;
}

.navbar-selected a {
  color: #fff;
}

.navbar-selected {
  color: #fff;
}

@media (min-width: 768px) {
  .navbar-selected {
    background-color: #fff;
    color: #000;
    border-radius: 4px;
  }
  .navbar-selected a {
    color: #000;
  }
}

/* Infobar */

.infobar {
  display: flex;
  align-items: center;
  min-height: 46px;
  font-family: "Saira Stencil One", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: linear-gradient(to right, #129887, #54b5ff);
  background: linear-gradient(to right, rgba(18, 152, 135, 0.85), rgba(84, 181, 255, 0.85));
  /* backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  padding: 0 3%;
  transition: all 0.4s;
  margin: 0 auto;
  z-index: 10; /* adjust as needed */
  background: transparent; /* background moved to ::before */
}

.infobar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 152, 135, 0.85),
    rgba(84, 181, 255, 0.85)
  );
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1; /* keeps it behind text */
}

.infobar-left {
  flex: 1;
}

.infobar-right {
  color: white;
  padding: 5px;
}

@media (min-width: 768px) {
  .infobar-right {
    padding: 0;
  }
}

/* main container */
.main {
  display: flex;
  justify-content: center;
  padding: 30px 10px 30px 10px;
}

@media (min-width: 768px) {
  .main{
    padding: 44px 0 0 0;
  }
}

.main-container {
  margin-top: 125px;
  background-color: #fff;
  max-width: 1000px;
  box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.15);
  padding: 20px 20px 20px 20px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  
}

@media (min-width: 768px) {
  .main-container{
    padding: 35px 44px;
    width: 768px;
  }
}

@media (min-width: 1000px) {
  .main-container{
    padding: 35px 44px;
    width: 1000px;
  }
}

.main-container span {
  font-family: Arial, Helvetica, sans-serif;
}

/* Components */
.plato-heading1 {
  font-family: 'Kollektif', sans-serif;
  font-size: 4em;
  margin: 0 0 0 0;
}

@media (min-width: 768px) {
  .plato-heading1{
    font-size: 4em;
    margin: 0 0 0 0;
  }
}

.plato-heading1 b {
  font-family: 'KollektifBold', sans-serif;
}

.plato-heading2 {
  font-family: 'Kollektif', sans-serif;
  font-size: 2.1em;
  /* margin: 5px 0 0 0; */
}

@media (min-width: 768px) {
  .plato-heading2{
    font-size: 2.1em;
    /* margin: 10px 0 0 0; */
  }
}

.plato-heading2 b {
  font-family: 'KollektifBold', sans-serif;
}

.plato-main-image-container {
  padding: 20px 0 0 0;
}

.plato-main-image {
  width: 100%;
  height: auto;
  /* box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.11); */
  /* box-shadow: offset-x offset-y blur-radius spread-radius color; */

}

.plato-heading3 {
  background-color: #000;
  padding: 15px 40px;
  position: relative;
  left: -60px;
  font-family: 'Allerta Stencil', serif !important; 
  font-size: 1.8em;
  margin: 0 0 30px 0;
  color: #fff;
  margin: 10px 0 0 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .plato-heading3 {
    font-size: 2.2em;
    margin: 10px 0 0 0;
  }
}

.plato-heading4 {
  margin: 0;
  font-size: 1.6em;
  display: inline-block;
  background: linear-gradient(to right, #129887, #54b5ff);
  padding: 6px 15px 6px 40px;
  color: white;
  border-radius: 6px;
  margin-top: 5px;
  position: relative;
  left: -40px;
}

.last-updated {
  margin-bottom: 15px;
  color: gray;
  text-align: right;

}



.plato-para {
  font-family: kollaktif, sans-serif;
  font-size: 1em;
  text-align: justify;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .plato-para {
    font-size: 1em;
  }

  .plato-heading4 {
    left: -50px;
  }


}

.almuni-table {
  margin-top: 20px;
}

.news-table {
  font-family: monospace;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fafafa;
  border-radius: 16px;
  padding: 20px;
}

@media (min-width: 768px) {
  .news-table {
    padding: 40px 40px;
  }
}

.news-item {
  margin-bottom: 35px;
  font-size: 1em;
}

.news-item i {
  color: #ff0000;
  margin-right: 10px;
}

.news-item-content {
  margin-top: 10px;
  font-size: 0.9em;
}

.table-dot {
  background-color: #000;
  width: 11px;
  height: 11px;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 0px;
}




.card1-container {
  padding: 0 0 10px 0;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

.plato-card1 {
  all: unset;
  cursor: pointer;
  flex-direction: column;
  font-family: Kollaktif, sans-serif;  
  width: 100%;
}

.plato-card1-content {
  margin-top: 80px;
  margin-bottom: 0px;
  background-color: #fafafa;
  border-radius: 16px;
  
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.plato-card1-content:hover {
  box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.07);
  border: 2px solid #129887;
}

.plato-card1-content:hover .plato-card1-image {
  background: #129887; /* Gradient for border */

}

@media (min-width: 768px) {
  .card1-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .card1-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plato-card1-image {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.1); /* Gradient for border */
  padding: 3px;
  position: absolute;
  transition: all 0.3s;
  object-fit: cover;   /* makes it act like background-size: cover */
  object-position: center; /* optional, controls which part is centered */

}

.plato-card1-top {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plato-card1-bottom {
  padding-top: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  /* padding: 10px 10px; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  font-weight: bold;
}


.plato-card1-name {
  /* width: 100%; */
  font-size: 1.4em;
  text-align: center;
  margin: 5px;
}

.plato-card1-designation {
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  background-color: #f3f3f3;
  cursor: pointer;
  padding: 10px 0px;
  font-weight: normal;
}

.plato-card1-email {
  /* width: 100%; */
  font-size: 0.9em;
  text-align: center;
  /* background-color: #f3f3f3; */
  border-radius: 16px;  
}

.plato-card1-website {
  /* width: 100%; */
  font-size: 0.9em;
  text-align: center;
  /* background-color: #f3f3f3; */
  border-radius: 16px;  
}

.footer {
  margin-top: 20px;
  background-color: #000;
  padding: 20px 10px;
  color: white;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

.footer-address {
  margin-bottom: 20px;
}

.footer-logos {
  margin-bottom: 20px;
}

.footer-img {
  height: 85px;
}



.overlay {
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0,0,0, 0.91); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.overlay .navbar-item {
  padding: 8px;
  text-decoration: none;
  font-size: 2.2em;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

.navbar-selected {
  color: #fff;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  text-decoration: none;
  color: white;
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/* Table 2 */
.plato-table2-container {
  overflow-x: auto;
  margin-top: 1rem;
}

.plato-table2 {
  width: 100%;
  overflow: scroll;
  border-collapse: collapse;
  margin-top: 1em;
  font-family: sans-serif;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: max-height 0.5s ease-in-out, all 0.5s ease-in-out;
}

@media (max-width: 700px) {
  .plato-table2 {
    font-size: 12px;
    table-layout: fixed;
    word-break: break-word;
  }

  .plato-table2 th,
  .plato-table2 td {
    padding: 4px 2px;
    font-size: 0.8em;
    word-break: break-word;
  }
  /* First column: Sl. No. */
  .plato-table2 th:first-child,
  .plato-table2 td:first-child {
    width: 30px;       /* you can adjust this */
    text-align: center;
  }


  .plato-table2 td:last-child iframe {
    width: 100%;      /* take full width of the cell */
    height: auto;     /* keep proportional height */
    aspect-ratio: 4 / 3; /* enforce proper video ratio */
    max-width: 140px; /* optional cap */
  }
}


.plato-table2 th,
.plato-table2 td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.plato-table2 th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.plato-table2-section {
  background-color: #e0f0ff;
  font-weight: bold;
  font-size: 16px;
  color: #004466;
  text-align: center;
}


.plato-table2 tr:nth-child(even) {
  background-color: #f9f9f9;
}

.plato-table2 tr:hover {
  background-color: #f1f1f1;
}


.almuni-table {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 1em;
  background: #f9f9f9;
}

.almuni-table[open] summary::after {
  content: "▲";
  float: right;
}
.almuni-table summary::after {
  content: "▼";
  float: right;
  font-size: 0.8em;
}

summary {
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  padding: 4px;
}

.almuni-table-open {
  opacity: 1;
}

.almuni-table-close {
  display: none;
  opacity: 0;
}

/* Poster */
  /*
 * Styles for the poster gallery.
 * Add this to your main CSS file.
 */

/* The main container for the gallery */
.plato-posters-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Container for a single poster */
.plato-poster {
  border-radius: 0 0 16px 16px;
  overflow: hidden;

  background-color: #fafafa;

  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s;

}

.plato-poster:hover {
  /* transform: translateY(-5px); */
  box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.07);
  border: 2px solid #129887;
  background-color: #129887;
}

.plato-poster:hover .plato-poster-image {
  scale: 1.01;
  background-color: #129887;
}

.plato-poster:hover .plato-poster-caption {
  color: #fff;
  background-color: #129887;
}


/* The link wrapping the poster content */
.plato-poster a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Figure element for semantic structure */
.plato-poster figure {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* The poster image itself */
.plato-poster-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; /* Common poster aspect ratio */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}

/* The caption/title for the poster */
.plato-poster-caption {
  padding: 1rem;
  font-size: 1.3rem;
  text-align: center;
  background-color: #f8f9fa;
  flex-grow: 1; /* Allows caption to fill remaining space */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kollektif', sans-serif;
  transition: all 0.3s;
}

.plato-poster-caption em {
    font-style: normal; /* You can adjust if you prefer italics */
}

/* Dropdowns */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content-mobile {
  display: block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content-mobile {
  display: none;
  color: #fafafa;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content-mobile a {
  font-size: 1.3rem;
  margin: 10px 10px;
  color: #fafafa;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content-mobile a:hover {background-color: rgba(0,0,0,0.5)}

/* ===== PLATO carousel (responsive, non-zooming) ===== */
.main-container .plato-carousel {
  width: 80% !important;
  max-width: 880px !important;
  left: 10%;
  
  margin: 8px 0 !important;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  position: relative;
}

/* optional title bar */
.main-container .plato-carousel .plato-carousel-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 12px;
  background: #be9f7789;
  border-bottom: 1px solid #efefef;
}

/* track + slides */
.main-container .plato-carousel .plato-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.main-container .plato-carousel .plato-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
    box-sizing: border-box;
    padding: 8px 2px;
    min-height: 140px; /* avoid tiny collapse */
}

/* make images centered and contained (no cropping / no zoom) */
.main-container .plato-carousel .plato-carousel-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 320px;     /* safety cap: change as needed */
  object-fit: contain;
  margin: 0 auto;
  border-radius: 6px;
    border: 3px solid #3e2424;
}

/* arrows */
.main-container .plato-carousel .plato-carousel-prev,
.main-container .plato-carousel .plato-carousel-next {
  position: absolute;
  top: 52%;
  transform: translateY(-52%);
  z-index: 20;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  padding: 6px 8px;
  border-radius: 50%;
  cursor: pointer;
}
.main-container .plato-carousel .plato-carousel-prev { left: 10px; }
.main-container .plato-carousel .plato-carousel-next { right: 10px; }

/* dots */
.main-container .plato-carousel .plato-carousel-dots {
  text-align: center;
  padding: 10px 0 14px;
}
.main-container .plato-carousel .plato-carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #cfcfcf;
  border: none;
  cursor: pointer;
  vertical-align: middle;
}
.main-container .plato-carousel .plato-carousel-dot.active {
  background: #333;
}
/* Styling for the new Upcoming Events card */
.plato-fancy-card {
  background-color: #f9f9ff;
  border-radius: 8px;
  border: 1px solid #e0e0ff;
  margin: 2em 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* Important for rounded corners on the header */
}

.plato-fancy-card-header {
  background-color: #4a4a8a; /* A modern, deep purple/blue */
  color: white;
  padding: 12px 20px;
}

.plato-fancy-card-header h3 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
}

.plato-fancy-card-body {
  padding: 20px;
  font-size: 0.95em;
  line-height: 1.6;
}

.plato-fancy-event-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.plato-fancy-event-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}