/* css styles */

body {
  font-size: 17px;        /* default is ~16px; 17–18 is noticeably nicer */
  line-height: 1.6;       /* more breathing room between lines */
}

/* main flex container */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* left column */
.hero-left {
  flex: 0 0 auto;
  text-align: center;
}

/* right column */
.hero-right {
  flex: 1 1 auto;
  text-align: left;
}

.hero-right p {
  text-align: justify;
}

.hero-right {
  font-size: 1.05rem;  /* ~5% bigger than body */
}



/*adds a clean 1-line space after each publication.*/

ol li {
  margin-bottom: 1.5rem;
}

.wp-list li {
  margin-bottom: 1.5rem;
}
.wp-list li a.title-link {
  color: black;
  text-decoration: underline;
}

.wp-list li a.title-link:hover {
  color: black;
}

.wp-status {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;        /* pill shape */
  background-color: #f3f4f6;   /* very light gray */
  font-size: 1.0rem;
  font-style: italic;
  color: #333;
}

.wp-status strong {
  font-weight: 600;            /* bold for R&R + journal */
}


/* photo */
.hero-photo {
  max-width: 220px;
  width: 220px;
  display: block;
  margin: 0 auto 0.5rem auto;
}

/* icon styling */
.icon-row {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.icon-link {
  font-size: 2rem;
  margin-right: 0.75rem;
  text-decoration: none;
  color: #0d6efd;
}


.icon-link:hover {
  color: #0a58ca;
}

.contact-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.contact-left h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-row {
  display: flex;
  align-items: center;
}

.contact-icon {
  font-size: 1.8rem;
  margin-right: 0.9rem;
  color: #333;
}

.contact-link {
  color: #0d6efd;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-right span {
  font-size: 1rem;
  color: #333;
}

.data-wrapper {
  max-width: 900px;
}

.data-list {
  list-style: none;
  padding-left: 0;
}

.data-list > li {
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e5e5e5;
}

.data-list > li:last-child {
  border-bottom: none;
}

.data-list a {
  color: #0d6efd;
  text-decoration: none;
}

.data-list a:hover {
  text-decoration: underline;
}

.data-list ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}


.hero-wrapper {
  max-width: 900px;
}

/* you already have these: */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* row of bears */
.bear-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.bear-icon {
  height: 40px;      /* adjust size as needed */
}