/* YLC Share Card Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
.ylc-share-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2C2C2C;
  border-radius: 999px;
  padding: 12px 12px;
  width: 100%;
  margin-bottom: 40px;
  font-family: inherit;
}
.ylc-share-card-buttons {
  display: flex;
  gap: 8px;
}
.ylc-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 9999px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.ylc-facebook-btn {
  background: #1877F3;
  color: #fff;
}
.ylc-facebook-btn .ylc-share-label strong {
  color: #fff;
}
.ylc-facebook-btn:hover {
  background: #145dc2;
}
.ylc-email-btn {
  background: #fff;
  color: #222;
  border: 1px solid #eee;
}
.ylc-email-btn .ylc-share-label strong {
  color: #222;
}
.ylc-email-btn:hover {
  background: #f5f5f5;
}
.ylc-share-icon {
  display: flex;
  align-items: center;
}
.ylc-share-card-message {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ylc-share-arrow {
  display: flex;
  align-items: center;
}
.ylc-share-arrow svg {
  width: 80px;
}
.ylc-share-caring {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  color: #fff;
  line-height: 44px;
  white-space: nowrap;
  font-weight: 400;
  margin-right: 10px;
}
.ylc-share-card-buttons a:hover {
  text-decoration: none !important
}
@media (max-width: 1140px) {
  .ylc-share-arrow svg {
    width: 60px;
  }
  .ylc-share-caring {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 1018px) {
  .ylc-share-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px 20px;
    border-radius: 16px;
    gaP: 12px;
  }
  .ylc-share-arrow svg {
    display: none;
  }
  .ylc-share-card-message {
    order: 1;
  }
  .ylc-share-card-buttons {
    order: 2;
  }
  .ylc-share-caring {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .ylc-share-card-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}