.takapi-front-page{
    padding-bottom:56px;
}

.takapi-feature-cards{
    display:flex;
    gap:16px;
    margin:20px 0;
}

.takapi-feature-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    display:flex;
    flex:1;
    flex-direction:column;
    padding:22px;
}

.takapi-feature-card-top{
    align-items:flex-start;
    display:flex;
    flex:1;
    gap:20px;
}

.takapi-feature-icon{
    flex-shrink:0;
}

.takapi-feature-icon svg{
    height:82px;
    width:82px;
}

.takapi-feature-title{
    color:#111;
    font-size:19px;
    font-weight:900;
    line-height:1.4;
    margin:0 0 10px;
}

.takapi-feature-text{
    color:#333;
    font-size:15px;
    line-height:1.9;
}

.takapi-feature-text p{
    margin:0;
}

.takapi-feature-button,
.takapi-notice-button{
    background:#fff;
    border:2px solid #d7e5ff;
    border-radius:6px;
    color:#2166d9;
    display:block;
    font-weight:900;
    margin-top:20px;
    padding:12px;
    text-align:center;
    text-decoration:none;
    transition:.2s;
}

.takapi-feature-button:hover,
.takapi-notice-button:hover{
    background:#f7faff;
}

.takapi-feature-button span,
.takapi-notice-button span{
    float:right;
}

.takapi-notice{
    align-items:center;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:6px;
    display:flex;
    gap:20px;
    justify-content:space-between;
    margin-top:14px;
    padding:10px 18px;
}

.takapi-notice-left{
    color:#222;
    font-size:15px;
}

.takapi-notice-title{
    font-weight:900;
    margin-right:15px;
}

.takapi-notice-arrow{
    color:#2166d9;
    margin-right:10px;
}

.takapi-notice-button{
    margin:0;
    min-width:220px;
    padding:10px 28px;
}

.takapi-news-section{
    margin-top:42px;
}

.takapi-section-head{
    align-items:center;
    display:flex;
    gap:20px;
    justify-content:space-between;
    margin-bottom:18px;
}

.takapi-section-head h2{
    border-left:5px solid #1976f3;
    color:#111;
    font-size:26px;
    font-weight:900;
    line-height:1.25;
    margin:0;
    padding-left:11px;
}

.takapi-section-head a{
    align-items:center;
    color:#111;
    display:inline-flex;
    font-size:15px;
    font-weight:900;
    gap:14px;
    text-decoration:none;
    white-space:nowrap;
}

.takapi-section-head a span{
    color:#111;
    font-size:30px;
    line-height:1;
}

.takapi-news-grid{
    display:grid;
    gap:24px;
    grid-template-columns:repeat(4, minmax(0, 1fr));
}

@media(max-width:1024px){
    .takapi-news-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:768px){
    .takapi-feature-cards{
        flex-direction:column;
    }

    .takapi-feature-card-top{
        gap:16px;
    }

    .takapi-feature-icon svg{
        height:64px;
        width:64px;
    }

    .takapi-notice{
        align-items:flex-start;
        flex-direction:column;
    }

    .takapi-notice-button{
        width:100%;
    }

    .takapi-section-head h2{
        font-size:22px;
    }

    .takapi-news-grid{
        gap:22px;
        grid-template-columns:1fr;
    }
}
