.business-staff{
    display: flex;
    justify-content: space-evenly;
}

.business-staff .staff-member-director{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 550px) {
    .business-staff .staff-member-director{
        flex-direction: column;
    }
}

.business-staff .staff-member-director .staff-image, 
.business-staff .staff-member-director .sptp-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50%;
    height: 300px;
}

.business-staff .staff-member-director .director-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 10px;
}

.business-staff-members{
    display: flex;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-block: 2rem;
}

.business-staff-members .staff-member{
    background-color: white;
    padding: 1rem;
    width: 90%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.board-staff .staff-member {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.member-data {
    padding-inline: 10px;
    flex: 1;
    width: 100%;
}
.board-staff .staff-member .member-footer-card{
    align-self: flex-end;
}
.board-staff .staff-member .member-footer-card i,
.board-staff .staff-member-director .member-footer-card i{
	color:white;
}
#business-staff .sptp-member-name .sptp-name,
#business-staff-members .sptp-member-name .sptp-name {
    margin: 0 !important;
    padding-inline: 10px;
    padding-block: 5px;
    font-size: 1rem;
}

#business-staff .sptp-member-section .sptp-section-text,
#business-staff-members .sptp-member-section .sptp-section-text {
    margin-bottom: 0;
}
.board-staff .sptp-member-bio p {
    margin-bottom: 0;
}

.board-staff .sptp-member-position .sptp-profession-text,
.board-staff .sptp-member-section .sptp-section-text,
.board-staff .sptp-member-bio p {
    margin-top: .8rem;
    font-size: 1rem;
    line-height: 1.25;
    color: var(--primary-color);
}

@media screen and (min-width: 768px) {
    .business-staff{
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 1300px) {
    .business-staff-members .staff-member {
        width: calc(50% - 30px);
        max-width: 450px;
    }
}

/******************************************
 * Button Styles 
 ******************************************/
.bstaff-contact-button-personal{
    text-align: center;
    margin: 10px 0 0 0;
}
.bstaff-contact-button-container {
    text-align: center;
    margin: 20px 0;
}
.bstaff-contact-button-personal .bstaff-contact-button {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.bstaff-contact-button-container .bstaff-contact-button {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bstaff-contact-button-personal .btn-style-primary,
.bstaff-contact-button-container .btn-style-primary {
    background-color: #0073aa;
    color: white;
}
.bstaff-contact-button-personal .btn-style-primary:hover,
.bstaff-contact-button-container .btn-style-primary:hover {
    background-color: #005177;
}
.bstaff-contact-button-personal .btn-style-secondary,
.bstaff-contact-button-container .btn-style-secondary {
    background-color: #6c757d;
}
.bstaff-contact-button-personal .btn-style-secondary:hover,
.bstaff-contact-button-container .btn-style-secondary:hover {
    background-color: #565e64;
}
/* Gradient */
.bstaff-contact-button-personal .btn-style-gradient,
.bstaff-contact-button-container .btn-style-gradient {
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bstaff-contact-button-personal .btn-style-gradient:hover,
.bstaff-contact-button-container .btn-style-gradient:hover {
    transform: scale(1.05);
}

/* Glass */
.bstaff-contact-button-personal .btn-style-glass,
.bstaff-contact-button-container .btn-style-glass {
    background: rgba(181, 192, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: darkblue;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.bstaff-contact-button-personal .btn-style-glass:hover,
.bstaff-contact-button-container .btn-style-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Light */
.bstaff-contact-button-personal .btn-style-light,
.bstaff-contact-button-container .btn-style-light {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #ced4da;
}
.bstaff-contact-button-personal .btn-style-light:hover,
.bstaff-contact-button-container .btn-style-light:hover {
    background-color: #e2e6ea;
}
/* Dark */
.bstaff-contact-button-personal .btn-style-dark,
.bstaff-contact-button-container .btn-style-dark {
    background-color: #343a40;
    color: white;
}
.bstaff-contact-button-personal .btn-style-dark:hover,
.bstaff-contact-button-container .btn-style-dark:hover {
    background-color: #23272b;
}

/* Neon */
.bstaff-contact-button-personal .btn-style-neon,
.bstaff-contact-button-container .btn-style-neon {
    color: #fff;
  background-color: #111;
  border: 2px solid #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  padding: 12px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}
.bstaff-contact-button-personal .btn-style-neon:hover,
.bstaff-contact-button-container .btn-style-neon:hover {
    box-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff;
} 