/* Sección Publicaciones */

/* Sidebar */
.pub-sidebar {
  background-color: #f2f2f2;
  padding: 40px;
  border-radius: 20px;
}

/* Buscador */
.seccion-publicaciones input {
  background-color: transparent;
  border: none;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.search-icon {
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding-left: 30px !important;
  box-sizing: border-box;
  display: block;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid;
  padding-bottom: 8px;
}

/* Títulos de filtro */
.filter-title {
  font-weight: bold;
}

/* Tarjeta de publicación */
.pub-card {
  border-radius: 20px;
  border: 1px solid;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

/* Columna imagen */
.pub-img-col {
  display: flex;
  flex-direction: column;
}

/* Wrapper imagen */
.pub-img-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Imagen destacada */
.pub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: left;
  border-radius: 19px;
}

/* Imagen por defecto */
.pub-img-default {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

/* Columna contenido */
.pub-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Año */
.pub-year {
  font-size: 12px;
  color: #fbb03b;
  font-weight: 700;
  line-height: 12px;
}

/* Categoría */
.pub-cat {
  color: #888888;
  font-weight: 400;
}

/* Título */
.pub-title {
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.pub-title:hover {
  color: #1a1a1a;
  text-decoration: none;
}

/* Autor */
.pub-author {
  font-size: 12px;
  color: #9c9c9c;
}

/* Enlace Ver más */
.pub-more {
  color: #fbb03b;
  font-weight: 500;
  text-decoration: underline;
}

.pub-more:hover {
  color: #fbb03b;
  text-decoration: none;
}

/* Paginación */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.pagination .pagination-link {
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 5px;
  border-radius: 8px;
  transition: all 0.2s;
}

.pagination .pagination-link:hover {
  color: #fbb03b;
}

.pagination .pagination-link.active {
  color: #fbb03b;
  font-weight: bold;
}

.pagination .pagination-link.dots {
  cursor: default;
}

.pagination .pagination-link.dots:hover {
  background-color: transparent;
  color: #1a1a1a;
}

/* Tabs */
.pub-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
}

.pub-tab {
  padding: 12px 24px;
  color: #666666;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}

.pub-tab:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.pub-tab.active {
  color: #fbb03b;
  border-bottom-color: #fbb03b;
}
