.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.single-content h3 {
margin-top:0px!important;
}
.single-content p {
margin-bottom:1rem!important;
}
.special-card {
  background-color: var(--global-palette3, #1A202C);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  font-family: var(--global-body-font-family);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.special-location {
  font-weight: 600;
  color: #fff;
  opacity: 0.95;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.special-sale-price {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ff9800;
  margin-bottom: 0.25rem;
  line-height: 1.1;
  font-family: var(--global-heading-font-family);
}

.special-original-price {
  font-size: 2.5rem;
  margin-right:5px;
  color: #fff;
  opacity: 0.6;
  font-weight: 300;
  text-decoration: line-through;
  font-family: var(--global-heading-font-family);
}

.month-text {

margin-top:0px;
font-size: 17px;
}

.special-headline {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-transform: none;
}

.special-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.95;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.special-cta,
.special-call-now {
  margin-top: auto;
}

.special-cta .button, .special-cta .button:visited {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  background: var(--global-palette4, #2D3748);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: var(--global-kb-font-size-sm, 1.25rem);
  font-family: var(--global-body-font-family);
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
  text-transform: none;
}

.special-cta .button:hover {
background:#af58a9!important;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.cta-buttons .special-cta,
.cta-buttons .special-call-now {
  flex-shrink: 0;
}


.button:hover {
  background: #ff9800;
  color: #fff;
}

.button.secondary {
  background: white;
  color: var(--global-palette4, #2D3748);;
  font-size: var(--global-kb-font-size-sm, 1.25rem);
  margin-top: 1rem;
}