.section-header {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 8px 0 8px 13px;
    gap: 10px;

    width: 720px;
    height: 36px;

    border-left: 4px solid #0074E1;
}

.section-header-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.03em;
}

.section-header .link-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    isolation: isolate;

    width: auto;
    height: 30px;

    background: #FFFFFF;
    border: 1px solid #0074E1;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    color: #0074E1;
    line-height: 2px;
}

.section-header .link-btn::after {
    content: '';
    position: relative;
    left: 10px;
    border: solid #0074E1;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 1px;
    transform: rotate(-45deg);
}

.section-header .link-btn:hover {
    background: #0074E1;
    color: #FFFFFF;
    text-decoration: none;
}

.section-header .link-btn:hover::after {
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
}