/* Additional styling for the organization subtitles */
.organization-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 10px;
  text-align: center;
}

.organization-subtitle-en {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  text-align: center;
}

/* Enhanced styling for the handshake icon */
.handshake-icon {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.handshake-icon:hover {
  transform: scale(1.1);
}

.handshake-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(230, 181, 74, 0.2);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* Background pattern enhancement */
.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(26, 31, 92, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(26, 31, 92, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(26, 31, 92, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(26, 31, 92, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  z-index: 0;
}

/* Enhanced initiative title styling */
.initiative-name {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.initiative-name::before,
.initiative-name::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.initiative-name::before {
  right: 100%;
}

.initiative-name::after {
  left: 100%;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
  .initiative-name::before,
  .initiative-name::after {
    width: 30px;
  }
  
  .organization-subtitle {
    font-size: 1rem;
  }
  
  .organization-subtitle-en {
    font-size: 0.8rem;
  }
}
