.activites-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.activites-header {
  text-align: center;
  margin-bottom: 50px;
}

.activites-title {
  font-size: 42px;
  font-weight: 600;
  color: #10A37F;
  margin-bottom: 12px;
  line-height: 1.2;
}

.activites-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.tabs-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.tabs {
  display: inline-flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.tab-btn:hover {
  color: #10A37F;
  background: rgba(16, 163, 127, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 163, 127, 0.3);
}

.tab-btn.active svg {
  transform: scale(1.1);
}

.content-container {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.publication-card {
  background: white;
  border-radius: 16px;
  border-left: 4px solid #10A37F;
  padding: 32px;
  display: flex;
  gap: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 163, 127, 0.15);
}

.card-left {
  display: flex;
  gap: 24px;
  flex: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-icon.announcement {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
}

.card-icon.event {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
}

.card-icon.success {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
}

.card-icon.progress {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #10A37F;
  line-height: 1.3;
  flex: 1;
}

.card-badge {
  background: linear-gradient(135deg, #FFB020 0%, #FF9500 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 176, 32, 0.3);
}

.card-badge.event-badge {
  background: linear-gradient(135deg, #10A37F 0%, #0D8F6F 100%);
  box-shadow: 0 2px 8px rgba(16, 163, 127, 0.3);
}

.card-badge.success-badge {
  background: linear-gradient(135deg, #34C759 0%, #28A745 100%);
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

.card-badge.progress-badge {
  background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
}

.card-meta svg {
  width: 16px;
  height: 16px;
  color: #999;
}

.card-separator {
  color: #ddd;
}

.card-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tag {
  background: rgba(16, 163, 127, 0.1);
  color: #10A37F;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(16, 163, 127, 0.2);
  transform: translateY(-2px);
}

.card-image {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.publication-card:hover .card-image img {
  transform: scale(1.05);
}

.progress-bar-container {
  margin: 16px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E8F7F3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10A37F 0%, #34C759 100%);
  border-radius: 10px;
  transition: width 1s ease;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.progress-label {
  color: #10A37F;
  font-weight: 600;
}

.progress-amount {
  color: #666;
  font-weight: 500;
}

@media (max-width: 968px) {
  .publication-card {
    flex-direction: column;
  }

  .card-image {
    width: 100%;
    height: 220px;
  }

  .card-left {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .activites-container {
    padding: 40px 16px;
  }

  .activites-title {
    font-size: 32px;
  }

  .activites-subtitle {
    font-size: 14px;
  }

  .tabs {
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  .publication-card {
    padding: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-image {
    height: 180px;
  }
}
