.da-container {
  width: 85%;
  margin: 0 auto;
  font-family: "Oscine", Sans-serif;
}

.da-content {
  text-align: center;
  padding: 20px 0;
  height: 100%;
}

.da-risk {
  background-color: #74e885;
  width: 100%;
  max-width: 370px;
  height: 4px;
  z-index: 0;
  display: block;
  margin: 30px auto;
}

.da-risk-item {
  background-color: #74e885;
  width: 100%;
  height: 4px;
  z-index: 0;
  display: block;
  margin: 10px auto;
}

.da-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--e-global-color-primary);
  line-height: 130%;
}

.da-content p {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--e-global-color-primary);
}

.da-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 34px;
  margin-bottom: 0;
}

.da-sidebar {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--e-global-color-6f8adfa);
  position: relative;
  top: 0;
  height: max-content;
  z-index: 1;
  margin-bottom: 0;
}

.da-sidebar ul {
  margin-left: 0;
}

.da-sidebar ul li {
  list-style-type: none;
  margin-top: 14px;
}

.da-sidebar ul li a {
  text-decoration: none;
  color: #316cce;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
}

.da-sidebar ul li a:hover,
.da-sidebar ul li.active a {
  text-decoration: none;
  border-color: #0c0d0e;
  color: var(--e-filter-hover-text-color);
}

.da-products-container {
  grid-column: span 1;
}

.da-products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  justify-content: stretch;
  width: 100%;
}

.da-product {
  border-radius: 20px;
  background-color: var(--e-global-color-6f8adfa);
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}

.da-product .da-img {
  background-color: var(--e-global-color-secondary);
  border-radius: 20px 20px 0px 0px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.da-product .da-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.da-product .da-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  text-align: center;
}

.da-product .da-info h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
}

.da-product .da-info a {
  background-color: var(--e-global-color-secondary);
  font-size: 0.9rem;
  display: block;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
  border-radius: 10px;
  color: white;
  margin-top: auto;
  transition: all 0.3s ease-in-out;
}

.da-product .da-info a:hover {
  background-color: var(--e-global-color-primary);
}

.da-pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.15rem;
  font-weight: bold;
  margin-top: 30px;
}

.da-pagination .page-numbers {
  cursor: pointer;
  color: var(--e-global-color-primary);
  padding: 0 10px;
  text-decoration: none;
}

.da-pagination .page-numbers:hover {
  color: var(--e-global-color-secondary);
}

.da-pagination .page-numbers.current {
  color: var(--e-global-color-secondary);
}

.da-shortcode {
  padding: 20px 0;
}

.spec-wrapper {
  margin-top: 40px;  
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
}
.spec-title {
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.spec-label {
  font-weight: 600;
}

.spec-value {
  color: #555;
  padding-left: 20px;
}

@media (min-width: 640px) {
  .spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
  }
}

@media (min-width: 768px) {
  .da-container {
    width: 85%;
  }
  .da-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .da-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .da-product {
    border-radius: 28px;
  }
  .da-product .da-img {
    border-radius: 28px 28px 0px 0px;
    height: 170px;
  }
  .da-products-container {
    grid-column: span 2;
  }
  .da-sidebar {
    position: sticky;
    top: 50px;
    padding: 26px;
    margin-bottom: 10%;
  }
  .da-shortcode {
    padding: 47px 0;
  }
}

@media (min-width: 1024px) {
  .da-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .da-products-container {
    grid-column: span 3;
  }  
  .da-grid {
    gap: 34px;
    margin-bottom: 20px;
  }
  .da-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }
  .da-product {
    border-radius: 30px;
  }
  .da-product .da-img {
    border-radius: 30px 30px 0px 0px;
    height: 240px;
  }
  .da-content {
    padding: 40px 60px;
  }
  .da-content h1 {
    font-size: 2.15rem;
  }
  .da-content p {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .da-sidebar {
    padding: 34px;
  }
}

@media (min-width: 1536px) {
  .da-content {
    padding: 80px 100px;
  }
  .da-content h2 {
    font-size: 2.15rem;
  }
  .da-content p {
    font-size: 1.15rem;
  }
  .da-product .da-info {
    padding: 30px;
    gap: 12px;
  }
  .da-product .da-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
  }
}
