/* --- Blockquote Styles --- */
.post-content blockquote {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 30px 25px 25px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    z-index: 1;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.post-content blockquote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, #6D63FF, #B963FF, #FF63C6, #FF637E);
    z-index: -2;
}

.post-content blockquote::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: #fff;
    border-radius: 14px;
    z-index: -1;
}

/* --- Share Buttons --- */
.viralgrid-button-wrapper {
    display: flex;
    gap: 10px;
    margin: 0;
}

.share-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 25px;
}

.share-label {
    font-size: 0.9em;
    font-weight: 600;
    color: #555;
    margin-right: 5px;
    text-transform: uppercase;
}

.viralgrid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    min-height: 38px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.viralgrid-btn:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
}
.viralgrid-btn svg {
    width: 16px;
    height: 16px;
}

/* Share button colors & sizing */
.share-fb, .share-wa, .share-tw {
    width: 38px;
    height: 38px;
    padding: 8px;
}
.share-fb svg { fill: #fff; }
.share-wa svg { fill: #fff; }
.share-tw svg { fill: #fff; }

.share-fb { background: #3B5998; }
.share-wa { background: #4CAF50; }
.share-tw { background: #55ACEE; }

/* Copy button */
.copy-btn {
    background: linear-gradient(140deg, #F9894F 0%, #E85A5A 100%);
    box-shadow: 0 4px 10px rgba(232, 90, 90, 0.4);
    padding: 8px 20px;
    height: 38px;
    box-sizing: border-box;
    border-radius: 10px;
}
.copy-btn span { color: #fff; }

/* --- Mobile Styles for Share --- */
@media (max-width: 600px) {
    .share-wrapper {
        padding-left: 15px; 
        padding-right: 15px;
        gap: 8px;
    }
    
    .post-content blockquote {
        padding: 25px 20px 20px 20px;
        font-size: 1.1em;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
    .post-content blockquote::after {
        border-radius: 0;
    }

    .viralgrid-btn {
        min-height: 36px;
        font-size: 0.85em;
    }
    /* Specific mobile sizing for share buttons */
    .share-fb, .share-wa, .share-tw {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .copy-btn {
        padding: 6px 14px;
        height: 36px;
    }
    .viralgrid-btn svg {
        width: 14px;
        height: 14px;
    }
}