/*serif font for book text */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

.may969-serif {
  font-family: 'EB Garamond', serif;
}

.may969-book-cite {
  font-family: 'EB Garamond', serif;
  font-size: 14pt;
}
.may969-book-cite-small {
  font-family: 'EB Garamond', serif;
  font-size: 12pt;
}

/* 2-tone css for diary list */

.may969-table-wrapper {
  margin: 0 auto;
  padding: 40px;
  max-width: 800px;
}

.may969-wide-table-wrapper {
  margin: 0 auto;
  padding: 40px;
  max-width: 1024px;
}

.may969-tight-table-wrapper {
  font-size: 14px;
  line-height: 1.2em;
  margin: 0 auto;
  padding: 40px;
  max-width: 800px;
}

.may969-table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}
@media screen and (max-width: 768px) {
  .may969-table {
    display: block;
  }
}

.may969-row {
  display: table-row;
  background: #f6f6f6;
}
.may969-row:nth-of-type(odd) {
  background: #e9e9e9;
}
.may969-row.may969-header {
  font-weight: 900;
  color: #ffffff;
  background: #cccccc;
}
.may969-row.plum {
  background: #912b3b;
}

@media screen and (max-width: 768px) {
  .may969-row {
    padding: 8px 0;
    display: block;
  }
}

.may969-cell {
  padding: 6px 12px;
  display: table-cell;
}
@media screen and (max-width: 768px) {
  .may969-cell {
    padding: 2px 12px;
    display: block;
  }
}


/* make article images smaller on desktop and still centred - cho May 2023*/
@media screen and (min-width:768px) {
.may969-smaller-article-image {
  margin: auto;
  max-width: 65%;
	}
}

/* make footer custom HTML module background image scale to text aperture - cho Jan 2024*/
#mod-custom114 {
	background-repeat: no-repeat;
	background-size: contain;
}