{#
.contact-card__container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch; /* Equal height cards */
  column-gap: 2rem;
  row-gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

/* === Card Layout === */
.card__card {
  display: flex; /* Make each card a flex container */
  flex-direction: column; /* Stack children vertically */
  justify-content: space-between; /* Space between top (content) & bottom (logo) */
  align-items: flex-start;
  flex: 1 1 250px;
  margin-bottom: 1.4rem;
  padding: 1rem;
  max-width: 250px;
  width: 100%;
  box-sizing: border-box;
}

.card__img {
  overflow: hidden;
  width: 100%;
}

/* === Text Content === */

.card__text,
.card__text  *> a {
  flex-grow: 1; /* Expand to fill space */
  max-width: 245px;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  overflow-wrap: break-word;
  line-height: 1.15;
}

.card__text > * {
  margin: 0;
}

/* === Footer / LinkedIn Wrapper === */
.card__link-wrapper {
  margin-top: auto; /* Push to bottom */
  display: block;
  text-align: left;
}

.card__link {
  text-decoration: none;
  margin-right: auto;
}

.card__link--svg-wrapper {
  position: relative;
  height: 2rem;
  width: 2rem;
  border-radius: 8px;
  background: linear-gradient(
    300deg,
    #ff5500,
    #ff2d2d,
    #ff004a,
    #ff0067,
    #ff0086,
    #ff00a6,
    #ed00c5,
    #ce00e4,
    #a224ff
  );
}

.card__link .card__link--svg-wrapper span svg {
  fill: #f2f2f2;
  height: 1.2rem;
  position: absolute;
  top: 25%;
  left: 25%;
}

/* === Responsive === */
@media screen and (max-width: 767px) {
  .card-wrapper {
    justify-content: center;
  }
}
#}


.contact-card__container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
 }

 .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 2rem;
  row-gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  }
  
  .card__card {
  flex-direction: column;
  /* display: flex; */
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 1.4rem;
  padding: 0;
  max-width: 250px;
  width: 100%;
}
.card__img {
  overflow: hidden;
}

.card_card:last-child {
  margin-right: auto !important;
}

.card__text,
.card__text  *> a {
  flex-grow: 1;
  max-width: 245px;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  
}
.card__link-wrapper {
  margin-top: 1rem;
  display: block;
  text-align: left;
  }
  
.card__link {
    text-decoration: none;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
  .card-wrapper { 
    justify-content: center;
  }
}

