/*
  Apps & Games listing.
  Kept separate from templatemo-lava.css so the vendor template stays untouched.
  Colours follow the template: #191a20 headings, #7a7a7a body, #f4813f accent.
*/

.apps-area {
  width: 100%;
  padding: 130px 0 100px;
  scroll-margin-top: 100px;
  background-color: #fff;
}

.apps-area .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.apps-area .section-heading h2 {
  font-weight: 900;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0.5px;
  color: #191a20;
  margin-bottom: 14px;
}

.apps-area .section-heading p {
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  color: #7a7a7a;
  margin: 0 auto;
  max-width: 620px;
}

.app-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: #f4813f;
  box-shadow: 0 18px 40px rgba(25, 26, 32, 0.10);
}

.app-card .app-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdefe9;
  color: #f4813f;
  font-size: 26px;
}

.app-card h3 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #191a20;
  margin-bottom: 8px;
}

.app-card .app-tagline {
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: #7a7a7a;
  margin-bottom: 22px;
  flex-grow: 1;
}

.app-card .app-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #f1f1f1;
  padding-top: 18px;
}

.app-card .app-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25px;
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.app-card .app-links a:hover {
  color: #f4813f;
}

.app-card .app-links a i {
  margin-right: 7px;
}

@media (max-width: 767px) {
  .apps-area {
    padding: 110px 0 40px;
  }

  .apps-area .section-heading {
    margin-bottom: 40px;
  }

  .apps-area .section-heading h2 {
    font-size: 25px;
    line-height: 36px;
  }
}
