/* ========== T888 Feature Box Widget ========== */
.t888-feature-box-wrapper {
    padding: 100px 0;
}

.t888-feature-box-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 30px;
    padding: 0 52px;
}

.t888-feature-box-column {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.t888-feature-box-center {
    flex: 1 1 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.t888-feature-box-title-1 {
    font-size: 36px;
    line-height: 33px;
    font-weight: bold;
    margin-bottom: 14px;
}

.t888-feature-box-title-2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 33px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
}

.t888-feature-box-title-2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--third-color);
    display: block;
    margin: 10px auto 0 auto;
}

.t888-feature-box-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 400px;
    opacity: 0.8;
}

.t888-feature-box-button .t888-button {
    display: inline-block;
    padding-bottom: 10px;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.t888-feature-box-button .t888-button:hover {
    opacity: 0.7;
}

.t888-feature-box-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.t888-feature-box-icon {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}

.t888-feature-box-icon i {
    font-size: 48px;
    color: var(--third-color);
    border: 1px solid var(--third-color);
    display: flex;
    justify-content: center;
   align-items: center;
    min-width: 70px;
    min-height: 70px;
}

.t888-feature-box-content h3 {
 margin-top: 0;
}

.t888-feature-box-content p {
    font-size: 14px;
    line-height: 24px;
    opacity: 0.8;
    margin: 0;
}
.t888-feature-box-left .t888-feature-box-content h3{
    text-align: right;
}
.t888-feature-box-left .t888-feature-box-content p{
    text-align: right;
}
/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .t888-feature-box-container {
        flex-direction: column;
        align-items: center;
    }

    .t888-feature-box-column,
    .t888-feature-box-center {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .t888-feature-box-column {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .t888-feature-box-item {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .t888-feature-box-title-1 {
        font-size: 22px;
    }
    .t888-feature-box-title-2 {
        font-size: 16px;
    }
    .t888-feature-box-description {
        font-size: 14px;
    }
    .t888-feature-box-content h4 {
        font-size: 15px;
    }
    .t888-feature-box-content p {
        font-size: 13px;
    }
}