﻿
.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--color-white);
    margin-bottom: 40px;
}

.info-item-inner:before {
    content: '';
    position: absolute;
    top: 100%;
    width: 100%;
    height: 1px;
    background-color: rgb(255 255 255 / 20%);
}

.info-item-inner[last-item='True']:before {
    content: unset;
}

.info-item-inner {
    color: var(--color-white);
    position: relative;
    min-height: 110px;
    padding-bottom: 40px;
    margin-right: 3vw;
}

.info-item-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(1rem, 5vw - 0.5rem, 1.125rem);
    line-height: 1.2;
    margin-bottom: 22px;
}

.info-item-content {
    font-weight: 400;
    font-size: 1clamp(1rem, 5vw - 0.5rem, 1.125rem);
    line-height: 1.2;
}

.info-item-icon {
    background: var(--color-copper);
    color: var(--color-white);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-item-icon.info-icon-hide { display: none; }

