.articleDayTitle {
  color: #333; 
  transition: color 0.3s ease;
}

.articleDayTitle:hover {
  color: #c76b8a; 
}

.articleDayImgWrapper img {
  transition: opacity 0.3s ease;
}

.articleDayImgWrapper img:hover {
  opacity: 0.80; 
}
.instrument-icon {
  width: 140px;
  height: 140px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.instrument-icon:hover {
  transform: translateY(-4px);
}

.instrument-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.instrument-icon span {
  font-weight: 600;
  color: rgb(207, 92, 128);
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .instrument-icon {
    width: 112px !important;  
    height: 112px !important;
    padding: 0.8rem !important;
  }

  .instrument-icon img {
    width: 38px !important;
    height: 38px !important;
  }

  .instrument-icon span {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 768px) {
  #carouselExampleSlidesOnly .carousel-inner img {
    object-fit: cover;
    height: 80vh; /* adjust height dominance here (e.g. 90vh for taller) */
  }
}

