.resete-devices {
    padding: clamp(40px, 5vw, 50px) 25px clamp(25px, 6vw, 70px) 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    background-color: var(--theme-primary-color);
    border-radius: 16px;
}
.resete-devices .heading {
    text-align: center;
    
}
.device-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 24px);
    margin: 0 auto;
    max-width: 1200px;
}
.device-grid article {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}
.device-grid a {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    color: var(--theme-text-color);
}
.device-grid .device-image {
    width: 128px;
    height: 128px;
    object-fit: contain;
}
.device-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4em;
}
.device-wrapper {
    display: block;
}
@media screen and (min-width: 768px) { 
    .device-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 1024px) {  
    .device-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
.elementor-element[data-element_type="container"]:has(.elementor-widget-custom-references),
.elementor-element[data-element_type="container"] > .e-con-inner:has(.elementor-widget-custom-references){

    max-width: 100%;
    
}