.no_scroll {
  overflow: hidden;
}

.whatsnew_hero {
  padding: 140px 30px 60px;
  background: linear-gradient(45deg, #095dc1 0%, #0379d3 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .whatsnew_hero {
    padding: 120px 15px 40px;
  }
}
.whatsnew_hero h1 {
  font-family: SFProDisplay-Semibold;
  font-size: 56px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .whatsnew_hero h1 {
    font-size: 40px;
  }
}
.whatsnew_hero p {
  font-family: SFProDisplay-Regular;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .whatsnew_hero p {
    font-size: 16px;
  }
}

.releases_section {
  background-color: #f5f6f8;
  padding: 60px 0 80px;
  min-height: 400px;
}
@media (max-width: 768px) {
  .releases_section {
    padding: 40px 0 60px;
  }
}

.releases_container {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.loading {
  text-align: center;
  font-family: SFProDisplay-Regular;
  font-size: 18px;
  color: #7f7f8c;
  padding: 60px 0;
}

.error-message {
  text-align: center;
  font-family: SFProDisplay-Regular;
  font-size: 18px;
  color: #ff405c;
  padding: 60px 0;
}

.release-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.release-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.release-card h2 {
  font-family: SFProDisplay-Semibold;
  font-size: 24px;
  color: #19223b;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .release-card h2 {
    font-size: 20px;
  }
}

.release-card-content {
  padding: 30px;
}
@media (max-width: 768px) {
  .release-card-content {
    padding: 20px;
  }
}

.release-card-date {
  display: block;
  font-family: SFProDisplay-Medium;
  font-size: 13px;
  color: #0379d3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.release-card-description {
  font-family: SFProDisplay-Regular;
  font-size: 16px;
  line-height: 1.7;
  color: #42425a;
}
.release-card-description p {
  margin-bottom: 12px;
}
.release-card-description p:last-child {
  margin-bottom: 0;
}
.release-card-description ul, .release-card-description ol {
  margin: 12px 0;
  padding-left: 24px;
}
.release-card-description li {
  margin-bottom: 8px;
}
.release-card-description strong {
  font-family: SFProDisplay-Medium;
  color: #19223b;
}

.release-card-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.release-card-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.release-card-links {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.release-card-link {
  display: inline-flex;
  align-items: center;
  font-family: SFProDisplay-Medium;
  font-size: 14px;
  color: #0379d3;
  text-decoration: none;
  transition: color 0.2s ease;
}
.release-card-link:hover {
  color: #095dc1;
  text-decoration: underline;
}
.release-card-link svg {
  margin-left: 6px;
  width: 14px;
  height: 14px;
}

/* Footer styles */
.footer {
  background-color: #19223b;
}
.footer .footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .ft_top {
  display: flex;
  padding: 66px 50px 70px 74px;
}
@media (max-width: 768px) {
  .footer .ft_top {
    padding: 30px 15px;
    flex-wrap: wrap;
  }
}
.footer .logo {
  flex: 1;
}
@media (max-width: 768px) {
  .footer .logo {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
}
.footer .logo img {
  max-width: 134px;
}
.footer .ft_col {
  flex: 0 0 134px;
  padding-right: 10px;
  padding-top: 14px;
}
@media (max-width: 768px) {
  .footer .ft_col {
    flex: 0 0 33.3333%;
    padding-right: 0;
    padding-top: 0;
  }
}
.footer .ft_col h6 {
  font-family: SFProDisplay-Bold;
  font-size: 15px;
  color: #fff;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .footer .ft_col h6 {
    margin-bottom: 12px;
  }
}
.footer .ft_col > a {
  display: block;
  padding: 10px 0 10px 4px;
  font-family: SFProDisplay-Regular;
  font-size: 14px;
  color: #b5b5ce;
}
.footer .ft_col ul {
  display: flex;
  align-items: center;
  position: relative;
  left: -8px;
}
@media (max-width: 768px) {
  .footer .ft_col ul {
    left: -10px;
    flex-wrap: wrap;
  }
}
.footer .ft_col ul li {
  margin-right: 22px;
}
.footer .ft_col ul li a {
  display: flex;
  width: 23px;
  height: 28px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer .ft_col ul li a {
    width: 34px;
    height: 34px;
  }
}
.footer .ft_col ul li a img {
  height: 20px;
}
.footer .ft_btm {
  border-top: 1px solid #42425a;
  height: 114px;
  display: flex;
  align-items: center;
  padding: 0 15px 10px;
}
@media (max-width: 768px) {
  .footer .ft_btm {
    flex-wrap: wrap;
    align-content: center;
  }
}
.footer .ft_btm .copy {
  flex: 1;
  font-family: SFProDisplay-Regular;
  font-size: 14px;
  color: #b5b5ce;
}
@media (max-width: 768px) {
  .footer .ft_btm .copy {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
}
.footer .ft_btm a {
  font-family: SFProDisplay-Regular;
  font-size: 14px;
  color: #b5b5ce;
  margin-left: 48px;
  padding: 10px 0;
  position: relative;
}
@media (max-width: 768px) {
  .footer .ft_btm a {
    margin: 0px 15px 0 0;
    padding: 0;
    display: block;
  }
}
.footer .ft_btm a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b5b5ce;
}
@media (max-width: 768px) {
  .footer .ft_btm a:after {
    bottom: -2px;
  }
}

/*# sourceMappingURL=whatsnew.css.map */
