.rc-accordion {
  border: 1px solid #8e8e8e;
  border-radius: 5px;
}
.rc-accordion-item {
  border-bottom: 1px solid #ddd;
}
.rc-accordion-header {
  display: block;
  width: 100%;
  text-align: left;
  background: #00c1d7;
  padding: 10px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}
.rc-accordion-header:hover {
  background: #00a2bb;
}

.rc-accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

.rc-accordion-header h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

.rc-accordion-content {
  display: none;
  padding: 8px;
}

.rc-corse-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.rc-corsa-card {
  width: calc(25% - 20px);
  box-sizing: border-box;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  background: #d1d1d1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.rc-corsa-card:hover {
  transform: scale(1.03);
  background: #fff;
}
.rc-corsa-bandiera-wrapper {
  width: 50px;
  height: 50px;
  background: #f2f2f2;
  border-radius: 4%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-corsa-bandiera-img {
  width: 45px;
  height: auto;
}
.rc-corsa-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.rc-label {
  font-weight: bold;
  margin-right: 5px;
}
.rc-corsa-data,
.rc-corsa-fine,
.rc-corsa-paese,
.rc-corsa-classe {
  font-size: 14px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .rc-corsa-card {
    width: 100%;
  }
}