.publications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.filters-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.filter-label {
    font-weight: bold;
    color: #152056;
}

.filter-dropdown {
    margin-right: 10px;
}

.filter-button {
    background-color: #152056;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    background-color: #152056;
    color: white;
}

.tab {
    padding: 15px 20px;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.tab.active {
    background-color: #0d1235;
}

.count {
    margin-left: 5px;
    opacity: 0.8;
}

.publications-list {
    width: 100%;
}

.publication-item {
    padding: 20px 0;
}

.publication-title {
    color: #152056;
    margin-bottom: 15px;
    font-size: 20px;
}

.publication-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Poppins', 'Century Gothic regular', 'Arial', sans-serif;
}
.publication-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-info p {
    margin: 5px 0;
    color: #555;
}

.download-button .button,
.download-button button {
    background-color: #152056;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.publication-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 0;
}

@media (max-width: 768px) {
    .publications-container {
        padding: 10px;
    }
    .publication-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.search-container_publicaciones {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 16px 0;
  width: 100%;
}

.search-form_publicaciones {
  width: 100%;
  max-width: 400px;
}

.search-input-wrapper_publicaciones {
  display: flex;
  align-items: center;
  border: 2px solid #1a2252;
  border-radius: 32px;
  padding: 0 12px;
  background: #fff;
  height: 44px;
  box-sizing: border-box;
  width: 100%;
}

.search-icon_publicaciones {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
}

.search-icon_publicaciones i {
  font-size: 14px;
  color: #1a2252;
  background: #fff;
  border: 2px solid #1a2252;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.search-field_publicaciones {
  border: none;
  outline: none;
  font-size: 15px;
  color: #1a2252;
  font-family: 'Poppins', 'Century Gothic regular', 'Arial', sans-serif;
  background: transparent;
  width: 100%;
  font-weight: 400;
  letter-spacing: 1px;
  height: 100%;
  padding: 0;
  line-height: 1;
}

.search-field_publicaciones::placeholder {
  color: #bdbdbd;
  opacity: 1;
  font-size: 15px;
  font-family: 'Poppins', 'Century Gothic regular', 'Arial', sans-serif;
  font-weight: 400;
}

.search-field_publicaciones:focus {
  background: rgba(26,34,82,0.04);
}