/* ===========================
   ICOVRI 10 — Abstract Submission
   =========================== */

#abstracts { background: var(--bg-page); }

/* ---- Two-column layout ---- */
.abstract-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* ========================
   Left column — contacts
   ======================== */
.abstract-contacts-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #083b45;
  margin-bottom: 20px;
}

.abstract-contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 20px 22px;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}

.abstract-contact-card:hover { border-color: var(--teal-bright); }

.abstract-contact-role {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 700;
  margin-bottom: 6px;
}

.abstract-contact-name {
  font-size: 16px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.abstract-contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

.abstract-contact-detail:last-child { margin-bottom: 0; }

.abstract-contact-icon { font-size: 15px; flex-shrink: 0; }

.abstract-contact-detail a {
  color: #0a8fa8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.abstract-contact-detail a:hover { color: var(--teal-bright); }

.abstract-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(201, 162, 39, .08);
  border-left: 3px solid #c9a227;
  font-size: 13px;
  color: #083b45;
  line-height: 1.7;
}

body.ar .abstract-note {
  border-left: none;
  border-right: 3px solid #c9a227;
}

/* ========================
   Right column — instructions
   ======================== */
.abstract-instructions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Block wrapper ---- */
.abstract-block {
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.abstract-block-title {
  background: #083b45;
  color: #e8c96a;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 20px;
}

/* ---- Formatting rules ---- */
.abstract-rule {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-soft);
}

.abstract-rule:last-child { border-bottom: none; }

.abstract-rule-tag {
  background: #f0fbfd;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #083b45;
  letter-spacing: 0.5px;
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
}

body.ar .abstract-rule-tag {
  border-right: none;
  border-left: 1px solid var(--border-soft);
}

.abstract-rule-desc {
  padding: 14px 18px;
  font-size: 13px;
  color: #2a6070;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

/* ---- Content structure rows ---- */
.abstract-content-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.abstract-content-row:last-child { border-bottom: none; }

.abstract-content-num {
  width: 28px;
  height: 28px;
  background: var(--teal-bright);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.abstract-content-label {
  font-size: 13px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 4px;
}

.abstract-content-desc {
  font-size: 13px;
  color: #2a6070;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .abstract-layout {
    grid-template-columns: 1fr;
  }

  .abstract-rule {
    grid-template-columns: 90px 1fr;
  }
}
