.founders-trustees-page-banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.trustee-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.trustee-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.trustee-card-image img {
    width: 80%;
    max-width: 260px;
    height: auto;
    border-radius: 20px;
    border: 1px solid #dcdcdc;
}

.trustee-card h3 {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 20px;
}

.trustee-card p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.6;
}

.trustee-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #18386c;
}

.trustee-card a img {
    width: 22px;
    height: 22px;
}

.profile_share{border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 14px;
    margin: 16px 0 24px;
	padding: 12px 0;}
	
	/* 1. Base style for all share links */
a[aria-label^="Share on"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Adjust icon size here */
    text-decoration: none;
    margin:0px; /* Adds space between icons */
    color: #666666; /* Default neutral gray icon color */
    
    /* The Magic Rule: Smoothly morph color over 0.3 seconds */
    transition: color 0.3s ease-in-out, transform 0.2s ease;
}

/* 2. Brand-specific color changes on hover */
a[aria-label="Share on Facebook"]:hover {
    color: #1877F2; /* Official Facebook Blue */
}

a[aria-label="Share on X"]:hover {
    color: #000000; /* X Black */
}

a[aria-label="Share on LinkedIn"]:hover {
    color: #0077B5; /* Official LinkedIn Blue */
}

a[aria-label="Share on WhatsApp"]:hover {
    color: #25D366; /* Official WhatsApp Green */
}

a[aria-label="Share on Telegram"]:hover {
    color: #24A1DE; /* Official Telegram Blue */
}

/* 3. Subtle lift effect when hovering */
a[aria-label^="Share on"]:hover {
    transform: translateY(-3px);
}
@media (max-width: 1199px) {
    .trustee-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .trustee-grid {
        grid-template-columns: 1fr;
    }
}
