.rack-descriptions_back{
    padding: 1rem 5vw;
    background-color: hsl(0, 0%, 95%);
    border-bottom: 1px solid hsl(0, 0%, 90%);
    .wrapper{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 1200px;
        line-height: 1;
        margin: 0 auto;
        align-items: center;
        font-size: 1.2rem;
        .back-link{
            color: black;
        }
        svg{
            fill: black;
        }
        current{
            color: black;
        }
    }
}
.rack-descriptions_header{
    padding: 7rem 5vw;
    .wrapper{
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        gap: 3rem;
        line-height: 1;
        .text{
            .page-title{
                font-size: 3rem;
                margin-bottom: 2rem;
            }
            .desc{
                line-height: 1.7;
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            .cta{
                .cta-desc{
                    display: block;
                    margin-bottom: 1rem;
                    line-height: 1.5;
                }
                .cta-link{
                    box-shadow: 0 2px 5px hsl(0, 0%, 0%, 0.4);
                    display: flex;
                    align-items: center;
                    background-color: hsl(200, 100%, 45%);
                    width: fit-content;
                    .link{
                        color: white;
                        padding: 1.25rem 2rem;
                        transition: 0.1s;
                        &:hover{
                            background-color: hsl(200, 100%, 40%);
                        }
                    }
                    .copy{
                        background-color: hsl(200, 100%, 35%);
                        padding: 1rem;
                        width: 1.5rem;
                        height: 1.5rem;
                        transition: 0.1s;
                        &:hover{
                            cursor: pointer;
                            background-color: hsl(200, 100%, 30%);
                        }
                    }
                }
                .copy-msg{
                    display: block;
                    margin-top: 0.5rem;
                    color: white;
                    transition: 0.1s;
                    user-select: none;
                }
            }
        }
        .img{
            background-color: hsl(0, 0%, 90%);
            flex: 0 0 55%;
            aspect-ratio: 3/2;
            box-shadow: 0 2px 5px hsl(0, 0%, 0%, 0.5);
            overflow: hidden;
            img{
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }
        }
    }
    @media screen and (max-width: 1300px){
        padding: 5rem 5vw;
        .wrapper{
            max-width: 900px;
            flex-direction: column;
        }
    }
    @media screen and (max-width: 600px){
        .wrapper{
            .text{
                .page-title{
                    font-size: 2.5rem;
                }
            }
        }
    }
}
.rack-descriptions_benefits{
    padding: 5rem 5vw;
    line-height: 1;
    background-color: hsl(200, 100%, 95%);
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: 0 0 10px hsl(0, 0%, 0%, 0.4);
    .wrapper{
        max-width: 1200px;
        margin: 0 auto;
        color: white;
        position: relative;
        z-index: 1;
        .section-title{
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        .list{
            display: flex;
            list-style: none;
            gap: 2rem;
            li{
                width: 100%;
                line-height: 1.7;
                strong{
                    font-size: 1.1rem;
                }
            }
        }
    }
    &::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: hsla(200, 100%, 25%, 0.8);
    }
    @media screen and (max-width: 1100px){
        .wrapper{
            .list{
                flex-direction: column;
            }
        }
    }
    @media screen and (max-width: 600px){
        .wrapper{
            .section-title{
                font-size: 2rem;
            }
        }
    }
}
.rack-descriptions_description{
    padding: 7rem 5vw;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    .wrapper{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 3rem;
        align-items: center;
        .img{
            background-color: hsl(0, 0%, 90%);
            flex: 0 0 50%;
            aspect-ratio: 3/2;
            box-shadow: 0 2px 5px hsl(0, 0%, 0%, 0.3);
            overflow: hidden;
            img{
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }
        }
        .text{
            .section-title{
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
            .desc{
                line-height: 1.7;
                font-size: 1rem;
            }
        }
        &.-reversed{
            flex-direction: row-reverse;
        }
    }
    @media screen and (max-width: 1000px){
        padding: 5rem 5vw;
        gap: 6rem;
        .wrapper{
            flex-direction: column;
            .img{
                aspect-ratio: 16/9;
            }
        }
        .wrapper.-reversed{
            flex-direction: column;
        }
    }
    @media screen and (max-width: 600px){
        .wrapper{
            .text{
                .section-title{
                    font-size: 1.8rem;
                }
            }
        }
    }
}