/*!********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./blocks/post-card/post-card.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************/
/**
 * Post Card Block Styles
 *
 * @package Umbrellas
 * @subpackage Blocks
 * @since 1.0.0
 */
.wp-block-acf-post-card .post-card {
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--white);
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid #000;
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.wp-block-acf-post-card .post-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.wp-block-acf-post-card .post-card .post-card-image {
  position: relative;
  flex: 0 0 60%;
  overflow: hidden;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--gainsboro);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-placeholder .post-card-placeholder-text {
  position: relative;
  z-index: 1;
  color: var(--wp--preset--color--gunmetal);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 500;
}
.wp-block-acf-post-card .post-card .post-card-image:hover .post-card-thumbnail {
  transform: scale(1.05);
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: var(--wp--preset--spacing--medium);
  background: #fbfbfb;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
  position: relative;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item .post-card-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 16, 29, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item .post-card-gallery-overlay .fa-solid {
  font-size: 16px;
  font-family: "Font Awesome 6 Pro";
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item .post-card-gallery-overlay .post-card-gallery-count {
  font-size: 18px;
  font-weight: 600;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-gallery-preview .post-card-gallery-item .post-card-gallery-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-label .fa-solid {
  font-size: 14px;
}
.wp-block-acf-post-card .post-card .post-card-image .post-card-label .post-card-label-count {
  font-size: 15px;
  font-weight: 700;
}
.wp-block-acf-post-card .post-card .post-card-content {
  flex: 1;
  padding: var(--wp--preset--spacing--medium);
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--white);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-category {
  margin-bottom: var(--wp--preset--spacing--x-small);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-category .post-card-category-link {
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 600;
  color: var(--wp--preset--color--gunmetal);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-category .post-card-category-link:hover {
  color: var(--wp--preset--color--secondary);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-title {
  margin: 0 0 var(--wp--preset--spacing--small) 0;
  line-height: var(--wp--custom--line-height--snug);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-title .post-card-title-link {
  color: var(--wp--preset--color--jet);
  text-decoration: none;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-title .post-card-title-link:hover {
  color: var(--wp--preset--color--secondary);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-excerpt {
  margin-bottom: var(--wp--preset--spacing--medium);
  color: var(--wp--preset--color--gunmetal);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--wp--custom--line-height--normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wp-block-acf-post-card .post-card .post-card-content .event-card-details {
  margin-bottom: var(--wp--preset--spacing--small);
}
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-date,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-time,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-venue,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-organizer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--gunmetal);
}
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-date .fa-solid,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-time .fa-solid,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-venue .fa-solid,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-organizer .fa-solid {
  color: var(--wp--preset--color--black);
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-date span,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-time span,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-venue span,
.wp-block-acf-post-card .post-card .post-card-content .event-card-details .event-card-organizer span {
  color: var(--wp--preset--color--gunmetal);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-read-more {
  margin-top: auto;
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-read-more .post-card-read-more-link {
  color: var(--wp--preset--color--secondary);
  text-decoration: none;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-read-more .post-card-read-more-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--wp--preset--color--secondary);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-read-more .post-card-read-more-link:hover {
  color: var(--wp--preset--color--primary);
}
.wp-block-acf-post-card .post-card .post-card-content .post-card-read-more .post-card-read-more-link:hover::after {
  background: var(--wp--preset--color--primary);
  transform: scaleX(1.1);
}
@media (max-width: 768px) {
  .wp-block-acf-post-card .post-card .post-card-image {
    flex: 0 0 50%;
  }
  .wp-block-acf-post-card .post-card .post-card-content {
    padding: var(--wp--preset--spacing--small);
  }
  .wp-block-acf-post-card .post-card .post-card-content .post-card-title .post-card-title-link {
    font-size: var(--wp--preset--font-size--normal);
  }
  .wp-block-acf-post-card .post-card .post-card-content .post-card-excerpt {
    font-size: var(--wp--preset--font-size--small);
  }
}
@media (max-width: 480px) {
  .wp-block-acf-post-card .post-card .post-card-image {
    flex: 0 0 45%;
  }
  .wp-block-acf-post-card .post-card .post-card-content .post-card-title .post-card-title-link {
    font-size: var(--wp--preset--font-size--small);
  }
  .wp-block-acf-post-card .post-card .post-card-content .post-card-excerpt {
    -webkit-line-clamp: 1;
  }
}

/*# sourceMappingURL=post-card-styles.min.css.map*/