.wp-block-post-terms a {
    pointer-events: none;
    /* optional */
    text-decoration: none;
    color: inherit;
}

.share-icons a {
    width: 35px;
}

.copy-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 4px 8px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
}

.footer-newsform input[type="email"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}

.drawerDescription .wp-block-heading:not(:first-child) {
    margin-top: 15px;

}

.drawerDescription .wp-block-heading {
    font-size: 1.2rem;
    font-weight: 500;

}

.drawerDescription p {
    margin-bottom: 10px;

}

.drawerDescription ul {
    margin-bottom: 10px;
}

.drawerDescription ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;

}

.drawerDescription ul li:before {
    content: "";
    position: absolute;
    background: currentColor;
    width: 5px;
    height: 5px;
    top: 8px;
    left: 0;

}


@media (hover: hover) and (pointer: fine) {
    .share-icons a:hover svg rect {
        fill: red;
    }


}

/* Form Select Field - April 06 2026  */

.form-group.custom-select .wpcf7-form-control-wrap {
    display: block;
}

.form-group.custom-select .select2-container {
    width: 100% !important;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 500;
}

.form-group.custom-select .select2-container .selection {
    display: block;
    width: 100%;
}

.form-group.custom-select .select2-container .select2-selection.select2-selection--single {
    width: 100%;
    height: 73px;
    padding: 32px 16px 10px 16px;
    border: 1px solid #dcdcdc !important;
    outline: none;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.form-group.custom-select .select2-container .select2-selection__rendered {
    line-height: 1;
    color: #1e293b;
    padding: 0 16px 0 0 !important;
}

.form-group.custom-select .select2-container .select2-selection__arrow {
    display: none;
}

@media (max-width: 767.98px) {
    .form-group.custom-select .select2-container .select2-selection.select2-selection--single {
        height: 56px;
        padding-top: 20px;
    }

    .form-group.custom-select .select2-container .select2-selection__rendered {
        font-size: 16px;
    }
}

.value-wrap{
    counter-reset: myCounter;
    .value-item{
    counter-increment: myCounter;
        &::after{
            content: counter(myCounter, decimal-leading-zero);
        }
    }
}

.insights-card-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1024px) {
    #who-we-are figure {
        position: sticky;
        top: 105px;
        align-self: flex-start;
    }
}