 .share-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999
        }

        .share-overlay.active {
            display: flex
        }

        .share-modal {
            background: #fff;
            width: 90%;
            max-width: 360px;
            border-radius: 12px;
            overflow: hidden
        }

        .share-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            font-weight: 600
        }

        .share-header button {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer
        }

        .share-list {
            list-style: none;
            margin: 0;
            padding: 10px
        }

        .share-list li {
            margin-bottom: 10px
        }

        .share-list a,
        .share-list button {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding: 8px
        }

        .share-list a:hover,
        .share-list button:hover {
            background: #f5f5f5;
            border-radius: 6px
        }

        .col {
            color: #25D366
        }

        .clf {
            color: #1877F2
        }

        .fa-x-twitter {
            color: #000
        }

        .fa-link {
            color: #555
        }

        .btn-share {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer
        }

        /* Contenedor relativo */
        .card-media {
            position: relative;
        }

        /* Botón share sobre la imagen */
        .btn-share-media {
            position: absolute;
            top: 10px;
            right: 10px;

            width: 36px;
            height: 36px;
            border-radius: 50%;

            background: #FF7A45;
            border: none;

            display: flex;
            align-items: center;
            justify-content: center;

            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform .15s ease, box-shadow .15s ease;
            z-index: 5;
        }

        .btn-share-media i {
            font-size: 14px;
            color: #111;
        }

        .btn-share-media:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }