
.custom-card-box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 12px;

}
.custom-card-box:hover {

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.card-image {
  height: 250px;
  background-size: cover;
  background-position: center;

}

.card-content {
  padding: 1.5em;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--ar-header-color);
}

.card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
  text-align: left;
}

.card-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  font-size: 0.95em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ar-body-text);
}

.card-list li::before {
  content: '';
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 0; /* Make it square */
  display: inline-block;
}





.card-btn {
  display: inline-block;
  padding: 0.6em 1.4em;
  color: var(--ar-accent);
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.3s ease; /* smoother and avoids shift */
}

.card-btn:hover {
  background-color: var(--ar-accent);
  color: #fff;
  border: 1px solid var(--ar-accent); 
  padding: 0.6em 1.4em; 
}
