.hyper-durability {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: 'Roboto Mono', monospace;
}

.section-description {
    text-align: center;
    margin-bottom: 20px;
}

.section-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.section-note {
    text-align: right;
}

.section-note p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.durability-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.durability-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.item-image {
    width: 100%;
    aspect-ratio: 305/313;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.item-image:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.item-image:hover img {
    transform: scale(1.3);
}

.item-content {
    width: 100%;
    text-align: left;
}

.item-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    font-family: 'Roboto Mono', monospace;
}

.item-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .durability-grid {
        flex-wrap: wrap;
    }
    
    .durability-item {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hyper-durability {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .durability-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .durability-item {
        flex: none;
        min-width: none;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .section-note {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-description p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .durability-item {
        max-width: 300px;
    }
}
