/* =====================================================================
   Crista Elements – Footer Contact Info Widget
   ===================================================================== */

.cfci-wrap {
    box-sizing: border-box;
}

/* Remove default list styles */
.cfci-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each row: icon on the left, content on the right */
.cfci-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    /* gap handled by margin-right on .cfci-icon via Elementor control */
    transition: background-color 0.25s ease;
    box-sizing: border-box;
}

/* Icon container */
.cfci-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-right: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: background-color 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.cfci-icon i {
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
}

.cfci-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Right-side text block */
.cfci-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Label (small descriptor above the value) */
.cfci-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
    line-height: 1.3;
}

/* Main value (email / phone / address) */
.cfci-text {
    display: block;
    color: #ffffff;
    line-height: 1.5;
    word-break: break-word;
}

.cfci-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cfci-text a:hover {
    text-decoration: underline;
}