/*********************************************
* Functionality
* - on click, replace image with video
* - display fullscreen icon for popup
*********************************************/
.feline-info-wrapper {
  margin-top: -50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*********************************************
  * LAYOUT
  *********************************************/
  /*********************************************
  * HEADER
  *********************************************/
  /*********************************************
  * POSTS LAYOUT
  *********************************************/
  /*********************************************
  * POSTS
  *********************************************/
  /*********************************************
  * active card
  *********************************************/
  /*********************************************
  * not active
  *********************************************/
}
.feline-info-wrapper .feline-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  gap: 50px;
}
@media all and (max-width: 768px) {
  .feline-info-wrapper .feline-header {
    display: none;
  }
}
@media all and (min-width: 1101px) {
  .feline-info-wrapper .feline-header {
    max-width: 80%;
  }
  .feline-info-wrapper .feline-header .feline-hero {
    width: 50%;
  }
  .feline-info-wrapper .feline-header .feline-intro {
    width: 40%;
  }
}
@media all and (min-width: 901px) and (max-width: 1100px) {
  .feline-info-wrapper .feline-header {
    max-width: 90%;
  }
  .feline-info-wrapper .feline-header .feline-hero {
    width: 50%;
  }
  .feline-info-wrapper .feline-header .feline-intro {
    width: 40%;
  }
}
@media all and (max-width: 1100px) {
  .feline-info-wrapper .feline-header {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  .feline-info-wrapper .feline-header .feline-hero {
    width: 90%;
  }
  .feline-info-wrapper .feline-header .feline-intro {
    width: 90%;
    text-align: center;
  }
}
.feline-info-wrapper .feline-header {
  float: none;
  margin-bottom: 150px;
}
.feline-info-wrapper .feline-header .feline-hero img {
  width: 100%;
  height: auto;
}
.feline-info-wrapper .feline-posts {
  width: 90%;
  float: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 25px;
  grid-row-gap: 75px;
  margin-bottom: 200px;
}
@media all and (min-width: 901px) and (max-width: 1200px) {
  .feline-info-wrapper .feline-posts {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (max-width: 900px) {
  .feline-info-wrapper .feline-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 768px) {
  .feline-info-wrapper .feline-posts {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.feline-info-wrapper .feline-posts .feline-card:hover {
  cursor: pointer;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px dotted #000000;
  padding-bottom: 0.25em;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header h2 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header .feline-card-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header .feline-card-icons .feline-share .feline-share-link .feline-share-icon {
  width: 12px;
  height: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-right: 1em;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header .feline-card-icons .feline-share .feline-share-link .feline-share-icon:hover {
  opacity: 0.7;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-header .feline-card-icons .feline-toggle {
  font-size: 14px;
  width: 20px;
  height: 20px;
  background-image: url('img/svg/icon-down.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  margin-right: 0.25em;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-thumb {
  background: black;
  aspect-ratio: 1.91/1;
  position: relative;
  overflow: hidden;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feline-info-wrapper .feline-posts .feline-card .feline-card-info {
  display: none;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0;
}
.feline-info-wrapper .feline-card {
  position: relative;
}
.feline-info-wrapper .feline-card.video_active .feline-card-thumb:before,
.feline-info-wrapper .feline-card.video_active .feline-card-thumb:after {
  background: none;
}
.feline-info-wrapper .feline-card.video_active .feline-card-thumb .feline-fullscreen-icon {
  z-index: 5;
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-image: url('img/svg/icon-fullscreen.svg');
  background-repeat: no-repeat;
  background-size: 20px;
}
.feline-info-wrapper .feline-card.video_active .feline-card-thumb img {
  display: none;
}
.feline-info-wrapper .feline-card.video_active .feline-card-thumb .feline-video {
  z-index: 2;
  display: block;
}
.feline-info-wrapper .feline-card.info_active .feline-card-info {
  display: block;
  height: auto;
  padding: 0.5em 0;
}
.feline-info-wrapper .feline-card.info_active .feline-card-header .feline-card-icons .feline-toggle {
  background-image: url('img/svg/icon-up.svg');
}
.feline-info-wrapper .feline-card:not(.video_active) .feline-card-thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url('img/svg/icon-video.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  opacity: 0.7;
}
.feline-info-wrapper .feline-card:not(.video_active) .feline-card-thumb:hover:before,
.feline-info-wrapper .feline-card:not(.video_active) .feline-card-thumb:hover:after {
  background: none;
}
.feline-info-wrapper .feline-card:not(.video_active) .feline-video {
  display: none;
}
/*********************************************
* share modal
*********************************************/
.feline-share-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 1em;
}
.feline-share-row .swal2-input {
  margin: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
  height: 2.5em;
  font-size: 14px;
}
.feline-share-row .swal2-confirm {
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 2.5em;
  font-size: 14px;
  padding: 0 10px;
}
.feline-share-row .swal2-input {
  border-right: none;
}
.feline-share-row .swal2-confirm.swal2-styled {
  background-color: #000000;
  /* blue or your desired color */
  color: white;
  border: none;
  box-shadow: none;
  transition: background-color 0.2s ease;
}
.feline-share-row .swal2-confirm.swal2-styled:hover {
  background-color: #0056b3;
  /* darker hover */
}
.feline-share-networks {
  display: flex;
  justify-content: center;
}
.feline-share-feedback #copy-feedback {
  width: 100%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.swal2-popup {
  animation: fadeInOnly 0.2s ease-out !important;
}
.swal2-hide {
  animation: fadeOutOnly 0.2s ease-in !important;
}
@keyframes fadeOutOnly {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.swal2-container,
.swal2-backdrop,
.swal2-popup {
  pointer-events: auto;
  /* ensure click works */
}
.feline-share-close-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  cursor: pointer;
}
.feline-share-close-icon {
  width: 20px;
  height: 20px;
  stroke: rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s ease;
}
.feline-share-close-icon:hover {
  opacity: 0.5;
}
/*********************************************
 * FULLSCREEN — centred, visible, height-capped
 *********************************************/
.feline-fullscreen {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
  background: #000000;
}
.feline-fullscreen.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feline-fullscreen .feline-close-wrapper {
  cursor: pointer;
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
}
.feline-fullscreen .feline-fullscreen-video-container {
  /* centre the player region */
  width: 100vw;
  height: 100dvh;
  padding: 2vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Frame that holds Wistia's responsive markup */
}
@media all and (max-width: 900px) {
  .feline-fullscreen .feline-fullscreen-video-container {
    padding: 0;
  }
}
.feline-fullscreen .feline-fullscreen-video-container .feline-wistia-mount {
  /* expose variables as CSS custom props for calc() */
  --fs-max-h: 80dvh;
  --fs-max-w: 80vw;
  --fs-ar: 1.77777778;
  /* pick the limiting dimension, then derive the other by AR */
  width: min(var(--fs-max-w), calc(var(--fs-max-h) * var(--fs-ar)));
  max-width: 100vw;
  /* height is driven by padding-top on inner box; keep a hard cap */
  max-height: var(--fs-max-h);
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
  /* Wistia standard responsive wrapper, but with AR from variable */
}
.feline-fullscreen .feline-fullscreen-video-container .feline-wistia-mount .wistia_responsive_padding {
  /* height = width / AR */
  padding: 0;
  padding-top: calc(100% / var(--fs-ar));
  position: relative;
  width: 100%;
}
.feline-fullscreen .feline-fullscreen-video-container .feline-wistia-mount .wistia_responsive_wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.feline-fullscreen .feline-fullscreen-video-container .feline-wistia-mount .wistia_embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.feline-fullscreen .feline-fullscreen-video-container .feline-wistia-mount .wistia_embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Optional: ensure it never exceeds viewport on tight mobile landscape */
@media all and (max-width: 900px) and (orientation: landscape) {
  .feline-fullscreen .feline-wistia-mount {
    max-width: 100vw;
    --fs-max-h: 75dvh;
    /* reuse same cap */
  }
}
/*# sourceMappingURL=feline.css.map */