/**
 * WordPress: default templates (page.php, single), Gutenberg, sidebar-friendly layout.
 * Compile: npm run build:css (from cashpointTheme directory).
 */
.content-area {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.entry-content {
  max-width: 1600px;
  padding: 56px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 20px;

}
@media screen and (max-width: 768px) {
	.entry-content {
		 padding: 20px;							
	}
}
.entry-content ul {
  display: block;
  list-style: disc outside;
  padding-inline-start: 1.25em;
  margin: 0 0 1em;
}
.entry-content ul li {
  display: list-item;
  margin-bottom: 5px;
}
.entry-content ul li:last-child {
  margin-bottom: 0;
}
.entry-content ol {
  display: block;
  list-style: decimal outside;
  padding-inline-start: 1.25em;
}
.entry-content ol li {
  display: list-item;
  margin-bottom: 20px;
}
.entry-content ol li:last-child {
  margin-bottom: 0;
}

.entry-summary {
  overflow-wrap: break-word;
  word-break: break-word;
}

.page .entry-title {
  font-size: 42px;
  line-height: 1.2;
}
