﻿@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Hand:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #111;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #111;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

i, em, address {
  font-style: normal;
}

textarea {
  background-color: #f3f3f3;
  border-radius: 8px;
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
  padding: 16px 12px;
  line-height: 140%;
  resize: none;
}
textarea:focus {
  background: linear-gradient(90deg, rgba(224, 195, 252, 0.7) 0%, rgba(142, 197, 252, 0.7) 100%);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel] {
  background-color: #f3f3f3;
  border-radius: 8px;
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  max-width: 100%;
  height: 40px;
  padding: 0 12px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus {
  background: linear-gradient(90deg, rgba(224, 195, 252, 0.7) 0%, rgba(142, 197, 252, 0.7) 100%);
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
}

a {
  text-decoration: none;
}

iframe {
  border: 0;
}

.d-none {
  display: none !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
/*---------------------------------------
    light/dark switch Styles           
-----------------------------------------*/
/* --------------------------------------

=========================================
    General
=========================================
-----------------------------------------*/
/*
  ##Device = Most of the screen
  ##Screen = 1200px and under.
*/
/* 
  ##Device = Most of the tablets
  ##Screen = 991px and under.
*/
/* 
  ##Device = Most of the tablets
  ##Screen = 767px and under.
*/
/* 
  ##Device = Most of the smartphones (portrait)
  ##Screen = 575px and under.
*/
/* Search Page */
/*=========================================
    missed
=========================================
-----------------------------------------*/
/*---------------------------------------
=========================================
    widget Titlle
=========================================
-----------------------------------------*/
/*---------------------------------------
=========================================
    promo widget
=========================================
-----------------------------------------*/
/*---------------------------------------
=========================================
    content
=========================================
-----------------------------------------*/
/*---------------------------------------
=========================================
    Image Ads
=========================================
-----------------------------------------*/
/*---------------------------------------
    blogs       
-----------------------------------------*/
/*----- List small-post-widget -----*/
.small-post-list-widget .col-grid-2 {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.small-post-list-widget .small-post .img-small-post {
  width: 34%;
  height: 150px;
}

/*----- Recent small-post -----*/
.bs-recent-blog-post {
  margin-bottom: 30px;
}

.bs-recent-blog-post .small-post {
  margin-bottom: 10px;
}

.bs-recent-blog-post .small-post .img-small-post {
  width: 60px;
  height: 60px;
}

.bs-recent-blog-post .small-post .img-small-post.full {
  height: auto;
}

.bs-recent-blog-post .small-post .img-small-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-recent-blog-post .small-post .img-small-post.full img {
  max-width: 100%;
  height: auto;
}

.bs-recent-blog-post .small-post .img-small-post.right {
  margin-left: 15px;
  margin-right: 0;
}

.bs-recent-blog-post .small-post .title {
  margin-bottom: 0;
}

/*----- List small-post -----*/
.small-post {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
}

.small-post .img-small-post {
  width: 20%;
  height: 85px;
  margin-left: 25px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  transition: all 0.3s ease-out;
}

.small-post-content {
  -ms-flex: 1;
  flex: 1;
}

.small-post .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.bs-widget .small-post-content .title {
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

/*----- Featured-post -----*/
.featured-widget-content .small-post {
  padding: 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.featured-widget-content .small-post:nth-last-child(1) {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.featured-widget-content .small-post .img-small-post {
  width: 25%;
}

/*----- blog-post slider -----*/
.bs-slide {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.bs-slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bs-slide .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: auto;
  padding: 30px 15px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.bs-slide .inner::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.8;
}

.bs-slide.three {
  align-items: flex-end;
}

.bs-slide.three .inner {
  width: 100%;
}

.bs-slide .inner .title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.bs-slide.colmn .inner .title {
  font-size: 24px;
  font-weight: 700;
}

.bs-slide.two.colmn .inner {
  width: 90%;
}

/*----- blog-post category -----*/
/*----- blog-post meta -----*/
/*----- blog-post post-share-icons -----*/
/*----- blog-post single -----*/
/*----- comments -----*/
/* --------------------------------------
=========================================
    Page Title
=========================================
-----------------------------------------*/
/* --------------------------------------
=========================================
    bs-sidebar
=========================================
-----------------------------------------*/
/*--bs-blog-post end--*/
/*--bs-widget author --*/
/*--bs-widget author end--*/
/*--calendar_wrap--*/
/*----left-menu-widget----*/
/* Social Icons */
/* Recent Post */
/* --------------------------------------
=========================================
    bs-error page
=========================================
-----------------------------------------*/
.bs-error-404 h1 {
  font-size: 100px;
  line-height: 80px;
}

.bs-error-404 h1 i {
  padding: 5px;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.17);
}

.bs-error-404 h4 {
  line-height: 40px;
}

.bs-error-404 p {
  line-height: 30px;
}

/* --------------------------------------
=========================================
    8.bs-scroll
=========================================
-----------------------------------------*/
.container.mobi-menu {
  display: none;
}

/*----woocommerce----*/
/* woocommerce v2.3.5 */
*:focus {
  outline: 0;
}

.woocommerce h2 {
  font-size: 22px;
}

.woocommerce h3 {
  font-size: 20px;
}

/*----product----*/
.woocommerce .products span.onsale, .woocommerce span.onsale {
  border-radius: 0;
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 25px;
  margin: 4px !important;
  min-height: 10px;
  padding: 0 12px;
  z-index: 999;
}

.woocommerce span.onsale {
  margin: 10px !important;
}

.woocommerce ul.products li.product {
  text-align: center;
  padding-bottom: 20px;
  transition: all 0.4s ease 0s;
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaea;
  background: white;
}

.woocommerce ul.products li.product a img:hover {
  opacity: 0.6;
}

.woocommerce-page .woocommerce-ordering select {
  padding: 12px 15px 12px 10px;
  color: #A0A0A0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.woocommerce-page .products .product > a:first-child {
  position: relative;
  text-align: center;
  display: block;
}

.woocommerce-page .products a.button {
  display: inline-block;
  text-align: center;
  border-radius: 0;
  margin: 10px;
  font-size: 15px;
  border: none;
  font-weight: bold;
  margin: 0 auto !important;
}

.woocommerce-page .products a.button:hover {
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.5);
}

.woocommerce-page .products h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 12px;
  line-height: 25px;
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce-page .products .star-rating {
  position: relative;
  margin: 0 auto;
}

.woocommerce-page .products a .price {
  line-height: 20px;
  width: 100%;
  float: left;
  height: auto;
  min-height: 40px;
  text-align: center;
  padding: 10px 0;
}

.woocommerce-page .products a .price del {
  display: inline-block !important;
  line-height: 20px;
}

.woocommerce-page .products a .price ins {
  display: inline-block;
  font-weight: bold;
  background: none;
  line-height: 20px;
  margin-left: 10px;
}

.woocommerce-page .products .added_to_cart {
  display: inline-block;
  text-align: center;
  padding: 10px 20px 10px 20px;
  border-radius: 0;
  border: none;
  font-size: 12px;
  margin: 0;
}

.woocommerce-page .woocommerce-result-count {
  float: left;
  font-size: 14px;
  line-height: 46px;
  margin-top: 20px;
}

.woocommerce-page .woocommerce-ordering {
  float: right;
  margin-top: 20px;
}

.woocommerce-page .product-type-simple {
  position: relative;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: inherit;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0.5rem;
}

footer .blogus-widget .woocommerce ul.cart_list li img, footer .blogus-widget .woocommerce ul.product_list_widget li img {
  margin-top: 7px;
}

/*woocommerce-tabs*/
.tabs.wc-tabs {
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-width: 0 0 1px 0;
  border-style: solid;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  background: transparent;
  border: none;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 22px;
  line-height: 25px;
}

.related.products {
  text-align: center;
}

.related.products h2 {
  font-size: 26px;
  line-height: 40px;
}

/*woocommerce-form*/
.select2-container .select2-choice {
  height: 40px;
  padding: 6px 12px;
}

/*woocommerce-cart*/
.woocommerce table.shop_table {
  border-radius: 0;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
  float: none;
  line-height: 30px;
  padding: 5px 35px;
  border-radius: 0;
}

.woocommerce .cart .button:hover, .woocommerce .cart input.button:hover {
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.5);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  line-height: 30px;
  padding: 5px 35px;
  border-radius: 0;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  border-radius: 0;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  min-width: 110px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.16);
}

/*woocommerce-messages*/
.woocommerce-page .woocommerce-message {
  margin: 0px 0 40px;
  border-radius: 3px;
  list-style: none;
}

.woocommerce-page .woocommerce-message a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-error {
  list-style: none;
  padding: 10px 0 10px 50px;
  margin: 0px 0 40px;
  border-radius: 3px;
  border: none;
  float: left;
  width: 100%;
}

.woocommerce-page .woocommerce-error a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-info {
  list-style: none;
  padding: 0;
  margin: 0px 0 40px;
  border-radius: 3px;
  border: none;
  float: left;
  width: 100%;
  margin-top: 25px !important;
}

.woocommerce-page .woocommerce-info a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-info {
  float: left;
  text-align: left;
  padding: 15px 0 15px 50px;
}

.woocommerce-page .woocommerce .woocommerce-info {
  border-radius: 3px;
  border: none;
  padding: 15px 0 15px 50px;
  margin-bottom: 40px;
}

.woocommerce-page .woocommerce .woocommerce-info a {
  opacity: 0.9;
}

/*woocommerce-pagination*/
.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  float: left;
  line-height: 1.42857;
  margin: 6px;
  padding: 6px 12px;
  border-radius: 0;
}

/*woocommerce-price-filter*/
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #1a2128;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.wc-block-featured-category .wc-block-featured-category__title {
  display: unset;
  border: unset;
}

/* WordPress Core*/
.site-description {
  margin-bottom: 0;
}

/* == WordPress WYSIWYG Editor Styles == */
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone, img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-caption, .gallery-caption {
  max-width: 100%;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* Table */
table, th, td {
  border: 1px solid #e9e9e9;
}

/*Contact Form 7*/
/* WordPress Gallery 
------------------------------------------ */
.gallery {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.gallery:after {
  display: table;
  content: "";
  clear: both;
}

.gallery-item {
  margin: 0;
  float: left;
  padding: 0.5em;
}

.gallery-item img {
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  float: none;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

/* Text meant only for screen readers. */
/*--Widget Block Css ----*/
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: none;
}

.bs-widget .wp-block-search__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 5px 0;
  position: relative;
  letter-spacing: 1.1px;
  border-style: solid;
  border-width: 0 0 2px 0;
  line-height: 1.2;
}

.bs-footer-widget-area .widget_block .wp-block-search__label {
  color: #fff;
}

.bs_model label {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.bs_model form.search-form {
  display: flex;
}

form.search-form {
  display: flex;
}

form.search-form label {
  width: 100%;
}

form.search-form .search-submit {
  margin-left: -1px;
  padding: 10px 15px;
}

.wp-block-search__inside-wrapper {
  display: flex;
}

.bs-widget .wp-block-archives li, .bs-widget .wp-block-categories li {
  display: flex;
  justify-content: space-between;
}

.bs-widget .wp-block-archives li:has([aria-current=page]), .bs-widget .wp-block-categories li:has([aria-current=page]) {
  font-weight: 500;
}

/* --------------------------------------
=========================================
    Responsive part
=========================================
-----------------------------------------*/
/*
Theme Name: Blogza
Theme URI: https://themeansar.com/free-themes/blogza-free-wordpress-theme/
Author: Themeansar
Author URI: https://themeansar.com
Description: Blogza is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogza is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogza is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus/blogza/ and documentation at https://docs.themeansar.com/docs/blogus/
Version: 0.7
Requires PHP: 7.4
Requires at least: 5.4
Tested up to: 6.7
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Template: blogus
Text Domain: blogza
Tags: blog, portfolio, news, grid-Layout, one-column, two-columns, three-columns, flexible-header, left-sidebar, right-sidebar, custom-background, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, post-formats, rtl-language-support, theme-options, sticky-post, threaded-comments, translation-ready, block-styles, wide-blocks

Blogza WordPress Theme is child theme of Blogus, Copyright 2023 Themeansar
Blogza is distributed under the terms of the GNU General Public License v3

Blogza is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.site-title {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.navbar-wp .navbar-nav > li > a {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

footer .site-branding-text .site-title-footer a {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* -------bs-head three---- */
/* header Six */
/* list category */
/* .bs-blog-post{

} */
/* .bs-blog-post:hover{
    box-shadow: none;
} */
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* blogza bg image wrapper */
.blogza-background-wrapper .squares, .blogza-background-wrapper .circles, .blogza-background-wrapper .triangles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: none;
}

.squares .square, .circles .circle, .triangles .triangle {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.1;
  animation: animate 8s linear infinite;
  bottom: -100px;
}

.circles .circle {
  border-radius: 100px !important;
}

.triangles .triangle {
  width: 0;
  height: 0;
  border-bottom-width: 42px;
  border-bottom-style: solid;
  border-left-width: 25px;
  border-left-style: solid;
  border-right-width: 25px;
  border-right-style: solid;
  border-radius: 0 !important;
}

.squares .square:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles .circle:nth-child(1) {
  left: 10%;
  width: 22px;
  height: 20px;
  animation-delay: 0s;
}

.triangles .triangle:nth-child(1) {
  left: 45%;
  border-right-width: 10px;
  border-left-width: 10px;
  border-bottom-width: 22px;
  animation-delay: 0s;
}

.squares .square:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles .circle:nth-child(2) {
  left: 45%;
  width: 84px;
  height: 80px;
  animation-delay: 12s;
}

.triangles .triangle:nth-child(2) {
  left: 25%;
  border-right-width: 15px;
  border-left-width: 15px;
  border-bottom-width: 28px;
  animation-delay: 12s;
}

.squares .square:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles .circle:nth-child(3) {
  left: 90%;
  width: 53px;
  height: 50px;
  animation-delay: 4s;
}

.triangles .triangle:nth-child(3) {
  left: 80%;
  border-right-width: 15px;
  border-left-width: 15px;
  border-bottom-width: 28px;
  animation-delay: 4s;
}

.squares .square:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles .circle:nth-child(4) {
  left: 60%;
  width: 53px;
  height: 50px;
  animation-delay: 18s;
}

.triangles .triangle:nth-child(4) {
  left: 30%;
  border-right-width: 20px;
  border-left-width: 20px;
  border-bottom-width: 38px;
  animation-delay: 18s;
}

.squares .square:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles .circle:nth-child(5) {
  left: 90%;
  width: 43px;
  height: 40px;
  animation-delay: 1s;
}

.triangles .triangle:nth-child(5) {
  left: 70%;
  border-right-width: 25px;
  border-left-width: 25px;
  border-bottom-width: 42px;
  animation-delay: 1s;
}

.squares .square:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.squares .square:nth-child(7) {
  left: 35%;
  width: 100px;
  height: 100px;
  animation-delay: 7s;
}

.squares .square:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.squares .square:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.squares .square:nth-child(10) {
  left: 85%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@media screen and (max-width: 991px) {
  .bs-headthree .navbar-brand .custom-logo {
    width: 200px;
    height: auto;
  }
  .bs-headthree.six .navbar-wp .navbar-nav > li > a {
    padding: 13px 8px;
  }
  .navbar-nav {
    gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .bs-latest-heading span {
    display: none;
  }
  .bs-headthree .navbar-brand .custom-logo {
    width: 120px;
    height: auto;
  }
}
/* add */
.subscribe-btn {
  display: none;
}

.google-auto-placed {
  overflow: hidden;
  box-sizing: border-box;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagination .screen-reader-text {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 1px;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .nav-links span,
.pagination .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
}
.pagination .nav-links span.page-numbers i,
.pagination .nav-links a.page-numbers i {
  color: #777;
}
.pagination .nav-links span {
  background-color: #eee;
  font-weight: 500;
}

.wd-back {
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 60px 0 rgba(25, 90, 148, 0.15);
}
@media (min-width: 980px) {
  .wd-back {
    padding: 30px;
  }
}
.wd-back .bs-widget-title {
  padding-bottom: 14px;
}
.wd-back .bs-widget-title .title {
  color: #195A94;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
}
.wd-back .missed-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.wd-back .missed-area .bs-blog-post {
  overflow: hidden;
  position: relative;
  aspect-ratio: auto 1/1;
  background-size: cover;
  background-color: #fff;
  background-position: 50%;
  border-radius: 12px;
}
.wd-back .missed-area .bs-blog-post::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.wd-back .missed-area .bs-blog-post .link-div {
  display: flex;
  align-items: flex-end;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wd-back .missed-area .bs-blog-post .title {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.7) 120%);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.wd-back .missed-area .bs-blog-post .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: inherit;
  color: #fff;
}
@media (min-width: 580px) {
  .wd-back .missed-area {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .wd-back .missed-area {
    gap: 16px;
  }
  .wd-back .missed-area .bs-blog-post .title {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.wd-back .bs-blog-category {
  display: none;
}

.bs-single-related {
  margin-top: 40px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(25, 90, 148, 0.15);
}
.bs-single-related .bs-blog-category {
  display: none;
}
.bs-single-related .bs-widget-title {
  padding-bottom: 14px;
}
.bs-single-related .bs-widget-title .title {
  color: #195A94;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
}
.bs-single-related .related-post .row {
  display: grid;
  gap: 10px;
}
.bs-single-related .related-post .row .bs-blog-post {
  overflow: hidden;
  position: relative;
  aspect-ratio: 433/282;
  background-size: cover;
  border-radius: 12px;
}
.bs-single-related .related-post .row .bs-blog-post::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.bs-single-related .related-post .row .bs-blog-post .link-div {
  display: flex;
  align-items: flex-end;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bs-single-related .related-post .row .bs-blog-post .title {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.7) 120%);
  font-size: 16px;
  font-weight: 400;
}
.bs-single-related .related-post .row .bs-blog-post .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: inherit;
  height: 40px;
  color: #fff;
  line-height: 130%;
}
.bs-single-related .related-post .row .bs-blog-post .bs-blog-date {
  display: none;
}
@media (min-width: 580px) {
  .bs-single-related {
    padding: 30px;
  }
  .bs-single-related .related-post .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bs-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.bs-social a {
  font-size: 20px;
}

.bs-author {
  display: none;
}

.bs-info-author-block:has(.bs-author-pic) {
  display: none;
}

.post-share {
  display: none;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e9e9e9;
}
.post-share-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.post-share-icons a {
  font-size: 20px;
  opacity: 0.8;
}

.post-navigation {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}
.post-navigation .nav-links > div {
  background-color: #f3f3f3;
  border-radius: 4px;
}
.post-navigation .nav-links > div.nav-next a {
  text-align: right;
}
.post-navigation .nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 8px;
}
.post-navigation .nav-links a span {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
  color: #777;
}

body {
  padding: 20px 20px 60px;
  background: linear-gradient(90deg, rgba(224, 195, 252, 0.7) 0%, rgba(142, 197, 252, 0.7) 100%);
}
@media (min-width: 998px) {
  body {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px 40px;
  background: #fff;
  box-shadow: 0 4px 80px 0 rgba(25, 90, 148, 0.15);
  box-sizing: border-box;
  border-radius: 12px;
  transition: padding 0.25s ease-out;
}
@media (min-width: 780px) {
  .wrapper {
    padding: 10px 40px 60px;
  }
}

.container {
  margin: 0 auto;
}

.navbar-header {
  display: flex;
  align-items: center;
}

.bs-headthree {
  padding: 20px 0 0;
}
.bs-headthree__inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.bs-headthree .navbar {
  position: relative;
}
.bs-headthree .navbar-brand .custom-logo {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.bs-headthree .bs-menu-full {
  margin-left: auto;
}
.bs-headthree .bs-menu-full .subscribe-btn,
.bs-headthree .bs-menu-full .switch {
  display: none;
}
.bs-headthree .bs-menu-full .navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.site-branding-text .site-title {
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px) !important;
  font-letter-spacing: 2px;
  line-height: 130%;
}
.site-branding-text .site-title a {
  color: #195A94;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
}
.site-branding-text p.site-description {
  margin-top: 4px;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 300;
  color: #777;
  text-wrap: balance;
}

.bs-header-main__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
}
.bs-header-main__inner .bs-header-social {
  margin-left: auto;
}

.m-header {
  display: flex;
  gap: 10px;
  width: 100%;
}
.m-header .navbar-toggler,
.m-header .msearch {
  width: 30px;
  height: 30px;
}
.m-header .msearch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-header .right-nav {
  margin-left: auto;
}
@media (min-width: 980px) {
  .m-header {
    width: initial;
  }
  .m-header .navbar-toggler,
  .m-header .right-nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .desk-header {
    display: none;
  }
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.dropdown-menu {
  display: none;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

.navbar-wp .navbar-nav {
  justify-content: center;
}
.navbar-wp .navbar-nav li a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease-out;
  font-family: "Quicksand", sans-serif;
}
.navbar-wp .navbar-nav li:not(:first-child) a {
  border-top: 1px solid #e9e9e9;
}
@media (min-width: 980px) {
  .navbar-wp .navbar-nav li:not(:first-child) a {
    border-top: none;
  }
}
.navbar-wp .navbar-nav li.active a {
  background: none;
}
.navbar-wp .navbar-nav li.disabled a {
  background-color: transparent;
}
@media (max-width: 980px) {
  .navbar-wp .dropdown-menu {
    background-color: #f5f5f5;
  }
  .navbar-wp .dropdown-menu .dropdown-item {
    border-color: #ececec;
    color: #777;
    font-size: 14px;
  }
  .navbar-wp .dropdown-menu .dropdown-item::before {
    content: "-";
    margin-right: 4px;
  }
}
@media (min-width: 980px) {
  .navbar-wp .navbar-nav {
    flex-direction: row;
  }
  .navbar-wp .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .navbar-wp .dropdown-menu {
    overflow: hidden;
    position: absolute;
    border: 1px solid #525252;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 80px 0 rgba(25, 90, 148, 0.15);
  }
  .navbar-wp .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(224, 195, 252, 0.7) 0%, rgba(142, 197, 252, 0.7) 100%);
  }
}

.menu-link-description {
  display: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar-nav .menu-item {
  position: relative;
}
.navbar-nav .sub-arrow {
  display: none;
}
@media (min-width: 980px) {
  .navbar-nav {
    gap: 20px;
  }
}
.navbar-nav .menu-item-has-children .nav-link {
  position: relative;
}
.navbar-nav .menu-item-has-children .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-width: 0 0 1.5px 1.5px;
  border-style: solid;
  border-color: #777;
  box-sizing: border-box;
  transform: rotate(-45deg);
}
.navbar-nav .menu-item-has-children .nav-link .sub-arrow {
  display: none;
}
@media (min-width: 980px) {
  .navbar-nav .menu-item-has-children .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-nav .menu-item-has-children .nav-link::after {
    position: static;
    margin-top: -2px;
  }
}

.navbar-collapse:not(.show) {
  display: none;
}
@media (max-width: 980px) {
  .navbar-collapse {
    overflow: hidden;
    position: absolute;
    z-index: 10;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #525252;
    border-radius: 12px;
    box-shadow: 0 4px 80px 0 rgba(25, 90, 148, 0.15);
  }
}

.navbar-toggler.x {
  padding: 5px;
}
.navbar-toggler .icon-bar {
  background-color: #111;
}

.main-wrap {
  padding: 20px 0;
}
@media (min-width: 980px) {
  .main-wrap {
    padding: 40px 0;
  }
}

.page-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-wrap .bs-blog-post {
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 4px 80px 0 rgba(25, 90, 148, 0.15);
  border-radius: 12px;
}
.page-wrap aside {
  margin-top: 40px;
}
.page-wrap aside .widget_search {
  display: none;
}
.page-wrap aside .bs-sidebar {
  padding: 16px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #fff;
}
.page-wrap aside .bs-sidebar .wp-block-heading {
  color: #195A94;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  font-size: 18px;
}
.page-wrap aside .bs-sidebar .wp-block-latest-posts__list, .page-wrap aside .bs-sidebar .wp-block-archives-list, .page-wrap aside .bs-sidebar .wp-block-categories-list {
  margin-top: 14px;
  font-size: 14px;
}
.page-wrap aside .bs-sidebar .wp-block-latest-posts__list li:not(:first-child), .page-wrap aside .bs-sidebar .wp-block-archives-list li:not(:first-child), .page-wrap aside .bs-sidebar .wp-block-categories-list li:not(:first-child) {
  border-top: 1px solid #e9e9e9;
}
.page-wrap aside .bs-sidebar .wp-block-latest-posts__list a, .page-wrap aside .bs-sidebar .wp-block-archives-list a, .page-wrap aside .bs-sidebar .wp-block-categories-list a {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
  display: block;
  padding: 12px 0;
  color: #777;
  line-height: 130%;
}
.page-wrap aside .bs-sidebar .bs-widget {
  margin-top: 40px;
}
.page-wrap aside .bs-sidebar .widget_search + .bs-widget {
  margin-top: 0;
}
.page-wrap .bs-blog-thumb {
  display: none !important;
  max-width: 70%;
  margin: 0 auto;
}
.page-wrap .entry-footer {
  display: none;
}
@media (min-width: 980px) {
  .page-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-wrap .bs-blog-thumb {
    max-width: 250px;
  }
  .page-wrap .bs-breadcrumb-section {
    min-width: 100%;
  }
  .page-wrap .google-auto-placed {
    min-width: 100%;
  }
  .page-wrap > div {
    width: 75%;
  }
  .page-wrap .bs-blog-post {
    padding: 30px;
  }
  .page-wrap aside {
    width: calc(25% - 20px);
    margin-top: 0;
  }
  .page-wrap aside .bs-sidebar {
    position: sticky;
    top: 70px;
  }
  .page-wrap aside .bs-sticky {
    top: 50px !important;
  }
}

.bs-widget:has(.wp-block-latest-comments) {
  display: none;
}

.type-page {
  font-size: 16px;
  line-height: 150%;
}
.type-page .bs-card-box {
  padding: 0 !important;
}
.type-page__inner {
  margin-top: 40px;
  padding: 20px;
  background-color: #f3f3f3;
  border-radius: 12px;
}
.type-page__inner h2 {
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}
.type-page .edit-link {
  display: none;
}

.missed {
  margin-top: 40px;
}

.bs-breadcrumb-section {
  margin-bottom: 20px;
}
.bs-breadcrumb-section .breadcrumb {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.bs-breadcrumb-section .breadcrumb li.trail-item a span {
  font-size: 14px;
  color: #adadad;
}
.bs-breadcrumb-section .breadcrumb li.trail-item:not(:nth-last-child(2))::after {
  content: "|";
  display: inline-block;
  margin: 0 6px;
  color: #dedede;
  font-size: 11px;
}
.bs-breadcrumb-section .breadcrumb li.trail-item:last-child {
  display: none;
}

.page-entry-title .page-entry-title-box {
  padding: 20px 0 40px;
  text-align: center;
}
.page-entry-title .page-entry-title-box h1.entry-title {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  color: #195A94;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  text-wrap: balance;
  word-break: keep-all;
}
.page-entry-title .page-entry-title-box h1.entry-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background-color: #195A94;
  border-radius: 2px;
}
@media (min-width: 980px) {
  .page-entry-title .page-entry-title-box {
    padding: 60px 0;
  }
  .page-entry-title .page-entry-title-box h1.entry-title {
    padding: 0 60px;
  }
}

.search-results-count {
  margin-top: 40px;
  color: #a16dd1;
}

.bs_upscr {
  overflow: hidden;
  display: none;
  position: fixed;
  bottom: 2%;
  right: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  z-index: 9999;
  border-radius: 50%;
  border-width: 1.2px;
  border-style: solid;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.bs_upscr i.fa-angle-up {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 300;
  line-height: 40px;
}
.bs_upscr i.fa-angle-up::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-width: 1.2px 1.2px 0 0;
  border-style: solid;
  border-color: #111;
  box-sizing: border-box;
  transform: rotate(-45deg);
}

.footer {
  margin-top: 30px;
  border-top: 1px solid #e9e9e9;
}
.footer .site-branding-text {
  position: fixed;
  z-index: -1;
  bottom: 20px;
  left: 0;
  width: 100vw;
  text-align: center;
}
.footer .site-branding-text .site-title-footer a {
  font-weight: 300;
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
.footer .site-logo,
.footer .divide-line,
.footer .bs-footer-copyright {
  display: none;
}

.bs-masonry-columns {
  display: grid;
  gap: 60px 16px;
  margin-top: 20px;
  padding-bottom: 20px;
}
.bs-masonry-columns .bs-blog-post h4.title {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: inherit;
  margin-top: 12px;
  color: #195A94;
  font-size: 18px;
  font-weight: 600;
  text-wrap: balance;
  line-height: 130%;
  word-break: keep-all;
}
.bs-masonry-columns .bs-blog-post .post-excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: inherit;
  margin-top: 18px;
  color: #777;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta {
  margin-top: 16px;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta > span {
  font-size: 14px;
  color: #adadad;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta > span a {
  color: #adadad;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta > span:not(:first-child)::before {
  content: "|";
  margin: 0 6px;
  color: #ccc;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta > span.bs-author img {
  display: none !important;
}
.bs-masonry-columns .bs-blog-post .bs-blog-meta > span.bs-blog-date::before {
  display: none;
}
.bs-masonry-columns .bs-blog-post .edit-link,
.bs-masonry-columns .bs-blog-post .bs-author {
  display: none !important;
}
.bs-masonry-columns .bs-blog-post .small {
  position: relative;
  margin-top: 14px;
}
.bs-masonry-columns .bs-blog-post .google-auto-placed {
  width: 75% !important;
  margin-top: 20px;
}
.bs-masonry-columns .bs-blog-thumb figure {
  overflow: hidden;
  aspect-ratio: 433/282;
  border-radius: 12px;
  background-color: #e6e6e6;
}
.bs-masonry-columns .bs-blog-thumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.bs-masonry-columns .bs-blog-category {
  display: flex;
  gap: 3px;
}
.bs-masonry-columns .bs-blog-category .blogus-categories {
  padding: 2px 4px;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 4px;
  color: #111;
  font-size: 13px;
  line-height: 100%;
}
@media (min-width: 580px) {
  .bs-masonry-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  .bs-masonry-columns .bs-blog-post {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 60px 0 rgba(25, 90, 148, 0.15);
  }
}
@media (min-width: 980px) {
  .bs-masonry-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (min-width: 1240px) {
  .bs-masonry-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.comments-area {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 40px;
}
.comments-area .required {
  color: #a16dd1;
  font-size: 16px;
  font-weight: 600;
}
.comments-area .comment-reply-title {
  color: #195A94;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
}
.comments-area .logged-in-as,
.comments-area .comment-notes {
  margin-top: 12px;
  color: #777;
  font-size: 14px;
  line-height: 130%;
}
.comments-area .logged-in-as a, .comments-area .logged-in-as span,
.comments-area .comment-notes a,
.comments-area .comment-notes span {
  color: #777;
}
.comments-area .comment-form-comment, .comments-area .comment-form-author, .comments-area .comment-form-email {
  margin-top: 20px;
}
.comments-area .comment-form-comment label, .comments-area .comment-form-author label, .comments-area .comment-form-email label {
  display: block;
  padding-bottom: 8px;
  color: #195A94;
  font-size: 14px;
}
.comments-area .comment-form-author, .comments-area .comment-form-email {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.comments-area .comment-form-author label, .comments-area .comment-form-email label {
  flex-shrink: 0;
  width: 58px;
}
.comments-area .comment-form-author input, .comments-area .comment-form-email input {
  flex: 1;
  width: calc(100% - 58px);
}
.comments-area .comment-form-url {
  display: none;
}
.comments-area .comment-form-cookies-consent {
  display: flex;
  margin-top: 12px;
  gap: 6px;
}
.comments-area .comment-form-cookies-consent input {
  flex-shrink: 0;
}
.comments-area .comment-form-cookies-consent label {
  color: #777;
  font-size: 14px;
  line-height: 150%;
}
.comments-area textarea {
  height: 100px;
}
.comments-area .form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.comments-area .form-submit input[type=submit] {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #195A94;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
}
.comments-area .bs-heading-bor-bt {
  display: none;
}
.comments-area .comment-respond {
  padding: 20px 16px;
  box-shadow: 0 0 60px 0 rgba(25, 90, 148, 0.15);
  border-radius: 12px;
}
@media (min-width: 980px) {
  .comments-area .comment-respond {
    padding: 26px 30px;
  }
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.comment-list li {
  padding: 20px 16px 16px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  background-color: #fff;
  font-style: normal;
}
.comment-list .comment-author.vcard img {
  display: none;
}
.comment-list .comment-meta {
  display: flex;
  gap: 10px;
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 130%;
}
.comment-list .comment-meta > div a, .comment-list .comment-meta > div span, .comment-list .comment-meta > div b, .comment-list .comment-meta > div time {
  color: #777;
}
.comment-list .comment-meta > div.comment-metadata {
  display: flex;
  flex: 1;
}
.comment-list .comment-meta > div.comment-metadata time {
  color: #adadad;
}
.comment-list .comment-meta > div.comment-metadata .edit-link {
  margin-left: auto;
}
.comment-list .comment-meta > div.comment-metadata .edit-link .comment-edit-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.comment-list .comment-content {
  padding: 14px 0;
  font-size: 14px;
  line-height: 130%;
}
.comment-list .reply {
  display: flex;
  justify-content: flex-end;
}
.comment-list .reply .comment-reply-link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #777;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
}
.comment-list .children {
  margin-top: 10px;
  box-shadow: 0 0 10px 0 rgba(25, 90, 148, 0.15);
  border-radius: 12px;
}

.bs-blog-post.single .bs-blog-category {
  display: none;
}
.bs-blog-post.single .bs-header {
  display: none;
}
.bs-blog-post .small.single {
  margin-top: 30px;
}
.bs-blog-post .small.single .edit-link {
  display: none;
}
.bs-blog-post .bs-blog-thumb {
  display: flex;
  justify-content: center;
}
.bs-blog-post .bs-blog-thumb img {
  max-width: 100%;
  height: auto;
}

.entry-content {
  line-height: 140%;
}
.entry-content p strong {
  font-weight: 500;
  text-decoration: underline;
}
.entry-content .wp-block-heading {
  margin-top: 20px;
  padding-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
  background: linear-gradient(170deg, #0669A6 3.78%, #B744BD 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  margin: 20px 0;
}
.section-title {
  margin-top: 40px;
  padding-bottom: 10px;
  color: #111;
  font-size: clamp(20px, 20px + 10 * (100vw - 375px) / 1065, 30px);
  font-weight: 500;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  /*     border-left: 4px solid #d7176c; */
  /*     padding-left: 1rem; */
}

.wp-block-image {
  margin-top: 20px;
}

.wp-block-gallery {
  margin-top: 20px;
}
.wp-block-gallery .wp-block-image {
  margin-top: 0;
}

.code-block .list-items {
  margin: 12px 0;
  padding: 8px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}

/* board */
.single-class .container .header {
  text-align: center;
  border-bottom: 3px solid #007acc;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.version-badge {
  display: inline-block;
  background: linear-gradient(135deg, #007acc, #0099ff);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.subtitle {
  color: #7f8c8d;
  font-size: 1.1em;
  margin: 0;
}

.release-info {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.theme-highlight {
  font-size: 1.3em;
  font-weight: 600;
  color: #007acc;
  margin: 10px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007acc, #0099ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.feature-subtitle {
  color: #7f8c8d;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #34495e;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.performance-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.metric-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #dee2e6;
}

.metric-value {
  font-size: 2em;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 5px;
}

.metric-label {
  color: #6c757d;
  font-size: 0.9em;
}

.highlight-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
}

.highlight-title {
  font-weight: 600;
  color: #856404;
  margin-bottom: 10px;
}

.conclusion {
  background: #f8f9fa;
  border-left: 4px solid #007acc;
  padding: 25px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.benefit-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.benefit-emoji {
  font-size: 2em;
  margin-bottom: 10px;
}

.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #007acc, #0099ff);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 122, 204, 0.3);
  color: white;
  text-decoration: none;
}

.links-section {
  border-top: 1px solid #e9ecef;
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}

.external-link {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

.external-link:hover {
  text-decoration: underline;
}

.video-section {
  margin-top: 15px;
  /* // padding: 12px;
  // background: #f8f9fa;
  // border-radius: 6px;
  // border-left: 3px solid #007acc; */
}

.video-section p {
  margin: 0;
  font-size: 0.9em;
  color: #495057;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --color-primary: #652EB8;
}

.post-content {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 1rem;
}

.post-title {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.subsection-title {
  color: #333;
  font-size: 24px;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

h4.subsection-title {
  background: linear-gradient(170deg, #B744BD 3.78%, #0669A6 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}

.highlight {
  box-shadow: inset 0 -10px 0 0 rgba(245, 216, 0, 0.4392156863);
  margin-right: 2px;
  padding: 2px 4px;
  color: #000;
  font-weight: 500;
}

.code-block {
  margin-top: 20px;
}
.code-block pre {
  margin: 0;
  white-space: pre-wrap;
}

.list-item {
  margin: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

.list-item::before {
  content: "▸";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.emoji {
  font-size: 1.2em;
}

.conclusion {
  background: #f8f9fa;
  /*     border-left: 4px solid var(--color-primary); */
  padding: 20px;
  margin: 2rem 0;
  border-radius: var(--box-radius-primary);
}
.conclusion .subsection-title {
  margin: 0;
}
.conclusion p {
  margin: 10px 0 0;
}
.conclusion .highlight {
  padding: 0;
}

.tags {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.tags .tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 0.2rem;
  text-decoration: none;
}
.tags br {
  display: none;
}

.links {
  margin: 1.5rem 0;
}

.link-item {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px dotted #d7176c;
}

.link-item:hover {
  border-bottom: 1px solid var(--color-primary);
}

/* code color */
/* 코드 하이라이팅 스타일 - CSS 자동 적용 방식 */
.code-block pre {
  background-color: #2d3748;
  color: #e2e8f0;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}

/* 코드 블록 라벨 추가 */
/* .code-block::before {
    content: "CODE";
    position: absolute;
    top: 8px;
    right: 12px;
    background: #4a5568;
    color: #cbd5e0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
} */
/* SCSS 코드 블록 특별 스타일링 */
.code-block pre:contains("@mixin"),
.code-block pre:contains("$"),
.code-block pre:contains("@import") {
  border-left: 4px solid #f48fb1; /* 핑크 테두리 */
}

.code-block pre:contains("@mixin")::before,
.code-block pre:contains("$")::before,
.code-block pre:contains("@import")::before {
  content: "SCSS";
  background: #f48fb1;
  color: white;
}

/* JavaScript 코드 블록 */
.code-block pre:contains("function"),
.code-block pre:contains("const"),
.code-block pre:contains("let") {
  border-left: 4px solid #4fc3f7; /* 파란 테두리 */
}

.code-block pre:contains("function")::before,
.code-block pre:contains("const")::before,
.code-block pre:contains("let")::before {
  content: "JS";
  background: #4fc3f7;
  color: white;
}

/* CSS 코드 블록 */
.code-block pre:contains("{"),
.code-block pre:contains("background:"),
.code-block pre:contains("color:") {
  border-left: 4px solid #81c784; /* 초록 테두리 */
}

/* 호버 효과 */
/* .code-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
} */
/* 코드 라인 번호 스타일 (선택사항) */
.code-block pre {
  counter-reset: line;
}

.code-block pre::before {
  content: counter(line);
  counter-increment: line;
  position: absolute;
  left: -40px;
  color: #718096;
  font-size: 12px;
  text-align: right;
  width: 30px;
}

/* 반응형 */
@media (max-width: 768px) {
  .code-block pre {
    font-size: 14px;
    padding: 15px;
    border-radius: 6px;
  }
}
/* Syntax Highlighting Colors */
.keyword {
  color: #81c784; /* 연한 초록 - 키워드 */
  font-weight: bold;
}

.string {
  color: #ffb74d; /* 연한 주황 - 문자열 */
}

.comment {
  color: #90a4ae; /* 회색 - 주석 */
  font-style: italic;
}

.variable {
  color: #ce93d8; /* 연한 보라 - 변수 */
}

.selector {
  color: #4fc3f7; /* 연한 파란 - CSS 셀렉터 */
}

.property {
  color: #81d4fa; /* 하늘색 - CSS 속성 */
}

.value {
  color: #ffcc02; /* 노란색 - 값 */
}

.function {
  color: #64b5f6; /* 파란색 - 함수 */
}

.at-rule {
  color: #f48fb1; /* 분홍 - @규칙 */
  font-weight: bold;
}

.operator {
  color: #ffffff; /* 흰색 - 연산자 */
}

.punctuation {
  color: #b0bec5; /* 연한 회색 - 구두점 */
}

/* AI News Article Styles */
.ai-news-article {
  max-width: 900px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
.ai-news-header {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #007cba;
}

.ai-news-date {
  color: #6c757d;
  margin: 0;
  font-size: 1em;
}

/* Sections */
.ai-news-section {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
  border-radius: 6px;
}

.ai-news-section.participation {
  background: #f8f9fa;
}

/* Titles */
.ai-news-section-title {
  color: #007cba;
  margin: 0 0 15px 0;
  font-size: 1.3em;
  font-weight: 600;
}

.ai-news-section-title.breaking {
  color: #dc3545;
  padding: 8px 0;
  border-bottom: 2px solid #dc3545;
}

.ai-news-subtitle {
  color: #343a40;
  margin: 15px 0 8px 0;
  font-size: 1.1em;
  font-weight: 600;
}

/* Content */
.ai-news-content {
  color: #495057;
  font-size: 1em;
  line-height: 1.6;
  margin: 15px 0;
}

.ai-news-subsection {
  margin: 20px 0;
}

/* Lists */
.ai-news-list {
  color: #495057;
  line-height: 1.6;
  margin: 10px 0;
  padding-left: 20px;
}

.ai-news-list.small {
  font-size: 0.9em;
}

/* Grid Layouts */
.ai-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.ai-news-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .ai-news-two-column {
    grid-template-columns: 1fr;
  }
}
/* Cards */
.ai-news-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid #6c757d;
}

.ai-news-card.success {
  border-left-color: #28a745;
}

.ai-news-card.info {
  border-left-color: #17a2b8;
}

.ai-news-card.warning {
  border-left-color: #ffc107;
}

.ai-news-card-title {
  color: #495057;
  margin: 0 0 8px 0;
  font-size: 1em;
  font-weight: 600;
}

.ai-news-card-title.primary {
  color: #007cba;
}

.ai-news-card-title.success {
  color: #28a745;
}

.ai-news-card-title.info {
  color: #17a2b8;
}

.ai-news-card-title.danger {
  color: #dc3545;
}

.ai-news-card-desc {
  color: #6c757d;
  margin: 0;
  font-size: 0.9em;
}

/* Members */
.ai-news-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.ai-news-member {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.ai-news-member-name {
  color: #343a40;
  margin: 0 0 5px 0;
  font-size: 1.1em;
  font-weight: 600;
}

.ai-news-member-role {
  color: #6c757d;
  margin: 5px 0;
  font-size: 0.9em;
  font-weight: 600;
}

.ai-news-member-list {
  margin: 10px 0;
  padding-left: 15px;
  color: #495057;
  font-size: 0.85em;
}

/* Highlight */
.ai-news-highlight {
  background: #e3f2fd;
  padding: 12px;
  border-radius: 4px;
  margin: 15px 0;
  text-align: center;
}

.ai-news-highlight-text {
  color: #1565c0;
  margin: 0;
  font-size: 0.9em;
  font-weight: 600;
}

/* Benefits & Goals */
.ai-news-benefits,
.ai-news-goals {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
}

/* Quote */
.ai-news-quote {
  color: #495057;
  font-style: italic;
  margin: 15px 0;
  line-height: 1.6;
  padding: 15px;
  background: #f8f9fa;
  border-left: 3px solid #6c757d;
  font-size: 0.9em;
}

.ai-news-quote-author {
  color: #6c757d;
  margin: 0;
  text-align: right;
  font-weight: 600;
  font-size: 0.85em;
}

/* Timeline */
.ai-news-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.ai-news-timeline-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid #6c757d;
}

.ai-news-timeline-item.immediate {
  border-left-color: #28a745;
}

.ai-news-timeline-item.short-term {
  border-left-color: #17a2b8;
}

.ai-news-timeline-item.long-term {
  border-left-color: #ffc107;
}

.ai-news-timeline-title {
  color: #343a40;
  margin: 0 0 10px 0;
  font-size: 1em;
  font-weight: 600;
}

/* Participation */
.ai-news-participation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.ai-news-participation-item {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

/* Footer */
.ai-news-footer {
  text-align: center;
  background: #343a40;
  color: white;
  padding: 25px;
  border-radius: 6px;
  margin: 20px 0;
}

.ai-news-footer-title {
  color: #fff;
  margin: 0 0 15px 0;
  font-size: 1.4em;
  font-weight: 600;
}

.ai-news-footer-content {
  color: #adb5bd;
  line-height: 1.6;
  margin: 15px 0;
  font-size: 1em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-news-footer-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}

.ai-news-footer-slogan {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
}

.ai-news-footer-sub {
  margin: 10px 0 0 0;
  font-size: 0.9em;
  opacity: 0.8;
}

/*# sourceMappingURL=style.css.map */
