.wp-block-quote {
    border-left: 5px solid rgba(0, 0, 0, .05);
    padding: 0px;
    font-size: 1.2em;
    font-style: none;
    margin: 0 0 1.5em;
    position: relative;
}

/***** TEXT QUOTES ONLY *****/
.wp-block-quote:has(p) {
    /* Dotted Border Box */
    padding: 5px;
    margin: 10px auto;
    max-width: 600px;
    text-align: center;
    background: white;
    border: 2px dotted #4a90e2;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.wp-block-quote:has(p) p {
    /* Text Styling */
    font-size: 17px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 5px;
    padding-bottom: 5px;
/*     border-bottom: 1px dotted #e0e0e0; */
}

/***** IMAGES INSIDE QUOTES ONLY *****/
.wp-block-quote .wp-block-image {
    /* Clean Image Container */
    margin: 15px auto;
    text-align: center;
    max-width: 80%;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/***** SHARED BUTTON STYLES *****/
.qc-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
/*     margin-top: 15px; */
}

/* Text Quote Buttons */
.wp-block-quote:has(p) .qc-buttons-container {
    padding: 10px 0;
}

/* Image Buttons */
.wp-block-quote .wp-block-image .qc-buttons-container {
    padding: 15px 0 0;
}

/* Main Buttons */
.qc-main-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
/*     font-weight: 500; */
    cursor: pointer;
    border: none;
    transition: all 0.3s;
	line-height: normal;
}

/* Copy Button (Text Only) */
.qc-copy-btn {
	display: inline-flex;
    /* Colors */
    background: #3a7bc8; /* Darker blue */
    color: white;
/* 	padding: 8px 20px;       /* Top/Bottom: 8px, Left/Right: 20px */ */
    font-size: 18px;         /* Text size */
/*     height: 36px;            /* Total height (calculated) */ */
    min-width: 80px;         /* Minimum width */
    border-radius: 10px;     /* Fully rounded edges */
    line-height: normal;          /* Text vertical alignment */
	/* Effects */
    box-shadow: 0 3px 6px rgba(58,123,200,0.2);
    transition: all 0.3s;
}

/* Download Button (Image Only) */
.qc-download-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
}

/* Social Icons */
.qc-social-icons {
    display: flex;
    gap: 12px;
}

.qc-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}


.qc-social-icon img {
    width: 30px;  /* Actual icon size (defined in JS) */
    height: 30px; /* Maintains aspect ratio */
}

/* .whatsapp-icon { background: #25D366; }
.twitter-icon { background: #1DA1F2; }
.share-icon { background: #FF7043; }
 */
.qc-social-icon:hover {
    transform: scale(1.1);
}