@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.fbcollectionviewer-section,
.fbcollectionviewer-section * {
  box-sizing: border-box;
}

.fbcollectionviewer-section {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17212b;
  font-family: Arial, Helvetica, sans-serif;
}

.fbcollectionviewer-section .fbcollectionviewer-panel {
  width: 100% !important;
}

.fbcollectionviewer-section .fbcollectionviewer-white {
  background: #ffffff;
}

.fbcollectionviewer-section .fbcollectionviewer-tint {
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 119, 242, 0.09), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(0, 178, 169, 0.10), transparent 32%),
    #f4f8fb;
}

.fbcollectionviewer-section .fbcollectionviewer-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-width: 0;
}

.fbcollectionviewer-section h2,
.fbcollectionviewer-section h3,
.fbcollectionviewer-section p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.fbcollectionviewer-section h2 {
  color: #101820;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 16px;
}

.fbcollectionviewer-section .fbcollectionviewer-intro {
  max-width: 760px;
  color: #516070;
  line-height: 1.65;
  margin-top: 0;
}

.fbcollectionviewer-section .fbcollectionviewer-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
  min-width: 0;
}

.fbcollectionviewer-section .fbcollectionviewer-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(24, 119, 242, 0.16);
  box-shadow: 0 18px 42px rgba(15, 47, 79, 0.10);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.fbcollectionviewer-section .fbcollectionviewer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(0, 178, 169, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.fbcollectionviewer-section .fbcollectionviewer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 178, 169, 0.42);
  box-shadow: 0 24px 58px rgba(15, 47, 79, 0.16);
}

.fbcollectionviewer-section .fbcollectionviewer-card:hover::before {
  opacity: 1;
}

.fbcollectionviewer-section .fbcollectionviewer-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877f2 0%, #00b2a9 100%);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.fbcollectionviewer-section .fbcollectionviewer-card:hover .fbcollectionviewer-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 36px rgba(0, 178, 169, 0.26);
}

.fbcollectionviewer-section .fbcollectionviewer-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.fbcollectionviewer-section .fbcollectionviewer-card h3 {
  color: #13202c;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.fbcollectionviewer-section .fbcollectionviewer-card p {
  color: #5b6875;
  line-height: 1.6;
}

.fbcollectionviewer-section .fbcollectionviewer-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fbcollectionviewer-section .fbcollectionviewer-reveal.fbcollectionviewer-show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .fbcollectionviewer-section .fbcollectionviewer-panel {
    padding: 86px 24px;
  }

  .fbcollectionviewer-section h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .fbcollectionviewer-section .fbcollectionviewer-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid {
    gap: 24px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fbcollectionviewer-section .fbcollectionviewer-card {
    min-height: 300px;
    padding: 34px 26px 30px;
    border-radius: 24px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-i {
    font-size: 30px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card h3 {
    font-size: 20px;
    margin: 0 0 13px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card p {
    font-size: 15px;
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbcollectionviewer-section .fbcollectionviewer-panel {
    padding: 68px 22px;
  }

  .fbcollectionviewer-section h2 {
    font-size: 34px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid,
  .fbcollectionviewer-section .fbcollectionviewer-grid-3,
  .fbcollectionviewer-section .fbcollectionviewer-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-i {
    font-size: 28px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card h3 {
    font-size: 19px;
    margin: 0 0 12px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card p {
    font-size: 15px;
    margin: 0;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fbcollectionviewer-section .fbcollectionviewer-panel {
    padding: 52px 16px;
  }

  .fbcollectionviewer-section h2 {
    font-size: 27px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-intro {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid,
  .fbcollectionviewer-section .fbcollectionviewer-grid-3,
  .fbcollectionviewer-section .fbcollectionviewer-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card {
    min-height: 232px;
    padding: 20px 13px 18px;
    border-radius: 18px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-i {
    font-size: 22px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card h3 {
    font-size: 16px;
    margin: 0 0 9px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card p {
    font-size: 13px;
    line-height: 1.48;
    margin: 0;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fbcollectionviewer-section .fbcollectionviewer-panel {
    padding: 46px 12px;
  }

  .fbcollectionviewer-section h2 {
    font-size: 24px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid,
  .fbcollectionviewer-section .fbcollectionviewer-grid-3,
  .fbcollectionviewer-section .fbcollectionviewer-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card {
    min-height: 220px;
    padding: 18px 10px 16px;
    border-radius: 16px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-i {
    font-size: 20px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card h3 {
    font-size: 15px;
    margin: 0 0 8px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card p {
    font-size: 12.5px;
    line-height: 1.44;
    margin: 0;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fbcollectionviewer-section .fbcollectionviewer-panel {
    padding: 40px 10px;
  }

  .fbcollectionviewer-section h2 {
    font-size: 21px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-intro {
    font-size: 12.5px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-grid,
  .fbcollectionviewer-section .fbcollectionviewer-grid-3,
  .fbcollectionviewer-section .fbcollectionviewer-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card {
    min-height: 214px;
    padding: 16px 8px 14px;
    border-radius: 14px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-i {
    font-size: 18px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card h3 {
    font-size: 14px;
    margin: 0 0 7px;
  }

  .fbcollectionviewer-section .fbcollectionviewer-card p {
    font-size: 11.8px;
    line-height: 1.4;
    margin: 0;
  }
}