html,
body {
	margin: 0; padding: 0;
	height: 100vh;
}
* {
	padding: 0; margin: 0;
}
html {
	background: linear-gradient(180deg, #F2FAFF 0%, #E5F5FF 100%);
}
body {
	font-family: 'Inter', sans-serif;
	background: url(../images/bottom-bgr.png) 100% 100% no-repeat; background-attachment: fixed;
  padding: 20px;
}

h4 {
	margin-bottom: 6px;
	font-size: 16px; line-height: 21px; color: #1E293B; font-weight: 500;
}
h4 a {
	color: #1E293B; text-decoration: none;
}
p {
	margin-bottom: 18px;
	font-size: 12px; line-height: 18px; color: #64748B;
}
p.date {
	font-size: 10px;;
}
p a {
	color: #1082CF; text-decoration: underline;
}
p strong,
p b {
	font-weight: 600;
	color: #1E293B;
}
p u {
	text-decoration: underline;
}
p em,
p i {
	font-style: italic;
}
.post-list {
	display: flex; flex-direction: column; gap: 12px;
	max-width: 600px;
	margin: 0 auto;
}
.post-list article {
	display: flex; flex-direction: row; gap: 15px;
	padding: 10px;
	background-color: white;
	border-radius: 8px;
}
.post-list article figure {
	flex-shrink: 0;
	width: 73px; height: 62px;
	overflow: hidden;
}
.post-list article figure img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.post-list article hgroup {
	flex: 1;
}
.post-list article hgroup p{
	margin-bottom: 6px;
}
.content-wrapper {
	max-width: 600px;
	margin: 0 auto; padding: 20px;
	background-color: white;
	border-radius: 8px;
}
.block-paragraph ul {
	margin-bottom: 30px; padding-left: 20px;
}
.block-paragraph ul li {
	margin-bottom: 10px;
	font-size: 12px; line-height: 18px; color: #64748B;
}
.block-paragraph h3 {
	margin-bottom: 20px; padding-top: 20px;
	font-size: 20px; line-height: 125%; color: #1E293B; font-weight: 600;
}

.block-table table {
	width: 100%; border-collapse: collapse; border-spacing: 0;
	margin-bottom: 30px;
}
.block-table table tr th,
.block-table table tr td {
	border: 1px solid #E2E8F0; padding: 8px 12px;
	text-align: left; vertical-align: top;
	font-size: 12px; line-height: 18px; color: #64748B;
}
