/* =========================================
   Contact Info List Block
   ========================================= */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--cil-row-gap, 32px);
}

.cil-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cil-icon-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background-color: var(--cil-icon-bg, #fdf0e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cil-icon-color, #e07b2a);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cil-icon-wrap:hover {
    background-color: var(--cil-icon-color, #e07b2a);
    color: #ffffff;
    transform: scale(1.06);
}

.cil-icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    stroke: currentColor;
}

/* Icons that use stroke only */
.cil-icon-wrap svg[fill="none"] {
    fill: none;
}

/* Icons that use fill only */
.cil-icon-wrap svg[fill="currentColor"] {
    stroke: none;
}

.cil-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cil-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cil-label-color, #999999);
    line-height: 1.3;
}

.cil-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--cil-value-color, #1a1a1a);
    line-height: 1.3;
    text-decoration: none;
}

a.cil-value:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* =========================================
   Mobile Responsive
   ========================================= */

@media (max-width: 600px) {
    .cil-icon-wrap {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .cil-icon-wrap svg {
        width: 26px;
        height: 26px;
    }

    .cil-value {
        font-size: 15px;
    }

    .cil-label {
        font-size: 11px;
    }
}
