/* ================================================
   IARI — PAGE HEADER
   ================================================ */

.iari-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.iari-header-text {
  width: 100%;
}

.iari-logo {
  height: 60px;
  width: auto;
  opacity: 0.65;
}

/* ================================================
   IARI — ARTICLE LIST (layout A editoriale)
   ================================================ */

.article-list {
  display: flex;
  flex-direction: column;
}

.article-item {
  display: flex;
  flex-direction: column;
  padding: 36px 0;
  border-bottom: 0.5px solid var(--border2);
  text-decoration: none;
  transition: background 0.15s;
}

.article-item:first-child {
  border-top: 0.5px solid var(--border2);
}

.article-item:last-child {
  border-bottom: none;
}

.article-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.article-topic {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.2s;
}

.article-date {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text3);
  white-space: nowrap;
}

.article-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.article-item:hover .article-title {
  color: var(--gold-light);
}

.article-abstract {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.8;
  margin: 0 0 18px 0;
  max-width: 720px;
}

.article-read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.article-item:hover .article-read {
  color: var(--gold);
}

.article-item--placeholder {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 600px) {
  .iari-header {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .iari-logo {
    height: 24px;
  }

  .article-item {
    padding: 28px 0;
  }

  .article-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .article-title {
    font-size: 19px;
  }
}
