* {
box-sizing: border-box;
}

html {
margin: 0;
padding: 0;
font-size: 16px;
-webkit-text-size-adjust: 100%;
}

body {
margin: 0;
padding: 0;
background: #ffffff;
color: #172019;
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
line-height: 1.65;
}

a {
color: inherit;
text-decoration: none;
}

img {
display: block;
max-width: 100%;
height: auto;
}

.header {
background: #ffffff;
border-bottom: 3px solid #1f8f4d;
}

.inner {
width: min(1020px, calc(100% - 36px));
margin: 0 auto;
}

.header .inner {
height: 76px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.logo {
display: flex;
align-items: center;
flex: 0 0 auto;
}

.logo a {
display: flex;
align-items: center;
}

.logo img {
display: block;
}

.menu {
display: block;
}

.menu ul {
display: flex;
align-items: center;
gap: 10px;
margin: 0;
padding: 0;
list-style: none;
}

.menu li {
margin: 0;
padding: 0;
}

.menu a {
position: relative;
display: block;
padding: 9px 13px;
border-radius: 0;
font-size: 15px;
font-weight: 750;
letter-spacing: -0.025em;
color: #334238;
}

.menu a::before {
content: "";
position: absolute;
left: 13px;
right: 13px;
bottom: 3px;
height: 2px;
background: #1f8f4d;
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.18s ease;
}

.menu a:hover {
color: #1f8f4d;
}

.menu a:hover::before {
transform: scaleX(1);
}

.menu a[aria-current="page"] {
color: #1f8f4d;
font-weight: 850;
}

.menu a[aria-current="page"]::before {
transform: scaleX(1);
}

.burger {
display: none;
width: 42px;
height: 42px;
margin: 0;
padding: 0;
border: 1px solid #dce8df;
border-radius: 0;
background: #ffffff;
cursor: pointer;
}

.burger span {
display: block;
width: 20px;
height: 2px;
margin: 5px auto;
border-radius: 2px;
background: #1f8f4d;
}

.content {
width: min(1020px, calc(100% - 36px));
margin: 0 auto 66px;
background: #ffffff;
}

.post {
margin: 0;
padding: 0;
background: #ffffff;
}

.post-header {
position: relative;
margin: 0 0 30px;
padding: 42px 0 28px;
background: #ffffff;
border-bottom: 1px solid #e7eee8;
}

.post-title {
position: relative;
margin: 0;
padding-left: 18px;
font-size: 35px;
line-height: 1.24;
font-weight: 900;
letter-spacing: -0.055em;
color: #172019;
}

.post-title::before {
content: "";
position: absolute;
left: 0;
top: 0.18em;
width: 5px;
height: 1.1em;
border-radius: 999px;
background: #1f8f4d;
}

.post-list {
margin: 0 0 50px;
padding: 0;
background: #ffffff;
}

.item-list {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
margin: 0;
padding: 0;
background: #ffffff;
}

.item-list article {
display: grid;
grid-template-columns: 320px 1fr;
align-items: stretch;
min-width: 0;
background: #ffffff;
border: 1px solid #e2ebe4;
border-radius: 0;
overflow: hidden;
}

.item-list article > a:first-child {
display: block;
background: #ffffff;
overflow: hidden;
}

.item-list article > a:first-child img {
width: 100%;
height: 100%;
min-height: 160px;
aspect-ratio: 2 / 1;
object-fit: cover;
transition: transform 0.22s ease;
}

.item-list article > a:first-child:hover img {
transform: scale(1.025);
}

.item-list article > section {
display: flex;
flex-direction: column;
min-width: 0;
padding: 23px 25px 22px;
background: #ffffff;
}

.item-list h3 {
position: relative;
margin: 0 0 16px;
padding: 0 0 13px;
border-bottom: 1px solid #e7eee8;
font-size: 22px;
line-height: 1.35;
font-weight: 900;
letter-spacing: -0.045em;
color: #172019;
word-break: keep-all;
}

.item-list h3::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 42px;
height: 2px;
background: #1f8f4d;
}

.item-meta {
display: grid;
grid-template-columns: 1fr;
gap: 9px;
margin: 0 0 20px;
}

.item-meta span {
display: grid;
grid-template-columns: 48px 1fr;
gap: 10px;
align-items: start;
font-size: 15px;
line-height: 1.55;
font-weight: 850;
letter-spacing: -0.025em;
color: #1f8f4d;
word-break: keep-all;
}

.item-meta em {
font-style: normal;
font-weight: 500;
color: #4c5a50;
}

.item-list article > section > a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
width: fit-content;
min-width: 168px;
margin-top: auto;
padding: 12px 17px;
border: 1px solid #1f8f4d;
background: #1f8f4d;
color: #ffffff;
font-size: 14px;
font-weight: 900;
letter-spacing: -0.025em;
}

.item-list article > section > a::after {
content: ">";
font-size: 15px;
font-weight: 900;
line-height: 1;
}

.item-list article > section > a:hover {
background: #166f3a;
border-color: #166f3a;
}

.post-content {
margin: 0;
padding: 0;
background: #ffffff;
}

.content-view {
background: #ffffff;
border-top: 2px solid #172019;
padding: 38px 0 0;
font-size: 17px;
line-height: 1.82;
color: #303b33;
word-break: keep-all;
overflow-wrap: break-word;
}

.content-view h2 {
position: relative;
margin: 48px 0 20px;
padding: 0 0 15px;
border-bottom: 1px solid #e2ebe4;
font-size: 27px;
line-height: 1.36;
font-weight: 900;
letter-spacing: -0.055em;
color: #172019;
}

.content-view h2:first-child {
margin-top: 0;
}

.content-view h2::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 68px;
height: 3px;
background: #1f8f4d;
}

.content-view h3 {
position: relative;
margin: 34px 0 14px;
padding-left: 18px;
font-size: 21px;
line-height: 1.42;
font-weight: 900;
letter-spacing: -0.045em;
color: #172019;
}

.content-view h3::before {
content: "";
position: absolute;
left: 0;
top: 0.45em;
width: 8px;
height: 8px;
border: 2px solid #1f8f4d;
border-radius: 50%;
background: #ffffff;
}

.content-view p {
margin: 0 0 17px;
}

.content-view ul {
margin: 16px 0 28px;
padding: 0;
list-style: none;
border-top: 1px solid #e2ebe4;
background: #ffffff;
}

.content-view li {
position: relative;
margin: 0;
padding: 13px 0 13px 24px;
border-bottom: 1px solid #e2ebe4;
}

.content-view li::before {
content: "";
position: absolute;
left: 2px;
top: 1.22em;
width: 7px;
height: 7px;
background: #1f8f4d;
}

.content-view table {
width: 100%;
margin: 20px 0 30px;
border-collapse: collapse;
border-top: 2px solid #1f8f4d;
font-size: 15px;
line-height: 1.58;
background: #ffffff;
}

.content-view th {
background: #ffffff;
font-weight: 900;
color: #1f8f4d;
}

.content-view th,
.content-view td {
padding: 15px 16px;
border-bottom: 1px solid #e2ebe4;
text-align: left;
vertical-align: top;
}

.content-view td:first-child {
font-weight: 850;
color: #172019;
}

.content-view strong {
font-weight: 900;
color: #1f8f4d;
}

.footer {
background: #ffffff;
border-top: 1px solid #e7eee8;
}

.footer .inner {
min-height: 76px;
display: flex;
align-items: center;
justify-content: center;
}

.footer p {
margin: 0;
font-size: 14px;
color: #36443a;
}

@media (max-width: 920px) {
.item-list article {
grid-template-columns: 260px 1fr;
}

.item-list h3 {
font-size: 20px;
}

.item-list article > section {
padding: 20px 22px;
}
}

@media (max-width: 760px) {
.header .inner {
height: 66px;
}

.burger {
display: block;
}

.menu {
position: absolute;
top: 69px;
left: 0;
right: 0;
z-index: 40;
display: none;
background: #ffffff;
border-top: 1px solid #e7eee8;
border-bottom: 1px solid #e7eee8;
}

.menu.is-open {
display: block;
}

.menu ul {
width: min(1020px, calc(100% - 28px));
margin: 0 auto;
padding: 12px 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}

.menu a {
padding: 11px 10px;
border: 1px solid #e2ebe4;
font-size: 14px;
text-align: center;
}

.menu a::before {
display: none;
}

.menu a[aria-current="page"] {
background: #1f8f4d;
border-color: #1f8f4d;
color: #ffffff;
}

.content {
width: min(100% - 24px, 1120px);
margin-bottom: 50px;
}

.post-header {
padding: 32px 0 24px;
margin-bottom: 24px;
}

.post-title {
font-size: 29px;
padding-left: 16px;
}

.item-list {
gap: 14px;
}

.item-list article {
display: flex;
flex-direction: column;
}

.item-list article > a:first-child img {
width: 100%;
height: auto;
min-height: 0;
aspect-ratio: 2 / 1;
}

.item-list article > section {
padding: 18px 18px 17px;
}

.item-list h3 {
margin-bottom: 14px;
padding-bottom: 12px;
font-size: 19px;
}

.item-meta {
gap: 8px;
margin-bottom: 18px;
}

.item-meta span {
grid-template-columns: 44px 1fr;
font-size: 14px;
}

.item-list article > section > a {
width: 100%;
min-width: 0;
padding: 12px 14px;
}

.content-view {
padding-top: 32px;
font-size: 16px;
line-height: 1.78;
}

.content-view h2 {
margin-top: 40px;
font-size: 23px;
}

.content-view h3 {
margin-top: 28px;
font-size: 19px;
}

.content-view table {
display: block;
overflow-x: auto;
white-space: nowrap;
font-size: 14px;
}
}

@media (max-width: 460px) {
.inner {
width: calc(100% - 24px);
}

.content {
width: calc(100% - 24px);
}

.logo img {
height: auto;
}

.menu ul {
width: calc(100% - 24px);
}

.post-title {
font-size: 26px;
}

.item-list article > section {
padding: 16px 15px 15px;
}

.item-list h3 {
font-size: 18px;
}

.item-meta span {
grid-template-columns: 42px 1fr;
font-size: 13.5px;
}

.content-view h2 {
font-size: 21px;
}

.content-view h3 {
font-size: 18px;
}
}