[data-page="text"] p,
[data-page="power-up"] p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
}
.text-title{
    display: flex;
    font-size: 40px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #20120b;
    font-weight: 600;
    position: relative;
}
.text-title .text-hero{
    width: 150px;
    position: absolute;
    right: 0;
    top: -30px;
}
.text-wrap{
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 75px 0 100px 0;
}
.text-first-title{
    font-size: 30px;
    letter-spacing: 6px;
    line-height: 30px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 400;
}
.text-row{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.text-col-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.text-row a{
    text-decoration: underline;
    font-weight: 700;
}
.text-row a:hover{
    color: #fc932e;
}
.text-row ul{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.text-row ul li{
    padding-left: 18px;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
    position: relative;
}
.text-row ul li:before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    top: 15px;
    background: #f28c28;
    transform: translateY(-50%);
    border-radius: 50%;
}
.hero-btn{
    margin-top: auto;
}
.for-block{
    background-color: #fbf7f3;
    border-top: 1px solid rgba(51,51,51,0.21);
    border-bottom: 1px solid rgba(51,51,51,0.21);
}
.for-list{
    justify-content: space-between;
}
.banner{
    position: relative;
}
.banner .btn-white{
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
}
.articles-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}
.article-item{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}
.article-item img{
    max-width: 100%;
    object-fit: cover;
}
.article-title{
    font-size: 30px;
    letter-spacing: 6px;
    line-height: 30px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 400;
    margin-bottom: 30px;
}
.article-title-strip{
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    background-color: var(--bg);
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, .05) 0px, rgba(0, 0, 0, .05) 28px, transparent 12px, transparent 42px);
    background-size: 100% 42px;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.article-title-strip .article-title{
    margin-bottom: -30px;
}
.article-body{
    padding: 0 30px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-text{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.article-text p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #333333;
    font-weight: 400;
}
.article-text ul{
    display: flex;
    flex-direction: column;
}
.article-text ul li{
    padding-left: 18px;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
    position: relative;
}
.article-text ul li:before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    top: 15px;
    background: #f28c28;
    transform: translateY(-50%);
    border-radius: 50%;
}
.article-link{
    font-size: 18px;
    letter-spacing: 4px;
    color: #333333;
    font-weight: 400;
    margin-top: 60px;
    align-self: flex-start;
}
.article-item__media{
    display: block;
    line-height: 0;
}
.article-item .hover-link:hover{
    color: var(--accent);
}
.article-item:has(.article-item__media:hover) .hover-link{
    color: var(--accent);
}
.article-item:has(.article-item__media:hover) .hover-link::after{
    transform: scaleX(0);
}

@media (max-width: 991px){
    .article-body{
        padding: 0;
    }
    .article-item img{
        height: auto;
    }
    .article-title{
        font-size: 24px;
    }
}
@media (max-width: 767px){
    .text-col-2{
        grid-template-columns: 1fr;
    }
    .articles-wrap{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 580px){
    .text-title img{
        display: none;
    }
}
@media (max-width: 480px){
    .banner .btn-white{
        right: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}