/* Make author avatar rectangular */
.author__avatar img {
    border-radius: 0 !important;   /* Remove circle */
    width: 200px;                  /* Adjust width */
    height: auto;                  /* Keep aspect ratio */
    object-fit: cover;             /* Fill rectangle nicely */
}

.working-paper a {
  color: black !important;          /* force black */
  font-weight: bold !important;     /* force bold */
  text-decoration: underline !important; /* force underline */
}

.working-paper a:hover {
  color: black !important;          /* force black on hover */
  text-decoration: underline !important; /* force underline on hover */
}

/* Remove space below paper title so abstract button sits closer */
.working-paper p {
    margin-bottom: 0; /* removes gap between title and abstract button */
}

/* Hide the theme toggle button in the header */
#theme-toggle {
  display: none !important;
}

/* Hide entire footer area including sitemap and copyright */
.page__footer,
.page__footer * {
  display: none !important;
}

/* Force all links in working papers to normal weight, underlined, inherit color */
.working-paper a {
    font-weight: normal !important;
    text-decoration: underline !important;
    color: inherit !important;
}

/* Keep paper titles bold if wrapped in <strong> */
.working-paper a strong {
    font-weight: bold !important;
}

/* Style all page titles (Home, Research, etc.) */
.page__title {
    font-size: 2.5em;       /* increase size */
    font-weight: 700;        /* bold */
    /* color: maroon;            */
    /* maroon color */
    margin-bottom: 0.8em;    /* spacing below title */
}

/* Reduce space below all page titles */
.page__title {
    margin-bottom: 0.2em; /* or 0 for no space */
}














