.research-paper-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
  /* background: white; */
  /* border-radius: 1.25rem; */
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
  padding: 1rem;
}

/* Responsive breakpoint for tablets and smaller screens */
@media (max-width: 1200px) {
  .research-paper-row {
    flex-direction: column;
    align-items: flex-start;
    /* gap: 1rem; */
  }
  
  .research-paper-image {
    flex: none;
    width: 100%;
    order: 2; /* Move image below content */
  }
  
  .research-paper-image img {
    width: 100%;
    max-width: 420px;
  }
  
  .research-paper-content {
    order: 1; /* Move content above image */
  }
  
  .research-paper-title {
    font-size: 1.75rem;
  }
}

/* Additional breakpoint for mobile phones */
@media (max-width: 480px) {
  .research-paper-row {
    padding: 1.5rem;
    /* gap: 1.5rem; */
  }
  
  .research-paper-title {
    font-size: 1.5rem;
  }
  
  .research-paper-abstract {
    font-size: 1rem;
  }
  
  .research-paper-authors {
    font-size: 1rem;
  }
  
  .research-paper-meta {
    font-size: 1rem;
  }
}

.research-paper-image {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.research-paper-image img {
  width: 420px;
  height: auto;
  border-radius: 0.5rem;
  /* box-shadow: 0 1px 6px rgba(0,0,0,0.08); */
  margin-bottom: 1.5rem;
}

.research-paper-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

.research-paper-links a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
.research-paper-links a:hover {
  color: #1a2fa0;
  text-decoration: underline;
}

.research-paper-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.research-paper-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.research-paper-authors {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.25rem;
}

.research-paper-abstract {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.research-paper-meta {
  display: flex;
  gap: 2.5rem;
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}
.research-paper-meta span {
  display: inline-block;
}
