/* Base styles */
.text-box-snippet {
    background-color: #eee;
    padding: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.snippet-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

/* Side alignment */
.left {
    float: left;
    margin-right: 15px;
}

.right {
    float: right;
    margin-left: 15px;
}

/* Width sizes */
.third {
    width: 33.33%;
}

.half {
    width: 50%;
}

.two-thirds {
    width: 66.66%;
}

.full {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .left, .right {
        float: none;
        margin: 0 auto 15px auto;
    }

    .third, .half, .two-thirds, .full {
        width: 100% !important;
    }

    .text-box-snippet {
        margin: 0 10px 15px 10px;
    }
}
