@font-face {
  font-family: "GyeonggiTitleM";
  src: url("../fonts/Title_Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GyeonggiTitleL";
  src: url("../fonts/Title_Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GyeonggiTitleB";
  src: url("../fonts/Title_Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --logo: #ea721a;
  --primary: #7B1FA2;
  --primary-variant: #8E24AA;
  --accent: #00796B;
  --accent-variant: #009688;
  --red: #B71C1C;
  --red-variant: #E53935;
  --blue: #1565C0;
  --blue-variant: #2196F3;
  --naver: #40b549;
  --light: #fcfcfc;
  --grey: #d0d0d0;
  --grey-dark: #6c757d;
  --dark: #444;
  --white: #FFFFFF;
  --black: #222;
  --rgba-black-slight-1: rgba(0, 0, 0, 0.12);
  --rgba-black-slight-2: rgba(0, 0, 0, 0.14);
  --rgba-black-light: rgba(0, 0, 0, 0.2);
  --rgba-black-medium: rgba(0, 0, 0, 0.45);
  --rgba-black-dark: rgba(0, 0, 0, 0.75);
  --rgba-black: rgba(0, 0, 0, 0.9);
  --rgba-white-slight-1: rgba(255, 255, 255, 0.12);
  --rgba-white-slight-2: rgba(255, 255, 255, 0.14);
  --rgba-white-light: rgba(255, 255, 255, 0.2);
  --rgba-white-medium: rgba(255, 255, 255, 0.45);
  --rgba-white-dark: rgba(255, 255, 255, 0.75);
  --rgba-white: rgba(255, 255, 255, 0.9);
}

html {
  scroll-behavior: smooth;
  --logoColor: var(--logo);
  --primaryColor: var(--primary);
  --primaryVariantColor: var(--primary-variant);
  --accentColor: var(--accent);
  --accentVariantColor: var(--accent-variant);
  --redColor: var(--red);
  --redVariantColor: var(--red-variant);
  --blueColor: var(--blue);
  --blueVariantColor: var(--blue-variant);
  --naverColor: var(--naver);
  --lightColor: var(--light);
  --greyColor: var(--grey);
  --greyColorDark: var(--grey-dark);
  --darkColor: var(--dark);
  --whiteColor: var(--white);
  --blackColor: var(--black);
  --rgbaBlackSlight1: var(--rgba-black-slight-1);
  --rgbaBlackSlight2: var(--rgba-black-slight-2);
  --rgbaBlackLight: var(--rgba-black-light);
  --rgbaBlackMedium: var(--rgba-black-medium);
  --rgbaBlackDark: var(--rgba-black-dark);
  --rgbaBlack: var(--rgba-black);
  --rgbaWhiteSlight1: var(--rgba-white-slight-1);
  --rgbaWhiteSlight2: var(--rgba-white-slight-2);
  --rgbaWhiteLight: var(--rgba-white-light);
  --rgbaWhiteMedium: var(--rgba-white-medium);
  --rgbaWhiteDark: var(--rgba-white-dark);
  --rgbaWhite: var(--rgba-white);
}

html.dark-theme {
  scroll-behavior: smooth;
  --logoColor: var(--logo);
  --primaryColor: var(--primary-variant);
  --primaryVariantColor: var(--primary);
  --accentColor: var(--accent-variant);
  --accentVariantColor: var(--accent);
  --redColor: var(--red-variant);
  --redVariantColor: var(--red);
  --blueColor: var(--blue-variant);
  --blueVariantColor: var(--blue);
  --naverColor: var(--naver);
  --lightColor: var(--dark);
  --greyColor: var(--grey-dark);
  --greyColorDark: var(--grey);
  --darkColor: var(--light);
  --whiteColor: var(--black);
  --blackColor: var(--white);
  --rgbaBlackSlight1: var(--rgba-white-slight-1);
  --rgbaBlackSlight2: var(--rgba-white-slight-2);
  --rgbaBlackLight: var(--rgba-white-light);
  --rgbaBlackMedium: var(--rgba-white-medium);
  --rgbaBlackDark: var(--rgba-white-dark);
  --rgbaBlack: var(--rgba-white);
  --rgbaWhiteSlight1: var(--rgba-black-slight-1);
  --rgbaWhiteSlight2: var(--rgba-black-slight-2);
  --rgbaWhiteLight: var(--rgba-black-light);
  --rgbaWhiteMedium: var(--rgba-black-medium);
  --rgbaWhiteDark: var(--rgba-black-dark);
  --rgbaWhite: var(--rgba-black);
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

.shadow-content {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
}

.shadow-xl {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
}

.section-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-content_sm {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.section-content_lg {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section-content_xl {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.btn {
  border-radius: 0;
  transition: all 0.25s ease-in;
}
.btn:hover {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
}
.btn:not(.btn-square):not(.btn-square-outline) {
  border-radius: 12px;
}
.btn-login, .btn-logout, .btn-register {
  color: var(--darkColor);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border: 1px solid var(--greyColorDark);
}
.btn-login:hover, .btn-logout:hover, .btn-register:hover {
  box-shadow: none;
  color: var(--lightColor);
}
.btn-login:hover {
  border: 1px solid var(--logoColor);
  background-color: var(--logoColor);
}
.btn-logout:hover {
  border: 1px solid var(--redColor);
  background-color: var(--redColor);
}
.btn-register:hover {
  border: 1px solid var(--greyColorDark);
  background-color: var(--greyColorDark);
}
.btn-accent {
  background-color: var(--accentColor);
  color: var(--lightColor);
}
.btn-accent:hover {
  background-color: var(--accentColor);
}
.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--lightColor);
  color: var(--lightColor);
}
.btn-transparent:hover {
  border: 1px solid var(--lightColor);
}
.btn-brand {
  background-color: var(--primaryColor);
  color: var(--lightColor);
}
.btn-brand:hover {
  background-color: var(--primaryColor);
  color: var(--lightColor);
}
.btn-square {
  background-color: var(--logoColor);
  color: var(--lightColor);
}
.btn-square:hover {
  background-color: var(--logoColor);
  color: var(--lightColor);
}
.btn-square-outline {
  border: 1px solid var(--logoColor);
  color: var(--logoColor);
}
.btn-square-outline:hover {
  background-color: var(--logoColor);
  border: none;
  color: var(--lightColor);
}
.btn-round-outline {
  border: 1px solid var(--greyColorDark);
  color: var(--greyColorDark);
}

.border-bottom-black {
  border-bottom: 1px solid var(--darkColor);
}

body {
  background-color: var(--lightColor);
  color: var(--darkColor);
}
body > * {
  font-family: "GyeonggiTitleL", sans-serif;
  word-break: keep-all;
}
body h1, body h2 {
  font-family: "GyeonggiTitleB", sans-serif;
}
body h1, body h2, body h3, body .h1, body .h2, body .h3 {
  line-height: 1.4;
}
body h4, body h5, body h6, body .h4, body .h5, body .h6 {
  line-height: 1.6;
}
body h3, body h4, body h5, body h6,
body .section-title,
body .section-subtitle,
body .article-title,
body .strong,
body strong,
body .wp-embed-heading {
  font-family: "GyeonggiTitleM", sans-serif;
}
body p, body li {
  line-height: 1.75;
  word-break: keep-all;
}
body a {
  color: inherit;
  text-decoration: none;
}
body a:hover {
  color: var(--logoColor);
}

.container-narrow {
  width: 100%;
  max-width: 1280px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--greyColorDark);
  font-weight: 300;
}
.article-meta .posting-time {
  margin-bottom: 0;
}
.article-meta .post-like {
  display: inline-block;
  font-size: 0.8rem;
}
.article-meta .post-like .sl-wrapper a {
  padding: 0;
  display: flex;
  align-items: center;
}
.article-meta .post-like .sl-wrapper .sl-icon,
.article-meta .post-like .sl-wrapper .sl-count {
  font-weight: 300;
  font-size: inherit;
  color: inherit !important;
  font-family: "GyeonggiTitleL", sans-serif !important;
}

.has-drop-cap:not(:focus):first-letter {
  font-size: 4.4em !important;
}

body.login {
  background-color: var(--greyColor);
}
body.login a {
  color: var(--darkColor) !important;
}
body.login .button-primary {
  background-color: var(--redVariantColor);
  border-color: var(--redVariantColor);
  box-shadow: 1px 1px 5px 0px var(--redColor);
}
body.login .button-primary:hover, body.login .button-primary:active, body.login .button-primary:focus {
  background-color: var(--redVariantColor);
  border-color: var(--redVariantColor);
  box-shadow: 1px 1px 5px 0px var(--redColor);
}
body.login h1 a {
  font-size: 1.5rem;
  font-weight: bold;
  background-image: none;
  width: auto;
  height: auto;
  text-indent: 0;
}
body.login form {
  background: var(--rgbaWhiteLight) !important;
  transition: all 0.5s ease;
}
body.login form:hover {
  background: var(--whiteColor) !important;
}
body.login form#registerform h2 {
  display: none;
}
body.login form#registerform .acf-user-register-fields .acf-label label {
  display: none;
}

body.login label,
#reg_passmail {
  color: var(--darkColor) !important;
}

.naver-map,
.kakao-map {
  margin-top: 1.5rem;
  border: 1px solid var(--greyColor);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
}
.naver-map #map,
.kakao-map #map {
  width: 100%;
  height: 22.5rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.naver-map .naver-place,
.kakao-map .naver-place {
  display: inline-block;
  padding: 0.5rem;
  font-size: 0.95rem;
}
.naver-map .naver-place a,
.kakao-map .naver-place a {
  color: var(--greyColorDark);
  text-decoration: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.naver-map .naver-place a img,
.kakao-map .naver-place a img {
  height: 1.25rem;
  border-radius: 4px;
}

#topBanner .topBanner {
  height: 26rem;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px;
}
#topBanner .topBanner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--rgbaBlackLight);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--lightColor);
}
#topBanner .topBanner-overlay .section-title {
  font-size: 3.5rem;
  margin-bottom: 0;
}
#topBanner .topBanner-overlay .section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.mblog-pagination {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.mblog-pagination .navigation {
  display: flex;
  justify-content: center;
}
.mblog-pagination .navigation .nav-links {
  font-size: 1.125rem;
}

#search-page .search-page-title,
#search-result-page .search-page-title {
  margin-bottom: 1.5rem;
}
#search-page .searchform div,
#search-result-page .searchform div {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 4fr 1fr;
}
#search-page .searchform div input,
#search-result-page .searchform div input {
  border-radius: 12px;
  padding: 0.5rem;
  line-height: 28px;
}
#search-page .searchform div input[type=submit],
#search-result-page .searchform div input[type=submit] {
  background-color: var(--logoColor);
  border: 1px solid var(--logoColor);
  color: var(--lightColor);
}

#search-result-page .post-type-sort {
  display: flex;
  justify-content: center;
}
#search-result-page .post-type-sort_fields {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px dashed var(--greyColorDark);
  border-radius: 12px;
}
#search-result-page .article-column {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#search-result-page .article-column .article-card {
  height: 100%;
  border: 1px solid var(--rgbaBlackSlight1);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "img title" "img text";
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  min-height: 8.8rem;
}
#search-result-page .article-column .article-card .article-img {
  grid-area: img;
}
#search-result-page .article-column .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#search-result-page .article-column .article-card .article-title {
  grid-area: title;
  font-weight: bold;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}
#search-result-page .article-column .article-card .article-text {
  grid-area: text;
  font-size: 0.9rem;
}
#search-result-page .article-column .article-card .article-text .article-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#search-result-page .article-column .article-card .article-time {
  width: 5.5rem;
  height: 5.5rem;
}
#search-result-page .article-column .article-card.no-article-img {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "text";
}
#search-result-page .article-column .article-card.no-article-img .article-img {
  display: none;
}
#search-result-page .article-column .article-card.no-article-img .article-title {
  grid-area: title;
  padding: 0.5rem;
}
#search-result-page .article-column .article-card.no-article-img .article-text {
  grid-area: text;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#search-result-page .article-column .article-card:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border: 1px solid inherit;
}
#search-result-page .article-column .article-card img {
  border-radius: 4px;
}
#search-result-page .article-column .article-card .article-img {
  border-right: 1px solid var(--greyColor);
}
#search-result-page .search-query {
  border-top: 1px dashed var(--greyColorDark);
  border-bottom: 1px dashed var(--greyColorDark);
}
#search-result-page .search-query form input {
  border-radius: 12px;
}

#modal-popup.popup {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--rgbaBlackLight);
  visibility: hidden;
  opacity: 0;
  transform: scale(1.15);
  transition: 0.33s visibility ease-in-out, 0.33s opacity ease-in-out, 0.33s transform ease-in-out;
  will-change: visibility, opacity, transform;
}
#modal-popup.popup.popup__visible {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
#modal-popup.popup .popup-content {
  position: relative;
  width: clamp(50%, 500px, 90%);
  min-height: 20rem;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
  background-color: var(--lightColor);
}
#modal-popup.popup .popup-content .close-popup {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
#modal-popup.popup .popup-content .close-popup i {
  font-size: 1.5rem;
}
#modal-popup.popup .popup-content .popup-article {
  margin-bottom: 1rem;
}
#modal-popup.popup .popup-content .popup-article img {
  margin-bottom: 1.5rem;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#modal-popup.popup .popup-content .popup-article p {
  margin-bottom: 0;
}

.kboard-default-poweredby {
  display: none !important;
}

#kboard-default-list .kboard-list-header .kboard-sort select {
  background: inherit;
  color: inherit;
}
#kboard-default-list .kboard-list {
  background-color: inherit !important;
}
#kboard-default-list .kboard-list table a {
  color: var(--darkColor) !important;
}
#kboard-default-list .kboard-list table thead * {
  color: var(--greyColorDark) !important;
}
#kboard-default-list .kboard-list tr:hover {
  background-color: var(--whiteColor) !important;
}
#kboard-default-list .kboard-list tr td {
  color: var(--darkColor);
}
#kboard-default-list .kboard-list table a {
  color: var(--darkColor);
}
#kboard-default-list .kboard-search select,
#kboard-default-list .kboard-search input {
  background-color: var(--whiteColor) !important;
  color: var(--blackColor) !important;
}
#kboard-default-list .kboard-search button {
  background-color: var(--greyColor) !important;
  color: var(--greyColorDark) !important;
}
#kboard-default-list .kboard-control a {
  background-color: var(--greyColor) !important;
  color: var(--greyColorDark) !important;
}

#kboard-default-document .kboard-document-wrap {
  background-color: var(--lightColor) !important;
  border: 1px solid var(--rgbaBlackSlight1);
}
#kboard-default-document .kboard-document-wrap .kboard-title h1 {
  color: var(--darkColor);
}
#kboard-default-document .kboard-document-wrap .kboard-detail {
  background-color: var(--whiteColor);
}
#kboard-default-document .kboard-document-wrap .kboard-detail .detail-attr .detail-name,
#kboard-default-document .kboard-document-wrap .kboard-detail .detail-attr .detail-value {
  color: var(--blackColor);
}

#kboard-default-editor .kboard-content {
  background-color: var(--lightColor) !important;
  color: var(--darkColor) !important;
}
#kboard-default-editor .kboard-attr-row.kboard-attr-title, #kboard-default-editor .kboard-attr-row.kboard-attr-option, #kboard-default-editor .kboard-attr-row.kboard-attr-content {
  background-color: var(--lightColor) !important;
  color: var(--darkColor) !important;
}
#kboard-default-editor .kboard-attr-row.kboard-attr-content textarea {
  color: var(--blackColor);
}
#kboard-default-editor .kboard-attr-row.kboard-attr-title .field-name, #kboard-default-editor .kboard-attr-row.kboard-attr-option .field-name {
  color: var(--greyColorDark) !important;
}

#comments .comments {
  border: 1px dashed var(--greyColor);
  border-radius: 1.5rem;
}
#comments .comments .comment-section {
  padding: 3rem 2rem;
}
#comments .comments .media {
  margin-bottom: 3rem;
}
#comments .comments .media a {
  color: inherit;
}
#comments .comments .media img {
  border-radius: 50%;
  margin-right: 1rem;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
}
#comments .comments .media .avatar.photo {
  float: left;
  margin-bottom: 1rem;
}
#comments .comments .media-body .edit-comment-button {
  margin-left: 0.5rem;
  background-color: inherit;
  border: 1px solid var(--greyColor);
  font-size: 0.85rem;
  border-radius: 0;
  padding: 0.25rem 0.5rem;
}
#comments .comments .media-footer {
  display: flex;
}
#comments .comments .media .form-submit {
  margin-bottom: 3rem;
}
#comments .comments .media .form-submit input {
  border-color: var(greyColorDark);
  color: var(--darkColor);
}
#comments .comments .pingback {
  list-style-type: none;
  margin-bottom: 1.5rem;
}
#comments .comments .pingback-title {
  margin-bottom: 1.5rem;
}
#comments .comments .pingback-title svg {
  fill: #444;
}
#comments .comments .pingback .comment-author .fn {
  font-size: 1.15rem;
  margin-right: 0.75rem;
}
#comments .comments .pingback .comment-meta {
  margin-bottom: 0.75rem;
}
#comments .comments .pingback .reply {
  text-align: right;
}
#comments .comments .comment-edit-link {
  color: var(--whiteColor) !important;
}
#comments .comments #commentform a {
  color: inherit;
  border-bottom: 2px dashed #d0d0d0;
}
#comments .comments .comment-form-cookies-consent {
  margin-top: 1rem;
}
#comments .comments textarea {
  background-color: var(--lightColor);
}
#comments .comments textarea::-moz-placeholder {
  color: var(--greyColorDark);
}
#comments .comments textarea::placeholder {
  color: var(--greyColorDark);
}

#scrolltoTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--greyColorDark);
  padding: 15px;
  border-radius: 10px;
  color: var(--whiteColor);
  cursor: pointer;
  text-decoration: none;
}
#scrolltoTop:hover {
  background-color: var(--darkColor);
}

#navTop .nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
}
#navTop .nav-top_left {
  height: 2rem;
}
#navTop .nav-top_left a {
  font-size: 0.85rem;
}
#navTop .nav-top_center {
  height: 3rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navTop .nav-top_center img {
  height: 2.5rem;
}
#navTop .nav-top_right {
  height: 2rem;
  display: flex;
}
#navTop .nav-top_right a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navTop .nav-top_right a:hover i {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
  border: none;
}
#navTop .nav-top_right i {
  height: 2rem;
  width: 2rem;
  border: 1px solid var(--greyColorDark);
  border-radius: 12px;
  color: var(--greyColorDark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in;
}

@media screen and (max-width: 767px) {
  #navTop .nav-top_left {
    display: none;
  }
  #navTop .nav-top_center {
    justify-content: start;
  }
}
#navPrimary #navbarPrimaryContent {
  background-color: var(--whiteColor);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
}
#navPrimary #navbarPrimaryContent .navbar-nav {
  align-items: center;
}
#navPrimary #navbarPrimaryContent .navbar-nav .menu-item .nav-link {
  color: var(--blackColor);
}
#navPrimary #navbarPrimaryContent .navbar-nav .dropdown-menu.show {
  background-color: var(--lightColor);
  border-color: var(--rgbaBlackSlight2);
}
#navPrimary #navbarPrimaryContent .navbar-nav .dropdown-menu.show .dropdown-item {
  color: var(--darkColor);
  font-size: 0.9rem;
}
#navPrimary #navbarPrimaryContent .navbar-nav .dropdown-menu.show .dropdown-item:hover {
  background-color: var(--greyColor);
  color: var(--accentColor);
}
#navPrimary #navbarPrimaryContent .navbar-nav .dropdown-menu.show .dropdown-item.active {
  background-color: var(--greyColorDark);
  color: var(--whiteColor);
}

#mobileMenuModal .modal-content {
  background-color: var(--lightColor);
  color: var(--greyColorDark);
}
#mobileMenuModal .modal-header {
  justify-content: space-between;
}
#mobileMenuModal .modal-header .close {
  cursor: pointer;
}
#mobileMenuModal .modal-header .close i {
  font-size: 1.5rem;
}
#mobileMenuModal .modal-body ul.menu {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#mobileMenuModal .modal-body ul.menu .menu-item {
  margin-bottom: 0.25rem;
}
#mobileMenuModal .modal-body ul.menu .menu-item:not(.menu-item-logout) a {
  color: var(--darkColor);
  padding-left: 4px;
  border-left: 4px solid var(--darkColor);
}
#mobileMenuModal .modal-body ul.menu .menu-item.child-menu a {
  padding: 0;
  border: none;
}
#mobileMenuModal .modal-body ul.menu .menu-item-has-children {
  margin-bottom: 1rem;
}
#mobileMenuModal .modal-body ul.menu .menu-item-has-children > a {
  font-weight: 900;
  font-size: 1.05rem;
}
#mobileMenuModal .modal-body ul.menu .menu-item-has-children .sub-menu {
  list-style-type: disc;
}

@media (min-width: 576px) {
  #mobileMenuModal .modal-dialog.modal-wide {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
#footer #nav-footer {
  display: flex;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
#footer hr {
  border-top: 2px dashed var(--greyColorDark);
}
#footer .company-informations .footer-logo {
  width: 12.5rem;
}
#footer .company-informations .branch-info {
  border-left: 4px solid var(--darkColor);
  padding-left: 4px;
}
#footer .copyright {
  color: var(--greyColorDark);
}

@media screen and (max-width: 575px) {
  #footer #nav-footer {
    justify-content: center;
  }
}
#single-post .title-info {
  display: grid;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  grid-template-columns: minmax(5rem, auto) 1fr;
  grid-template-areas: "time title" "time meta";
}
#single-post .title-info .article-time {
  grid-area: time;
  background-color: var(--accentVariantColor);
  border: 1px solid var(--accentVariantColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  width: 6rem;
  height: 6rem;
  letter-spacing: -3px;
}
#single-post .title-info .article-time span {
  display: block;
  padding: 0.25rem;
  font-family: "GyeonggiTitleM", sans-serif;
}
#single-post .title-info .article-time span.year {
  color: var(--lightColor);
  font-size: 1.25rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#single-post .title-info .article-time span.date {
  background-color: var(--greyColor);
  border-top: 1px solid var(--accentVariantColor);
  color: var(--accentVariantColor);
  margin-bottom: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  font-size: 2rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  width: 100%;
}
#single-post .title-info .article-title {
  grid-area: title;
  margin-bottom: 0;
}
#single-post .title-info .article-meta {
  grid-area: meta;
}
#single-post .post-content {
  margin-top: 4rem;
}
#single-post .post-content .shorts-content .content-video,
#single-post .post-content .shorts-content .content-text {
  margin-bottom: 1.5rem;
}
#single-post .post-content .shorts-content .content-video iframe, #single-post .post-content .shorts-content .content-video video {
  border-radius: 12px;
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
}
#single-post .post-content .card-link {
  display: inline-block;
  border-radius: 6px;
  padding: 0.5rem;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
}
#single-post .post-content .card-link a {
  font-weight: 700;
}

#single-post.event .article-time {
  color: var(--lightColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  width: 6rem;
  height: 6rem;
  letter-spacing: -3px;
}
#single-post.event .article-time span {
  display: block;
  padding: 0.25rem;
  width: 100%;
  text-align: center;
}
#single-post.event .article-time span.year {
  color: var(--lightColor);
  font-size: 1.2rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#single-post.event .article-time span.date {
  background-color: var(--greyColor);
  margin-bottom: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  font-size: 2rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-top: 1px solid var(--greyColor);
}
#single-post.event .expiration-alert {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#single-post.event .expiration-alert.expiration-enough {
  border: 2px solid var(--logoColor);
  color: var(--logoColor);
}
#single-post.event .expiration-alert.expiration-hurry {
  border: 2px solid var(--redColor);
  color: var(--redColor);
}
#single-post.event .expiration-alert.expiration-over {
  border: 2px solid var(--greyColorDark);
  color: var(--greyColorDark);
}
#single-post.event .expiration-alert p {
  margin-bottom: 0;
}
#single-post.event.current-event .article-time {
  background-color: var(--redColor);
  border: 1px solid var(--redColor);
}
#single-post.event.current-event .article-time span.date {
  border-top: 1px solid var(--redColor);
  color: var(--redColor);
}
#single-post.event.past-event .article-time {
  background-color: var(--greyColorDark);
  border: 1px solid var(--greyColorDark);
}
#single-post.event.past-event .article-time span.date {
  color: var(--greyColorDark);
}

#single-review .article-figure {
  display: flex;
  justify-content: center;
}
#single-review .article-figure img {
  border: 2px dashed var(--greyColor);
  padding: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}

#author-box {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
#author-box .author-profile {
  padding: 1.5rem;
  border: 2px dashed var(--greyColor);
  border-radius: 24px;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#author-box .author-profile_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#author-box .author-profile_top .author-info {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#author-box .author-profile_top .author-info .author-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
#author-box .author-profile_top .chat {
  margin-bottom: 0;
}
#author-box .author-profile_top .chat a {
  color: var(--greyColorDark);
  text-decoration: none;
}
#author-box .author-profile_top .chat a i {
  font-size: 1.75rem;
}
#author-box .author-profile_bottom .author-bio {
  margin-bottom: 0;
}

#relatedPost .section-title {
  font-size: 1.25rem;
}
#relatedPost .related-category {
  border-left: 0.25rem dotted var(--greyColor);
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}
#relatedPost .cat-title {
  font-size: 1.1rem;
}
#relatedPost .cat-title .more {
  float: right;
  font-weight: 300;
}
#relatedPost .cat-title .more a {
  color: inherit;
  text-decoration: none;
}
#relatedPost .article-column {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#relatedPost .article-card {
  height: 100%;
  border: 1px solid var(--rgbaBlackSlight1);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "img title" "img text";
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
#relatedPost .article-card .article-img {
  grid-area: img;
}
#relatedPost .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#relatedPost .article-card .article-title {
  grid-area: title;
  font-weight: bold;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}
#relatedPost .article-card .article-text {
  grid-area: text;
  font-size: 0.9rem;
}
#relatedPost .article-card .article-text .article-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#relatedPost .article-card .article-time {
  width: 5.5rem;
  height: 5.5rem;
}
#relatedPost .article-card.no-article-img {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "text";
}
#relatedPost .article-card.no-article-img .article-img {
  display: none;
}
#relatedPost .article-card.no-article-img .article-title {
  grid-area: title;
  padding: 0.5rem;
}
#relatedPost .article-card.no-article-img .article-text {
  grid-area: text;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#relatedPost .article-card:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border: 1px solid inherit;
}
#relatedPost .article-card img {
  border-radius: 4px;
}

#frontHero #frontHeroCarousel .carousel-item {
  position: relative;
  height: 36rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}
#frontHero #frontHeroCarousel .carousel-overaly {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--rgbaBlackMedium);
  border-radius: 24px;
}
#frontHero #frontHeroCarousel .carousel-overaly .carousel-caption {
  top: 1.25rem;
  left: 10%;
  right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--lightColor);
}
#frontHero #frontHeroCarousel .carousel-overaly .carousel-caption .caption-text {
  word-break: keep-all;
}
#frontHero #frontHeroCarousel .carousel-overaly .carousel-caption .btn-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.75rem;
}

#frontInfo .widgets .col-md-4 {
  margin-bottom: 1rem;
}
#frontInfo .widgets .frontInfo-widget {
  border: 1px dashed var(--greyColorDark);
  border-radius: 12px;
  padding: 0.75rem;
  height: 100%;
  margin-bottom: 1rem;
}
#frontInfo .widgets .frontInfo-widget .widget:not(.widget_text) i {
  display: none;
}
#frontInfo .widgets .frontInfo-widget .widget-title {
  margin-bottom: 1.5rem;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}
#frontInfo .sns {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#frontInfo .sns .col {
  text-align: center;
}
#frontInfo .sns img {
  height: 100%;
  border-radius: calc(24px + 0.75rem);
  transition: all 0.3s ease-in-out;
}
#frontInfo .sns img:hover {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
}

@media screen and (max-width: 767px) {
  #frontInfo .sns img {
    border-radius: 24px;
  }
}
#frontShorts {
  border-top: 1px dashed var(--greyColor);
}
#frontShorts .shorts .ratio iframe, #frontShorts .shorts .ratio video {
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
  transition: all 0.3s ease-in-out;
}
#frontShorts .shorts .ratio iframe:hover, #frontShorts .shorts .ratio video:hover {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
}

#frontPage {
  border-top: 1px dashed var(--greyColor);
  border-bottom: 1px dashed var(--greyColor);
}
#frontPage .front-page .clinic {
  margin-bottom: 1.5rem;
}
#frontPage .front-page article {
  border: 1px solid var(--greyColor);
  border-radius: 12px;
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
}
#frontPage .front-page article:hover {
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
  border-color: var(--lightColor);
}
#frontPage .front-page article img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#frontPage .front-page article p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
#frontPage .front-page article p a {
  color: inherit;
  text-decoration: none;
}

#frontPost {
  border-bottom: 1px dashed var(--greyColor);
}
#frontPost .nav-pills {
  padding-bottom: 0.75rem;
  justify-content: center;
}
#frontPost .nav-pills .nav-item {
  margin-right: 0.5rem;
  padding: 0.25rem;
}
#frontPost .nav-pills .nav-item .nav-link {
  color: inherit;
  border-radius: 12px;
  border: 1px solid var(--lightColor);
  transition: all 0.3s ease-in-out;
}
#frontPost .nav-pills .nav-item .nav-link:hover {
  border: 1px solid var(--greyColor);
}
#frontPost .nav-pills .nav-item .nav-link.active {
  border-radius: 12px;
  background-color: var(--lightColor);
  border: 1px solid var(--greyColor);
  color: var(--darkColor);
  transition: all 0.3s ease-in-out;
}
#frontPost .nav-pills .nav-item .nav-link.active:hover {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
  color: var(--lightColor);
  box-shadow: 0 1rem 2.5rem -0.8rem var(--rgbaBlackMedium), 0 0.25rem 1.5rem var(--rgbaBlackSlight1), 0 0.5rem 0.75rem -0.3rem var(--rgbaBlackLight);
}
#frontPost .tab-content {
  padding: 1rem 0;
}
#frontPost .tab-content .articles .article-card {
  height: 100%;
  border: 1px solid var(--rgbaBlackSlight1);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "img title" "img text";
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
#frontPost .tab-content .articles .article-card .article-img {
  grid-area: img;
}
#frontPost .tab-content .articles .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#frontPost .tab-content .articles .article-card .article-title {
  grid-area: title;
  font-weight: bold;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}
#frontPost .tab-content .articles .article-card .article-text {
  grid-area: text;
  font-size: 0.9rem;
}
#frontPost .tab-content .articles .article-card .article-text .article-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#frontPost .tab-content .articles .article-card .article-time {
  width: 5.5rem;
  height: 5.5rem;
}
#frontPost .tab-content .articles .article-card.no-article-img {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "text";
}
#frontPost .tab-content .articles .article-card.no-article-img .article-img {
  display: none;
}
#frontPost .tab-content .articles .article-card.no-article-img .article-title {
  grid-area: title;
  padding: 0.5rem;
}
#frontPost .tab-content .articles .article-card.no-article-img .article-text {
  grid-area: text;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#frontPost .tab-content .articles .article-card:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border: 1px solid inherit;
}
#frontPost .tab-content .articles .article-card img {
  border-radius: 4px;
}

#blogPage .article-column {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#blogPage .article-card {
  height: 100%;
  border: 1px solid var(--rgbaBlackSlight1);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "img title" "img text";
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
#blogPage .article-card .article-img {
  grid-area: img;
}
#blogPage .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#blogPage .article-card .article-title {
  grid-area: title;
  font-weight: bold;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}
#blogPage .article-card .article-text {
  grid-area: text;
  font-size: 0.9rem;
}
#blogPage .article-card .article-text .article-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#blogPage .article-card .article-time {
  width: 5.5rem;
  height: 5.5rem;
}
#blogPage .article-card.no-article-img {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "text";
}
#blogPage .article-card.no-article-img .article-img {
  display: none;
}
#blogPage .article-card.no-article-img .article-title {
  grid-area: title;
  padding: 0.5rem;
}
#blogPage .article-card.no-article-img .article-text {
  grid-area: text;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#blogPage .article-card:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border: 1px solid inherit;
}
#blogPage .article-card img {
  border-radius: 4px;
}

#archivePage .article-column {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#archivePage .article-card {
  height: 100%;
  border: 1px solid var(--rgbaBlackSlight1);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "img title" "img text";
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
#archivePage .article-card .article-img {
  grid-area: img;
}
#archivePage .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#archivePage .article-card .article-title {
  grid-area: title;
  font-weight: bold;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}
#archivePage .article-card .article-text {
  grid-area: text;
  font-size: 0.9rem;
}
#archivePage .article-card .article-text .article-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#archivePage .article-card .article-time {
  width: 5.5rem;
  height: 5.5rem;
}
#archivePage .article-card.no-article-img {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "text";
}
#archivePage .article-card.no-article-img .article-img {
  display: none;
}
#archivePage .article-card.no-article-img .article-title {
  grid-area: title;
  padding: 0.5rem;
}
#archivePage .article-card.no-article-img .article-text {
  grid-area: text;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#archivePage .article-card:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border: 1px solid inherit;
}
#archivePage .article-card img {
  border-radius: 4px;
}

/* 404 Error */
.error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  border-bottom: 1px solid var(--greyColor);
}

#event-page .column-title {
  padding-left: 4px;
}
#event-page hr.my-5 {
  border-top: 1px dashed var(--greyColorDark);
}
#event-page .current-events .column-title {
  border-left: 6px dotted var(--redColor);
}
#event-page .current-events .article-time {
  background-color: var(--redColor);
  border: 1px solid var(--redColor);
  letter-spacing: -3px;
}
#event-page .current-events .article-time .date {
  color: var(--redColor);
}
#event-page .past-events .column-title {
  border-left: 6px dotted var(--greyColorDark);
}
#event-page .past-events .article-figure img {
  filter: grayscale(70%);
}
#event-page .past-events .article-time {
  background-color: var(--greyColorDark);
  border: 1px solid var(--greyColorDark);
  letter-spacing: -3px;
}
#event-page .past-events .article-time .date {
  color: var(--greyColorDark);
}
#event-page .article-column {
  border: 1px solid var(--greyColor);
  border-radius: 12px;
  min-height: 28rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}
#event-page .article-column:hover {
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  border-color: var(--lightColor);
}
#event-page .article-column .article-figure {
  margin-bottom: 0;
  padding: 0.5rem;
}
#event-page .article-column .article-figure img {
  border-radius: 12px;
}
#event-page .article-column .article-card {
  border: 1px solid var(--rgbaBlackSlight1);
  padding: 0.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(5rem, auto) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "time title" "text text";
  border: none !important;
}
#event-page .article-column .article-card .article-time {
  grid-area: time;
  color: var(--lightColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 16px 24px 2px var(--rgbaBlackSlight2), 0 6px 30px 5px var(--rgbaBlackSlight1), 0 8px 10px -5px var(--rgbaBlackLight);
  width: 5.5rem;
  height: 5.5rem;
}
#event-page .article-column .article-card .article-time span {
  display: block;
  padding: 0.25rem;
  width: 100%;
  text-align: center;
  font-family: "GyeonggiTitleM", sans-serif;
}
#event-page .article-column .article-card .article-time span.year {
  color: var(--lightColor);
  font-size: 1.2rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#event-page .article-column .article-card .article-time span.date {
  background-color: var(--greyColor);
  margin-bottom: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  font-size: 1.8rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
#event-page .article-column .article-card .article-title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
}
#event-page .article-column .article-card .article-text {
  grid-area: text;
}
#event-page .article-column .article-card .article-meta {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#review-page .main-content {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem;
}
#review-page .main-content aside {
  border: 2px dashed var(--greyColor);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 1px 2px 0 var(--rgbaBlackSlight2), 0 1px 4px 0 var(--rgbaBlackSlight1);
}
#review-page .main-content aside .category-title,
#review-page .main-content aside .search-title {
  font-weight: bolder;
  font-size: 1.1rem;
}
#review-page .main-content aside .category .badge-category {
  background-color: var(--redColor);
}
#review-page .main-content .divider {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#review-page .main-content .divider::before, #review-page .main-content .divider::after {
  flex: 1;
  content: "";
  padding: 0.1rem;
  margin: 0.25rem;
  background-color: var(--greyColorDark);
}
#review-page .main-content article .article-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#review-page .main-content article .article-reviews .article-review .article-figure {
  border: 1px solid var(--greyColor);
  padding: 0.25rem;
}
#review-page .main-content article .article-reviews .article-review .article-figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}