* {
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: #1d2230;
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: #26345c;
color: #ffffff;
}

.inner {
width: min(1000px, calc(100% - 36px));
margin: 0 auto;
}

.header .inner {
height: 82px;
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: 10px 13px;
font-size: 15px;
font-weight: 800;
letter-spacing: -0.025em;
color: rgba(255, 255, 255, 0.76);
}

.menu a::after {
content: "";
position: absolute;
left: 13px;
right: 13px;
bottom: 5px;
height: 2px;
background: #ffd800;
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.18s ease;
}

.menu a:hover {
color: #ffffff;
}

.menu a:hover::after {
transform: scaleX(1);
}

.menu a[aria-current="page"] {
color: #ffffff;
}

.menu a[aria-current="page"]::after {
transform: scaleX(1);
}

.burger {
display: none;
width: 42px;
height: 42px;
margin: 0;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 999px;
background: transparent;
cursor: pointer;
}

.burger span {
display: block;
width: 20px;
height: 2px;
margin: 5px auto;
border-radius: 2px;
background: #ffffff;
}

.content {
width: min(1000px, calc(100% - 36px));
margin: 0 auto 68px;
background: #ffffff;
}

.post {
margin: 0;
padding: 0;
background: #ffffff;
}

.post-header {
margin: 0 0 34px;
padding: 44px 0 28px;
border-bottom: 1px solid #dfe3ec;
background: #ffffff;
}

.post-title {
position: relative;
margin: 0;
padding: 0 0 0 20px;
font-size: 34px;
line-height: 1.22;
font-weight: 900;
letter-spacing: -0.06em;
color: #1d2230;
}

.post-title::before {
content: "";
position: absolute;
left: 0;
top: 0.1em;
width: 6px;
height: 1.18em;
border-radius: 999px;
background: #26345c;
}

.post-list {
margin: 0 0 52px;
padding: 0;
}

.item-list {
display: grid;
grid-template-columns: 1fr;
gap: 18px;
margin: 0;
padding: 0;
}

.item-list article {
display: grid;
grid-template-columns: minmax(420px, 46%) 1fr;
align-items: stretch;
min-width: 0;
background: #ffffff;
border: 1px solid #dfe3ec;
overflow: hidden;
}

.item-info {
display: flex;
flex-direction: column;
min-width: 0;
padding: 30px;
order: 2;
background: #ffffff;
}

.item-info strong {
display: block;
margin: 0 0 12px;
font-size: 24px;
line-height: 1.32;
font-weight: 900;
letter-spacing: -0.055em;
color: #1d2230;
word-break: keep-all;
}

.item-place,
.item-date {
position: relative;
display: block;
margin: 0 0 12px;
padding-left: 62px;
font-size: 15px;
line-height: 1.58;
letter-spacing: -0.025em;
color: #4f586b;
word-break: keep-all;
}

.item-place::before,
.item-date::before {
position: absolute;
left: 0;
top: 0;
width: 44px;
height: 25px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: #f1f3f8;
color: #26345c;
font-size: 12px;
font-weight: 900;
letter-spacing: -0.02em;
}

.item-place::before {
content: "장소";
}

.item-date::before {
content: "일정";
}

.item-info a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
width: fit-content;
min-width: 250px;
margin-top: auto;
padding: 7px 13px;
border: 1px solid #26345c;
background: #ffffff;
color: #26345c;
font-size: 14px;
font-weight: 900;
letter-spacing: -0.025em;
box-shadow: 0 8px 18px rgba(38, 52, 92, 0.1);
}

.item-info a::after {
content: ">";
font-size: 15px;
font-weight: 900;
line-height: 1;
}

.item-info a:hover {
background: #26345c;
color: #ffffff;
box-shadow: 0 10px 22px rgba(38, 52, 92, 0.16);
}

.item-image {
display: block;
order: 1;
height: 100%;
background: #eef1f7;
overflow: hidden;
}

.item-image img {
width: 100%;
height: 100%;
aspect-ratio: 2 / 1;
object-fit: cover;
transition: transform 0.22s ease;
}

.item-image:hover img {
transform: scale(1.025);
}

.post-content {
margin: 0;
padding: 0;
background: #ffffff;
}

.content-view {
background: #ffffff;
border-top: 3px solid #26345c;
padding: 40px 0 0;
font-size: 17px;
line-height: 1.82;
color: #303746;
word-break: keep-all;
overflow-wrap: break-word;
}

.content-view h2 {
position: relative;
margin: 50px 0 22px;
padding: 0 0 18px;
font-size: 28px;
line-height: 1.34;
font-weight: 900;
letter-spacing: -0.058em;
color: #1d2230;
border-bottom: 1px solid #dfe3ec;
}

.content-view h2:first-child {
margin-top: 0;
}

.content-view h2::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 92px;
height: 3px;
background: #26345c;
}

.content-view h3 {
position: relative;
margin: 36px 0 16px;
padding: 0 0 0 22px;
font-size: 22px;
line-height: 1.42;
font-weight: 900;
letter-spacing: -0.048em;
color: #1d2230;
}

.content-view h3::before {
content: "";
position: absolute;
left: 0;
top: 0.48em;
width: 10px;
height: 10px;
border: 2px solid #26345c;
background: #ffffff;
transform: rotate(45deg);
}

.content-view p {
margin: 0 0 17px;
}

.content-view ul {
margin: 18px 0 32px;
padding: 0;
list-style: none;
border-top: 1px solid #dfe3ec;
}

.content-view li {
position: relative;
margin: 0;
padding: 13px 0 13px 20px;
border-bottom: 1px solid #dfe3ec;
}

.content-view li::before {
content: "";
position: absolute;
left: 4px;
top: 1.33em;
width: 5px;
height: 5px;
border-radius: 50%;
background: #26345c;
}

.content-view li::after {
display: none;
}

.content-view table {
width: 100%;
margin: 22px 0 32px;
border-collapse: collapse;
border-top: 2px solid #26345c;
font-size: 15px;
line-height: 1.58;
background: #ffffff;
}

.content-view th {
background: #f5f6fa;
font-weight: 900;
color: #26345c;
}

.content-view th,
.content-view td {
padding: 15px 16px;
border-bottom: 1px solid #dfe3ec;
text-align: left;
vertical-align: top;
}

.content-view td:first-child {
font-weight: 850;
color: #1d2230;
}

.content-view strong {
font-weight: 900;
color: #26345c;
}

.footer {
background: #ffffff;
border-top: 1px solid #dfe3ec;
}

.footer .inner {
min-height: 76px;
display: flex;
align-items: center;
justify-content: center;
}

.footer p {
margin: 0;
font-size: 14px;
color: #737b8b;
}

@media (max-width: 960px) {
.item-list article {
grid-template-columns: minmax(330px, 43%) 1fr;
}

.item-info {
padding: 24px 24px;
}

.item-info strong {
font-size: 22px;
}
}

@media (max-width: 760px) {
.header .inner {
height: 66px;
}

.burger {
display: block;
}

.menu {
position: absolute;
top: 66px;
left: 0;
right: 0;
z-index: 40;
display: none;
background: #26345c;
}

.menu.is-open {
display: block;
}

.menu ul {
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
padding: 12px 0;
display: grid;
grid-template-columns: 1fr;
gap: 8px;
}

.menu a {
padding: 13px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
font-size: 14px;
text-align: center;
}

.menu a::after {
display: none;
}

.menu a:hover {
background: rgba(255, 255, 255, 0.14);
}

.menu a[aria-current="page"] {
background: #ffffff;
color: #26345c;
}

.content {
width: min(100% - 24px, 1120px);
margin-bottom: 50px;
}

.post-header {
padding: 32px 0 26px;
margin-bottom: 26px;
}

.post-title {
padding-left: 17px;
font-size: 29px;
}

.item-list {
gap: 16px;
}

.item-list article {
display: flex;
flex-direction: column;
border: 1px solid #dfe3ec;
}

.item-image img {
width: 100%;
height: auto;
aspect-ratio: 2 / 1;
object-fit: cover;
}

.item-info {
padding: 21px 18px 18px;
}

.item-info strong {
margin-bottom: 16px;
font-size: 21px;
}

.item-place,
.item-date {
padding-left: 56px;
font-size: 14px;
}

.item-place::before,
.item-date::before {
width: 40px;
height: 24px;
}

.item-info a {
width: 100%;
min-width: 0;
margin-top: 18px;
padding: 13px 15px;
}

.content-view {
padding-top: 34px;
font-size: 16px;
line-height: 1.78;
}

.content-view h2 {
margin-top: 40px;
font-size: 23px;
}

.content-view h3 {
margin-top: 29px;
font-size: 19px;
}

.content-view table {
display: block;
width: 100%;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
font-size: 14px;
}
}

@media (max-width: 460px) {
.inner {
width: calc(100% - 24px);
}

.content {
width: calc(100% - 24px);
}

.logo img {
height: auto;
}

.post-title {
font-size: 26px;
}

.item-info strong {
font-size: 19px;
}

.item-place,
.item-date {
padding-left: 0;
padding-top: 30px;
font-size: 13.5px;
}

.item-place::before,
.item-date::before {
top: 0;
}

.content-view h2 {
font-size: 21px;
}

.content-view h3 {
font-size: 18px;
}
}