/* ===== Publications ===== */

h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0a3c7d !important;
}

.section-title {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #333;
    font-weight: bold;
}

.pub-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 10px 0;
}

.pub-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 18px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    transition: 0.2s ease;
}

.pub-card:hover {
    background: #f2f7ff;
    transform: translateX(4px);
    border-color: #c6dafb;
}

.pub-icon img {
    width: 34px;
    height: auto;
}

.pub-content h3 {
    font-size: 18px;
    margin: 0 0 6px;
    color: #0a3c7d;
}

.pub-content p {
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .pub-card {
        flex-direction: column;
        text-align: left;
    }
}