.elementor-4715 .elementor-element.elementor-element-b709076{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:150px;--padding-bottom:100px;--padding-left:200px;--padding-right:200px;}.elementor-4715 .elementor-element.elementor-element-b709076:not(.elementor-motion-effects-element-type-background), .elementor-4715 .elementor-element.elementor-element-b709076 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://wraithstudios.visiondesigning.com/wp-content/uploads/2026/02/Rectangle-68.png");background-position:center center;background-size:cover;}.elementor-4715 .elementor-element.elementor-element-9970bed{text-align:center;}.elementor-4715 .elementor-element.elementor-element-9970bed .elementor-heading-title{font-family:"Space Grotesk", Sans-serif;text-transform:uppercase;color:#6F308B;}.elementor-4715 .elementor-element.elementor-element-a17ea0e > .elementor-widget-container{padding:0px 0px 50px 0px;}.elementor-4715 .elementor-element.elementor-element-a17ea0e{text-align:center;}.elementor-4715 .elementor-element.elementor-element-60feb00{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:250px;--padding-left:0px;--padding-right:0px;}.elementor-4715 .elementor-element.elementor-element-60feb00:not(.elementor-motion-effects-element-type-background), .elementor-4715 .elementor-element.elementor-element-60feb00 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://wraithstudios.visiondesigning.com/wp-content/uploads/2026/02/Rectangle-80.png");background-position:center center;background-size:cover;}@media(max-width:767px){.elementor-4715 .elementor-element.elementor-element-b709076{--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-4715 .elementor-element.elementor-element-a17ea0e .elementor-heading-title{font-size:16px;}.elementor-4715 .elementor-element.elementor-element-60feb00{--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}}/* Start custom CSS for html, class: .elementor-element-d709d09 *//* --- Variables & Reset --- */
:root {
  --primary-purple: #7b2cbf; /* Adjust to match your exact purple */
  --text-dark: #111111;
  --text-grey: #555555;
  --bg-color: #f4f4f4;
  --card-radius: 6px;
}



/* --- Grid Layout --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card Base Styles --- */
.card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
}

/* --- Standard Card Images --- */
.card-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Card Content --- */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  margin-top: 0;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- Button Style --- */
.btn-purple {
  display: inline-block;
  background-color: var(--primary-purple);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: auto; /* Pushes button to bottom */
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #5a189a;
}

/* --- Featured Card (Top Right) --- */
.featured-card {
  grid-column: span 2; /* Spans 2 columns */
  position: relative;
  min-height: 380px;
  color: white;
  justify-content: center;
}

/* Background Image for Featured Card */
.featured-card .bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Gradient Overlay */
.featured-card .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

/* Content over Overlay */
.featured-card .card-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  max-width: 70%; /* Restrict text width */
  justify-content: center;
}

.featured-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.featured-card .separator {
  width: 50px;
  height: 2px;
  background-color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

.featured-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 25px;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Stack everything */
  }
  
  .featured-card {
    grid-column: span 1;
    min-height: 300px;
  }
  
  .featured-card .card-content {
    max-width: 100%;
  }
}


/* 1. The Card: Turn Purple on Hover */
.card {
    transition: background-color 0.3s ease;
}

.card:hover {
    background-color: #6a0dad; /* Your Purple */
}

/* 2. The Text: Turn White when Card is Hovered */
.card:hover h3, 
.card:hover p {
    color: #ffffff !important;
}

/* 3. The Button: Turn Black & White Text when Card is Hovered */
.card:hover .btn-purple {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    transition: all 0.3s ease;
}

/* 4. Smooth Transition for the Button */
.btn-purple {
    transition: all 0.3s ease;
}/* End custom CSS */