/*--------------------------------------------------------------
# Keynotes Section
--------------------------------------------------------------*/
.keynotes .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.keynotes .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.keynotes .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.keynotes .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.keynotes .card:hover img {
  transform: scale(1);
}

.past-conferences-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.past-conferences-widget ul li {
  padding-bottom: 10px;
}

.past-conferences-widget ul li:last-child {
  padding-bottom: 0;
}

.past-conferences-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.past-conferences-widget ul a:hover {
  color: var(--accent-color);
}

.past-conferences-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.past-conferences-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.past-conferences-widget ul li {
  padding-bottom: 10px;
}

.past-conferences-widget ul li:last-child {
  padding-bottom: 0;
}

.past-conferences-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.past-conferences-widget ul a:hover {
  color: var(--accent-color);
}

.past-conferences-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

/* Recent news widget */
.recent-news-widget .news-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-news-widget .news-item:last-child {
  margin-bottom: 0;
}

.recent-news-widget .news-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-news-widget .news-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-news-widget .news-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-news-widget .news-item h4 a:hover {
  color: var(--accent-color);
}

.recent-news-widget .news-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info-section article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.info-section .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.info-section .content {
  margin-top: 20px;
}


/*--------------------------------------------------------------
# Tutorials cards
--------------------------------------------------------------*/
.tutorials .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.tutorials .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.tutorials .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.tutorials .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.tutorials .card:hover img {
  transform: scale(1);
}