/**
 * SEG Frame Size & Information CSS
 */

.seg-frame-info,
.seg-frame-info * {
    box-sizing: border-box;
}

.seg-frame-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
    font-family: inherit;
    color: #333;
    width: 100%;
}

.seg-frame-left {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.seg-measure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #f9f9f9;
    padding: 15px 10px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    height: 100%;
}

.seg-measure:hover {
    transform: translateY(-2px);
}

.seg-measure img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
    opacity: 0.8;
    max-width: 100%;
}

.seg-measure span {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: #666;
}

.seg-frame-right {
    flex: 1 1 300px;
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.seg-frame-right:only-child {
    border-left: none;
    padding-left: 0;
}

.seg-frame-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seg-frame-right li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.seg-frame-right li:last-child {
    border-bottom: none;
}

.seg-frame-right li strong {
    font-weight: 600;
    color: #000;
    margin-right: 10px;
}

.seg-frame-right li span {
    text-align: right;
}

/* Responsive */
@media (max-width: 850px) {
    .seg-frame-info {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .seg-frame-info {
        flex-direction: column;
        gap: 25px;
        padding: 20px 0;
    }

    .seg-frame-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 25px;
        flex-basis: auto;
        width: 100%;
    }
    
    .seg-frame-left {
        flex-basis: auto;
        width: 100%;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .seg-frame-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .seg-measure {
        padding: 10px 5px;
    }
    
    .seg-measure img {
        width: 40px;
    }
    
    .seg-measure span {
        font-size: 12px;
    }
}
