/* Share Buttons Carousel Slider */
.share-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: calc(100% - 200px);
}

.share-buttons-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    flex: 1;
}

.share-buttons-slider::-webkit-scrollbar {
    display: none;
}

.share-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
    flex-shrink: 0;
}

.share-slider-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(var(--color-primary-rgb), 0.4);
}

.share-slider-arrow:active {
    transform: scale(0.95);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px !important;
    padding: 14px 24px !important;
    border-radius: 14px;
    min-width: 140px;
    flex-shrink: 0;
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.share-btn i {
    font-size: 22px !important;
    flex-shrink: 0;
}

.share-btn span {
    font-size: 15px !important;
    font-weight: 700;
    white-space: nowrap;
}

.post-share strong .fa-duotone {
    font-size: 22px;
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    --fa-primary-color: var(--color-primary);
    --fa-secondary-color: var(--color-secondary);
    --fa-secondary-opacity: 0.6;
}

/* Premium Tags Section Matching Share Buttons */
.post-tags {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 2px solid #f1f5f9 !important;
}

.tags-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.tags-wrapper strong {
    font-size: 18px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.tags-wrapper strong .fa-duotone {
    font-size: 22px;
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    --fa-primary-color: var(--color-primary);
    --fa-secondary-color: var(--color-secondary);
    --fa-secondary-opacity: 0.6;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.25);
}

.tag-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.35);
}

/* ============================================
   MOBILE SHARE BUTTONS - 3 PER ROW GRID
   ============================================ */
@media (max-width: 768px) {

    /* Container */
    .post-share {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px !important;
    }

    /* Title on top */
    .post-share>strong {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    /* Hide arrows */
    .share-slider-arrow {
        display: none !important;
    }

    /* Slider wrapper full width */
    .share-slider-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    /* Grid 3 columns */
    .share-buttons-slider {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    /* Each button */
    .share-buttons-slider .share-btn {
        min-width: 0 !important;
        width: 100% !important;
        height: 48px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    }

    /* Hide text */
    .share-buttons-slider .share-btn span {
        display: none !important;
    }

    /* Icon size */
    .share-buttons-slider .share-btn i {
        font-size: 18px !important;
        margin: 0 !important;
    }

    /* Tags also stacked */
    .post-tags {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .tags-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .tags-wrapper strong {
        margin-bottom: 10px !important;
    }
}