.latest-updates-section {
  overflow: hidden;
  padding: 5rem 0;
  background: #E3DFF2;
}
.latest-updates-section .display-4, .latest-updates-section .display-5 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #000000;
}

.page-header {
  margin-bottom: 4rem;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-header .intro {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .page-header .intro {
    font-size: 1rem;
  }
}

.posts-grid.row {
  margin-top: 2rem;
}

.updates-carousel-wrapper {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .updates-carousel-wrapper {
    padding: 0 20px;
  }
}

.updates-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #90EE90 #E3DFF2;
}
.updates-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.updates-scroll-container::-webkit-scrollbar-track {
  background: #E3DFF2;
  border-radius: 8px;
}
.updates-scroll-container::-webkit-scrollbar-thumb {
  background: #90EE90;
  border-radius: 8px;
}
.updates-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgb(100.93546875, 231.40453125, 100.93546875);
}

.updates-carousel {
  display: flex;
  gap: 2rem;
  padding-bottom: 1rem;
}

.update-card {
  width: 350px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: 0.2s ease;
}
.update-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}
.update-card a {
  text-decoration: none;
  color: inherit;
}
@media (max-width: 767.98px) {
  .update-card {
    width: 300px;
  }
}

.update-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #E3DFF2;
}
.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.update-card:hover .update-image img {
  transform: scale(1.05);
}

.update-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}
.update-type-badge.badge-blurb {
  background: #90EE90;
  color: #000000;
}
.update-type-badge.badge-blog {
  background: #FF69B4;
  color: #000000;
}

.update-content {
  padding: 1.5rem;
}

.update-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}
.update-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.update-meta svg {
  flex-shrink: 0;
}

.update-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-excerpt {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(54.55828125, 224.30171875, 54.55828125);
  font-weight: 700;
  font-size: 1rem;
  transition: gap 0.3s ease;
}
.read-more svg {
  transition: transform 0.2s ease;
}

.update-card:hover .read-more {
  gap: 0.75rem;
}
.update-card:hover .read-more svg {
  transform: translateX(4px);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #000000;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px #000000;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease;
  color: #000000;
}
.scroll-btn:hover {
  background: #90EE90;
  box-shadow: 6px 6px 0px #000000;
  transform: translateY(-50%) translate(-2px, -2px);
}
.scroll-btn:active {
  transform: translateY(-50%) translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}
@media (max-width: 767.98px) {
  .scroll-btn {
    display: none;
  }
}

.scroll-btn-left {
  left: 0;
}

.scroll-btn-right {
  right: 0;
}

.no-updates {
  text-align: center;
  padding: 5rem 0;
}
.no-updates svg {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}
.no-updates h4 {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  margin-bottom: 1rem;
}
.no-updates p {
  color: rgba(0, 0, 0, 0.5);
}
.no-updates p a {
  color: rgb(54.55828125, 224.30171875, 54.55828125);
  text-decoration: none;
  font-weight: 700;
}
.no-updates p a:hover {
  text-decoration: underline;
}

.btn-view-all {
  background-color: #90EE90;
  border: 4px solid #000000;
  color: #000000;
  transition: all 0.1s ease;
  box-shadow: 4px 4px 0px #000000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  border-radius: 50px;
}
.btn-view-all:hover {
  background-color: rgb(100.93546875, 231.40453125, 100.93546875);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}
.btn-view-all:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}
.btn-view-all svg {
  transition: transform 0.2s ease;
}
.btn-view-all:hover svg {
  transform: translateX(4px);
}

/*# sourceMappingURL=latest_updates.css.6957f466ad46.map */
