.base-header-wrapper {
    display: flex;
}


.base-header-title h1{
    font-weight: 600;
    font-size: 62px;
    line-height: 110%;
    color: #246B6A;
}

.base-header-text{
    margin-top: 16px;
    font-size: 26px;
    line-height: 32px;
}

.base-header-text b{
    font-weight: 600;
}

.base-header-image {
    flex: none;
    margin-left: auto;
}

.base-header-image svg{
    width: 500px;
    height: auto;
}

.base-header-left{
    width: 463px;
}

.base-header{
    padding-top: 56px;
    padding-bottom: 100px;
}

.base-list{
    padding-bottom: 120px;
}

.base-item{
    display: flex;
    padding: 24px 32px;
    min-height: 234px;
    border-bottom: 1px solid #BFE87B;
}

.base-item-link{
    flex: none;
    margin-left: auto;
}

.base-item-link span{
    display: inline-flex;
    align-items: center;
    color: #246B6A;
    font-size: 26px;
    line-height: 32px;
    cursor: pointer;
    height: 56px;
    padding: 0 32px;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: border 200ms;
}

.base-item:hover .base-item-link span{
    border-color: #246B6A;
}

.base-item-link span svg{
    width: 13px;
    flex: none;
    margin-left: 16px;
}

.base-item a{
    display: flex;
    align-items: center;
    width: 100%;
}  

.base-item-photo{
    flex: none;
    margin-right: 80px;
}

.base-item-photo img{
    width: 125px;
    height: auto;
}

.base-item-label{
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px;
    color: #5C5C5C;
}

.base-item-content{
    width: 455px;
}

.base-item-name{
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    transition: opacity 200ms;
}

.base-item:hover .base-item-name{
    opacity: 0.8;
}

.base-item-footer{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.base-item-author{
    font-size: 18px;
    line-height: 130%;
}

.base-item-type{
    font-size: 14px;
    line-height: 17px;
    color: #5C5C5C;
}

.base-item-top{
    background: #BFE87B;
    border-radius: 40px;
    padding-bottom: 32px;
}

.base-item-top:hover .base-item-link span {
    border-color: #fff;
}

.base-item-top .base-item-link span {
    color: #fff;
}

.base-item-top:not(:first-child){
    margin-top: 24px;
}

.base-item-top:not(:last-child){
    margin-bottom: 24px;
}

.base-item-no{
    border: 2px solid #BFE87B;
    border-radius: 40px;
}

.base-item-no:not(:first-child){
    margin-top: 24px;
}

.base-item-no:not(:last-child){
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px){
    .base-header{
        padding: 48px 0 20px;
    }

    .base-header-left {
        width: 100%;
    }

    .base-header-title h1{
        font-size: 38px;
        line-height: 46px;
    }

    .base-header-text{
        margin-top: 8px;
        font-size: 18px;
        line-height: 22px;
    }

    .base-header-image{
        margin: 20px auto;
    }
    
    .base-header-image svg{
        max-width: 304px;
        width: 100%;
    }

    .base-header-wrapper{
        flex-direction: column;
    }

    .base-list {
        padding-bottom: 80px;
    }

    .base-item{
        padding: 32px 0;
    }

    .base-item a{
        flex-direction: column;
    }
    
    .base-item-name {
        font-size: 20px;
        line-height: 22px;
    }

    .base-item-content{
        width: 100%;
    }

    .base-item-link{
        margin: 16px 0 0 0;
    }

    .base-item-link span{
        height: auto;
        padding: 0;
        border: 0;
        text-decoration: underline;
        font-size: 16px;
        line-height: 19px;
        color: #000;
    }

    .base-item-link span svg{
        display: none;
    }

    .base-item a {
        align-items: flex-start;
    }

    .base-item-photo{
        margin: 0 0 24px;
    }

    .base-item-footer{
        margin-top: 8px;
    }

    .base-item-author {
        font-size: 16px;
        line-height: 19px;
    }

    .base-item-top{
        padding: 24px 24px 32px;
    }

    .base-item-top .base-item-link span {
        color: #000;
    }

    .base-item-no{ 
        background-color: #BFE87B;
        padding: 24px 24px 32px;
    }
} 