.pt-wrapper-a4d793cd {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    width: 100%;
}

.pt-item-a4d793cd {
    flex: 1 1 0;
    text-align: center;
    position: relative;
    min-width: 0; /* prevents flex blowout */
}

/* Glowing Icon Ring */
.pt-icon-wrap-a4d793cd {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(15, 23, 42, 0.6); /* Default dark base */
    border: 1px solid;
    transition: all 0.3s ease;
}

/* Inner faint ring */
.pt-icon-wrap-a4d793cd::before {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.5;
}

.pt-icon-a4d793cd {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography Defaults */
.pt-title-a4d793cd {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.pt-desc-a4d793cd {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Connectors */
.pt-connector-a4d793cd {
    position: absolute;
    right: -15px; /* Half of the container gap roughly */
    transform: translate(50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .pt-wrapper-a4d793cd {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pt-item-a4d793cd {
        flex: 1 1 40%; /* 2 items per row on tablet */
        margin-bottom: 40px;
    }
    /* Hide connectors on wrapping layouts as they misalign */
    .pt-connector-a4d793cd {
        display: none;
    }
}

@media (max-width: 767px) {
    .pt-item-a4d793cd {
        flex: 1 1 100%; /* 1 item per row on mobile */
    }
}