/* line 2, app/assets/stylesheets/resource_landing_page.scss */
#resources-page {
  --featured-resource-width: 630px;
  --featured-resource-height: 423px;
  --side-resource-width: 305px;
  --side-resource-height: 201.5px;
  --normal-resource-width: 405px;
  --normal-resource-height: 128px;
  padding: 30px 80px;
  text-align: left;
  /* Frame 403 */
}

/* line 13, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .resources-header {
  margin-bottom: 15px;
}

/* line 16, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .resources-header span {
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 63px;
  text-align: center;
  text-align: left;
}

/* line 23, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .breadcrumbs {
  margin-bottom: 20px;
  text-align: left;
}

/* line 27, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .breadcrumbs a {
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  color: #BDBDBD;
}

/* line 32, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .breadcrumbs span {
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #212121;
  margin-left: 5px;
}

/* line 39, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 55px;
  /* Light-Blue */
  background: #F7FCFF;
  /* Shadow */
  box-shadow: 0px 4px 8px rgba(0, 42, 63, 0.08);
  border-radius: 16px;
  border: 1px;
  margin-bottom: 30px;
}

/* line 56, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .resources-count {
  align-items: flex-start;
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #9E9E9E;
  margin: 0 20px;
}

/* line 62, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .search-form {
  /* Auto layout */
  align-items: flex-end;
}

/* line 65, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .search-form input[type="text"] {
  caret-color: orange;
  background-color: #FFFFFF;
  margin-right: 20px;
  width: 216px;
  height: 39px;
  border-radius: 50px;
  border: 1px solid #DADCE0;
  text-indent: 10px;
}

/* line 77, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .search-form .search-container {
  position: relative;
  display: inline-block;
}

/* line 82, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .search-form .search-container input[type="text"] {
  padding-right: 40px;
  width: 97%;
}

/* line 87, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .search-bar .search-form .search-container .search-icon {
  position: absolute;
  left: 81%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 20px;
  height: 20px;
}

/* line 99, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources {
  margin-bottom: 40px;
}

/* line 102, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-title {
  margin-bottom: 20px;
}

/* line 104, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-title span {
  color: #212121;
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}

/* line 110, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content {
  height: var(--featured-resource-height);
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

/* line 116, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: var(--featured-resource-width);
  height: var(--featured-resource-height);
}

/* line 128, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource .cover {
  width: 100%;
  height: 100%;
  background-color: #00239C;
  opacity: 0.4;
  position: absolute;
  z-index: 0;
}

/* line 137, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 143, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource .details {
  position: absolute;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 40px;
  gap: 20px;
}

/* line 154, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource .details .title {
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  color: white;
  text-align: start;
  margin: 10px;
  padding: 2px;
}

/* line 162, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .featured-resource .details .date {
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-align: start;
  color: white;
  padding: 10px;
}

/* line 172, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* line 179, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 20px;
}

/* line 186, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item .resource-thumbnail {
  border-radius: 20px;
  overflow: hidden;
  color: #DADCE0;
  width: var(--side-resource-width);
  height: var(--side-resource-height);
  display: flex;
  justify-content: center;
}

/* line 194, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item .resource-thumbnail img {
  overflow-wrap: break-word;
  width: var(--side-resource-width);
  height: var(--side-resource-height);
  border-radius: 20px;
  object-fit: cover;
}

/* line 203, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item .details {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 40px;
  padding-top: 10px;
  gap: 10px;
  padding: 0 20px;
}

/* line 214, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item .details .title {
  font-family: "Primary";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: #212121;
  text-align: start;
}

/* line 220, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .latest-resources .latest-resources-content .side-resources .side-resource-item .details .date {
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-align: start;
  color: #9E9E9E;
}

/* line 232, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources {
  margin-bottom: 40px;
}

/* line 235, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-title {
  margin-bottom: 40px;
}

/* line 237, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-title span {
  color: #212121;
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}

/* line 243, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* line 248, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item {
  background-color: #F7FCFF;
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: var(--normal-resource-width);
  height: var(--normal-resource-height);
  display: flex;
  flex-direction: row;
}

/* line 258, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item .resources-thumbnail {
  margin: 15px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

/* line 264, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item .resources-thumbnail img {
  justify-content: center;
  border-radius: 20px;
  width: 115px;
  height: 96px;
  object-fit: cover;
}

/* line 273, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item .details {
  height: 100%;
  display: flex;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* line 284, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item .details .title {
  font-family: "Primary";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #212121;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0;
  padding: 3px;
}

/* line 297, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .all-resources .all-resources-grid .resources-item .details .date {
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-align: start;
  color: #9E9E9E;
}

/* line 308, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* line 315, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination a, #resources-page .pagination span {
  font-family: 'Secondary';
  font-size: 14px;
}

/* line 320, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination li {
  margin: 0 5px;
}

/* line 323, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination li a, #resources-page .pagination li span {
  font-family: 'Secondary';
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

/* line 334, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination li a:hover, #resources-page .pagination li span:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* line 340, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination li.active span {
  background-color: #ffa000;
  /* Orange color for the active page */
  color: #fff;
  border-color: #ffa000;
}

/* line 346, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination li.disabled span {
  color: #ccc;
  pointer-events: none;
}

/* line 353, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination-prev, #resources-page .pagination-next {
  display: inline-block;
}

/* line 356, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination-prev a, #resources-page .pagination-next a {
  background-color: transparent;
  color: #333;
  border: none;
}

/* line 361, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination-prev a:hover, #resources-page .pagination-next a:hover {
  color: #000;
}

/* line 366, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination-prev.disabled a, #resources-page .pagination-next.disabled a {
  color: #ccc;
  pointer-events: none;
}

/* line 372, app/assets/stylesheets/resource_landing_page.scss */
#resources-page .pagination .gap {
  padding: 10px 15px;
  color: #333;
  border: none;
}

@media (max-width: 1040px) {
  /* line 2, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page {
    padding: 30px 50px;
  }
  /* line 380, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .latest-resources {
    display: none;
  }
  /* line 384, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .all-resources .all-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 387, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .all-resources .all-resources-grid .resources-item {
    width: 370px;
  }
}

@media (max-width: 845px) {
  /* line 2, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page {
    padding: 30px 30px;
  }
  /* line 395, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .latest-resources {
    display: none;
  }
  /* line 399, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .all-resources .all-resources-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /* line 402, app/assets/stylesheets/resource_landing_page.scss */
  #resources-page .all-resources .all-resources-grid .resources-item {
    width: 320px;
  }
}
