/* 
 * About Features Widget Styles
 */

 .wt-about-features-wrapper {
    background-color: var(--background);
    padding: 100px 0;
}

.wt-about-features-header {
    margin-bottom: 60px;
}

.wt-features-subheading {
    color: #a3a3a3;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.wt-features-heading {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-family);
    font-weight: normal;
}

.wt-features-heading .highlight {
    color: var(--primary);
    font-style: italic;
}

/* Grid layout with borders */
.wt-about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-about-feature-item {
    padding: 50px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-about-feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 25px;
}

.wt-feature-icon i {
    color: var(--primary);
}

.wt-feature-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    stroke: var(--primary);
}

.wt-feature-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-family);
    font-weight: normal;
}

.wt-feature-desc {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .wt-features-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .wt-about-features-wrapper {
        padding: 60px 0;
    }
    .wt-about-features-grid {
        grid-template-columns: 1fr;
    }
    .wt-about-feature-item {
        padding: 40px 20px;
        border-right: none !important;
    }
    .wt-features-heading {
        font-size: 32px;
    }
}
