h1.ekit-heading--title.elementskit-section-title span {
    font-size: 45px !important;
}
/* MAIN WRAPPER */
#list-style-type-list .elementor-icon-list-items {
    padding: 30px 35px;
    background: #fff;
    border-radius: 16px;

    /* 3D layered shadow */
    box-shadow:
        0 4px 8px rgba(0,0,0,0.05),
        0 12px 22px rgba(0,0,0,0.06),
        0 20px 40px rgba(0,0,0,0.05);

    border: 1px solid #f2dfe2; /* Soft pastel rose border */
    transition: all 0.4s ease;
}

/* Subtle hover lift for whole card */
#list-style-type-list .elementor-icon-list-items:hover {
    transform: translateY(-4px);
    box-shadow:
        0 6px 12px rgba(0,0,0,0.06),
        0 18px 32px rgba(0,0,0,0.08),
        0 28px 60px rgba(0,0,0,0.06);
}

/* EACH ITEM */
#list-style-type-list .elementor-icon-list-item {
    padding: 12px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    transition: 0.3s ease;
}

/* item hover shift */
#list-style-type-list .elementor-icon-list-item:hover {
    transform: translateX(6px);
}

/* ICON STYLE */
#list-style-type-list .elementor-icon-list-icon svg {
    width: 20px;
    height: 20px;

    fill: #FFFF00 !important; /* Rose-gold */
    transition: 0.3s ease;

    /* Soft glow around icon */
    filter: drop-shadow(0 2px 3px rgba(181,109,116,0.25));
}

#list-style-type-list .elementor-icon-list-item:hover .elementor-icon-list-icon svg {
    fill: #8d4e55 !important;
    filter: drop-shadow(0 3px 4px rgba(141,78,85,0.3));
}

/* TEXT STYLE */
#list-style-type-list .elementor-icon-list-text {
    font-size: 16px;
    margin-left: 12px;
    font-weight: 500;
    color: #3a3a3a;
    line-height: 1.55;
    font-family: "Poppins", sans-serif;
}

/* BOLD highlighting (optional) */
#list-style-type-list .elementor-icon-list-text strong {
    color: #8d4e55;
}

/* Remove last margin */
#list-style-type-list .elementor-icon-list-item:last-child {
    margin-bottom: 0;
}
.comment-content {
    text-align: justify;
}
/* MAIN CARD */
.drms-vcard {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  margin: 0 auto;
}

/* IMAGE CENTERED */
.drms-vcard-image {
  width: 100%;
  height: 240px;
  background: #f5f5f7;
  display: flex;
  align-items: center;      /* CENTER */
  justify-content: center;  /* CENTER */
  overflow: hidden;
}

.drms-vcard-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.drms-vcard:hover .drms-vcard-image img {
  transform: scale(1.03);
}

/* CONTENT CENTERED */
.drms-vcard-content {
  padding: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;  /* CENTER ALL */
  gap: 12px;
}

/* TAG SMALL + CENTERED */
.drms-vcard-tag {
  background: rgba(244, 180, 84, 0.18);
  color: #101828;
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  width: auto;
  display: inline-block;
  margin: 0 auto;   /* CENTER */
}

/* TITLE SLIGHTLY SMALLER */
.drms-vcard-title {
  font-size: 18px;            /* SMALLER SIZE */
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.35;
}

/* PARAGRAPH CENTERED */
.drms-vcard-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  text-align: center;         /* CENTERED */
}

/* BUTTON CENTERED */
.drms-vcard-btn {
  padding: 10px 28px;
  border-radius: 999px;
  background: #ff6b3d;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  transition: 0.25s ease;
}

.drms-vcard-btn:hover {
  background: #f4b454;
  color: #111827;
}