.publication-section {
  padding-top: 20px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.publication-card {
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.publication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

.publication-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.publication-card-content {
  padding: 12px 14px 16px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.download-btn {
  background: #6b8f71;
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s ease;
}

.download-btn:hover {
  background: #5a7c61;
}

.download-img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

/* Action buttons container */
.action-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

/* View button */
.view-btn {
  background: #fff;
  border: 2px solid #2e7d32;
  border-radius: 8px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: background 0.2s ease;
}

.view-btn:hover {
  background: #e8f5e9;
}

.view-img {
  width: 18px;
  height: 18px;
}

/* Title row layout */
.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

/* Title link */
a.title {
  text-decoration: none;
  color: inherit;
  flex: 1;
  line-height: 1.4; 
  font-weight: normal !important; 
}

a.title:hover {
  text-decoration: none !important;
  color: #2e7d32;
}

@media (max-width: 992px) {
  .publication-section {
    padding-bottom: 60px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .publication-section {
    padding-top: 15px;
    padding-bottom: 40px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
  }

  .publication-card-img {
    height: 180px;
  }

  .publication-card-content {
    padding: 10px 12px;
  }
}