/* Founder Leadership block css */
.founder-leadership {
  width: 100%;
  background-color: var(--white);
  box-sizing: border-box;
}

.founder-leadership .wp-block-columns {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  box-sizing: border-box;
}

/* Left Column: Photo & Badge */
.founder-leadership .founder-card-col {
  flex: 0 0 45%;
  max-width: 520px;
  position: relative;
}

.founder-leadership .founder-card-abid {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.founder-leadership .founder-photo {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 550px;
  border-radius: var(--radius-card-large);
  overflow: hidden;
  margin: 0;
  z-index: 2;
  box-shadow: 0 12px 36px rgba(10, 27, 46, 0.08);
}

.founder-leadership .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-leadership .founder-info {
  position: absolute;
  bottom: 35px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 20px 14px 24px;
  background-color: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--red);
  z-index: 5;
  box-sizing: border-box;
}

.founder-leadership .founder-name {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.founder-leadership .founder-title {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* Right Column: Leadership Message */
.founder-leadership .founder-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-leadership .advanced-technology {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.founder-leadership .leadership-headline {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--dark);
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 28px 0;
}

.founder-leadership .message-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 36px 0;
}

.founder-leadership .message-content p {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Button & Arrow Hover */
.founder-leadership .founder-cta-buttons {
  margin: 0;
}

.founder-leadership .founder-cta-buttons .wp-block-button__link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  position: relative;
  background-color: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius-btn);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.founder-leadership .founder-cta-buttons .wp-block-button__link:hover {
  background-color: var(--red-hover) !important;
  color: var(--white) !important;
}

.founder-leadership .founder-cta-buttons .wp-block-button__link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.83301 15L14.1663 6.66663' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.0415 6.66663H14.1665V14.7916' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.founder-leadership .founder-cta-buttons .wp-block-button__link:hover::after {
  transform: translate(2px, -2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .founder-leadership .wp-block-columns {
    padding: 60px 24px;
    flex-direction: column-reverse;
    gap: 48px;
  }

  .founder-leadership .founder-card-col {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .founder-leadership .leadership-headline {
    font-size: 36px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .founder-leadership {
    padding: 0 !important;
    width: 100%;
  }

  .founder-leadership .wp-block-columns {
    padding: 40px 20px !important;
    flex-direction: column-reverse !important;
    gap: 32px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .founder-leadership .founder-text-col {
    width: 100% !important;
  }

  .founder-leadership .advanced-technology {
    font-size: 12px !important;
    letter-spacing: 0.24px !important;
    margin-bottom: 12px !important;
  }

  .founder-leadership .leadership-headline {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }

  .founder-leadership .message-content {
    gap: 10px !important;
    margin-bottom: 28px !important;
  }

  .founder-leadership .message-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .founder-leadership .founder-cta-buttons {
    width: 100% !important;
  }

  .founder-leadership .founder-cta-buttons .wp-block-button {
    width: 100% !important;
  }

  .founder-leadership .founder-cta-buttons .wp-block-button__link {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .founder-leadership .founder-card-col {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .founder-leadership .founder-card-abid {
    width: 100% !important;
    max-width: 320px !important;
  }

  .founder-leadership .founder-photo {
    width: 100% !important;
    max-width: 320px !important;
    height: 400px !important;
    border-radius: var(--radius-card) !important;
  }

  .founder-leadership .founder-info {
    bottom: 15px !important;
    right: 10px !important;
    padding: 10px 14px 10px 18px !important;
    max-width: 160px !important;
  }

  .founder-leadership .founder-name {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .founder-leadership .founder-title {
    font-size: 10px !important;
    letter-spacing: 0.2px !important;
    line-height: 1.5 !important;
  }
}
