/**
 * Cpunk Astra House Custom Tools - Frontend Styles
 * Global styles for all blocks
 */

/* Base plugin styles */
.cpunk-block {
    position: relative;
    margin: 20px 0;
}

.cpunk-block * {
    box-sizing: border-box;
}

/* Utility classes */
.cpunk-hidden {
    display: none !important;
}

.cpunk-text-center {
    text-align: center;
}

.cpunk-text-left {
    text-align: left;
}

.cpunk-text-right {
    text-align: right;
}

.cpunk-clearfix::after {
    content: "";
    display: table;
    clear: both;
} 