/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./_dev/module/css/module.scss ***!
  \**********************************************************************************************************************/
@keyframes shimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

@keyframes shimmer2 {
  0% {
    background-position: -880px 0; }
  100% {
    background-position: 880px 0; } }

.oo_wordpress__post__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-decoration: none; }

.oo_wordpress__post__read-wrapper {
  position: absolute;
  font-family: var(--theme-font-title);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  white-space: nowrap;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease; }
  .oo_wordpress__post__read-wrapper > div {
    display: inline-flex;
    animation: slideText 20s infinite linear; }

.oo_wordpress__post__read {
  color: white;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  margin-left: 20px; }

@keyframes slideText {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }

.oo_wordpress__post__thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px; }
  .oo_wordpress__post__thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; }
  .oo_wordpress__post__thumbnail img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all .3s ease; }
  .oo_wordpress__post__thumbnail:hover img {
    transform: scale(1.05); }

.oo_wordpress__post__category {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--theme-color-2);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  z-index: 1; }

.oo_wordpress__post__content {
  padding: 5px 15px 0 15px;
  transition: all .3s ease; }

.oo_wordpress__post__date {
  font-weight: bold;
  font-size: 22px;
  color: var(--theme-color-2);
  font-family: var(--theme-font-title); }

.oo_wordpress__post__title {
  font-size: 20px;
  text-transform: initial;
  font-weight: 400;
  line-height: 1.5;
  margin: 0; }

.oo_wordpress__post:has(.oo_wordpress__post__link:hover) .oo_wordpress__post__thumbnail img {
  transform: scale(1.05); }

.oo_wordpress__post:has(.oo_wordpress__post__link:hover) .oo_wordpress__post__read-wrapper {
  opacity: 1;
  visibility: visible; }

.oo_wordpress__post:has(.oo_wordpress__post__link:hover) .oo_wordpress__post__thumbnail:after {
  opacity: 1;
  visibility: visible; }

.oo_wordpress__post.loading .oo_wordpress__post__thumbnail {
  aspect-ratio: 1/1;
  background: #f6f7f8;
  margin-bottom: 10px; }

.oo_wordpress__post.loading .oo_wordpress__post__title {
  height: 24px;
  width: calc(100% - 30px);
  margin-left: 15px; }

.oo_wordpress__post.loading .oo_wordpress__post__date {
  height: 24px;
  width: calc(40% - 30px);
  margin-left: 15px; }

.oo_wordpress__post.loading .shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear; }

.oo_wordpress__home {
  padding: 80px 0;
  background-color: #fff; }
  @media screen and (max-width: 768px) {
    .oo_wordpress__home {
      padding: 60px 0; } }
  .oo_wordpress__home__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .oo_wordpress__home__top {
        justify-content: center; } }
    @media screen and (max-width: 768px) {
      .oo_wordpress__home__top .oo_wordpress__button {
        display: none; } }
  .oo_wordpress__home__posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; }
    @media screen and (max-width: 768px) {
      .oo_wordpress__home__posts {
        grid-template-columns: repeat(1, 1fr); } }
    .oo_wordpress__home__posts:has(.oo_wordpress__empty) {
      display: block; }

.oo_wordpress__title {
  margin: 0; }

.oo_wordpress__button.mobile_button {
  display: none; }
  @media screen and (max-width: 768px) {
    .oo_wordpress__button.mobile_button {
      display: block;
      text-align: center;
      margin-top: 30px; } }

.oo_wordpress__empty {
  text-align: center;
  margin-top: 40px;
  width: 100%; }

.oo_wordpress__product__post {
  padding: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #F4F4F4; }
  @media screen and (max-width: 540px) {
    .oo_wordpress__product__post {
      flex-direction: column;
      gap: 20px;
      padding-bottom: 40px; } }
  .oo_wordpress__product__post__thumbnail {
    display: block;
    width: 260px;
    min-width: 260px;
    height: 260px;
    border-radius: 4px;
    overflow: hidden; }
    @media screen and (max-width: 920px) {
      .oo_wordpress__product__post__thumbnail {
        width: 200px;
        min-width: 200px;
        height: 200px; } }
    @media screen and (max-width: 540px) {
      .oo_wordpress__product__post__thumbnail {
        width: 100%;
        min-width: 100%;
        height: auto;
        aspect-ratio: 1/1; } }
    .oo_wordpress__product__post__thumbnail img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all .3s ease; }
    .oo_wordpress__product__post__thumbnail:hover img {
      transform: scale(1.05); }
  .oo_wordpress__product__post__contain {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1; }
    @media screen and (max-width: 540px) {
      .oo_wordpress__product__post__contain {
        width: 100%; } }
    .oo_wordpress__product__post__contain > * {
      margin: 0; }
  .oo_wordpress__product__post__title {
    font-weight: bold; }
  .oo_wordpress__product__post__title, .oo_wordpress__product__post__content {
    color: var(--theme-color-6); }
    @media screen and (max-width: 540px) {
      .oo_wordpress__product__post__title, .oo_wordpress__product__post__content {
        width: 100%; } }
  .oo_wordpress__product__post__link {
    font-weight: bold;
    text-decoration: underline;
    align-self: flex-start; }
    .oo_wordpress__product__post__link:hover {
      text-decoration: none; }
  .oo_wordpress__product__post.loading {
    background: #FBFBFB; }
    .oo_wordpress__product__post.loading .oo_wordpress__product__post__thumbnail {
      background: #f6f7f8; }
    .oo_wordpress__product__post.loading .oo_wordpress__product__post__title {
      height: 38px;
      width: 60%; }
    .oo_wordpress__product__post.loading .oo_wordpress__product__post__content {
      height: 80px;
      width: 100%; }
    .oo_wordpress__product__post.loading .oo_wordpress__product__post__link {
      height: 20px;
      width: 120px;
      border-bottom: none; }
    .oo_wordpress__product__post.loading .shimmer {
      background: #f6f7f8;
      background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
      background-repeat: no-repeat;
      background-size: 800px 100%;
      animation: shimmer2 1.5s infinite linear; }

