/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Description: Twenty Twenty-One Child Theme
Author: the WordPress team
Author URI: https://wordpress.org/
Template: twentytwentyone
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentychild
Tags:two-columns, left-sidebar, right-sidebar, light, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/
.experience-block-content h2 a{
	color:#fff;
}
.share-wrapper {
    position: relative;
}

/* Button */
.share-area {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

/* Popup */
.share-popup {
    position: absolute;
    top: 50px;
    right: 0;
    width: 260px;
    padding: 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);

    transition: all 0.35s ease;
    z-index: 999;
}

.share-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Title */
.share-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Icons */
.share-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.share-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #333;

    transition: all 0.25s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.share-icons a:hover {
    transform: translateY(-4px) scale(1.1);
}

/* Copy box */
.copy-link-box {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.copy-link-box input {
    flex: 1;
    border: none;
    padding: 8px;
    font-size: 12px;
    outline: none;
}

.copy-link-box button {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

/* Mobile bottom sheet */
@media(max-width:768px){
    .share-popup {
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        width: 100%;

        border-radius: 16px 16px 0 0;

        transform: translateY(100%);
    }

    .share-popup.active {
        transform: translateY(0);
    }
}