/**
 * Custom Heading Widget Styles
 *
 * @package CNG_Expo_Widgets
 */

/* Base Container */
.cngexpo-custom-heading {
    display: flex;
    width: 100%;
}

.cngexpo-custom-heading__text {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.cngexpo-custom-heading__line {
    display: block;
    flex-shrink: 0;
}

/* ========================================
   Style 1 - Lines on Sides
   ======================================== */
.cngexpo-custom-heading--style-1 {
    align-items: center;
}

.cngexpo-custom-heading--style-1 .cngexpo-custom-heading__line {
    flex-grow: 1;
    min-width: 20px;
}

/* Style 1 - Center Alignment (equal lines) */
.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-center .cngexpo-custom-heading__line--left,
.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-center .cngexpo-custom-heading__line--right {
    flex-grow: 1;
}

/* Style 1 - Left Alignment (only right line) */
.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-left .cngexpo-custom-heading__line--left {
    display: none;
}

.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-left .cngexpo-custom-heading__line--right {
    flex-grow: 1;
}

/* Style 1 - Right Alignment (only left line) */
.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-right .cngexpo-custom-heading__line--right {
    display: none;
}

.cngexpo-custom-heading--style-1.cngexpo-custom-heading--align-right .cngexpo-custom-heading__line--left {
    flex-grow: 1;
}

/* ========================================
   Style 2 - Line Below
   ======================================== */
.cngexpo-custom-heading--style-2 {
    flex-direction: column;
}

.cngexpo-custom-heading--style-2 .cngexpo-custom-heading__text {
    white-space: normal;
}

.cngexpo-custom-heading--style-2 .cngexpo-custom-heading__line--bottom {
    flex-shrink: 0;
}

/* Style 2 - Center Alignment */
.cngexpo-custom-heading--style-2.cngexpo-custom-heading--align-center {
    align-items: center;
    text-align: center;
}

/* Style 2 - Left Alignment */
.cngexpo-custom-heading--style-2.cngexpo-custom-heading--align-left {
    align-items: flex-start;
    text-align: left;
}

/* Style 2 - Right Alignment */
.cngexpo-custom-heading--style-2.cngexpo-custom-heading--align-right {
    align-items: flex-end;
    text-align: right;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 767px) {
    .cngexpo-custom-heading__text {
        white-space: normal;
    }
}
