/**
 * Aurora Icon Text — Layout & Base Styles
 *
 * Structural styles only. Colors, typography, spacing are controlled
 * via Elementor widget style controls (selectors).
 */

/* =========================================================================
   Grid Container
   ========================================================================= */

.aurora-it-grid {
    display: grid;
    width: 100%;
}

/* =========================================================================
   Item
   ========================================================================= */

.aurora-it-item {
    display: flex;
    flex-direction: column;
}

/* =========================================================================
   Link Wrapper (or div when no link)
   ========================================================================= */

.aurora-it-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    width: 100%;
    gap: 16px;
}

/* =========================================================================
   Icon Container (circle / box)
   ========================================================================= */

.aurora-it-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aurora-it-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aurora-it-icon svg {
    display: block;
}

/* =========================================================================
   Content Wrapper (heading + text)
   ========================================================================= */

.aurora-it-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

/* =========================================================================
   Heading
   ========================================================================= */

.aurora-it-heading {
    margin: 0;
}

/* =========================================================================
   Text
   ========================================================================= */

.aurora-it-text {
    width: 100%;
}
