.claim-templates {
    color: #252d35;
    letter-spacing: 0;
}

.claim-templates-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.claim-templates-header h1 {
    flex: 1 1 245px;
    min-width: 0;
    margin: 0;
    color: #252d35;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.claim-create-button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 305px;
    gap: 10px;
    margin-left: auto;
    max-width: 100%;
    min-height: 64px;
    padding: 18px 20px;
    border: 1px solid #10532f;
    border-radius: 6px;
    background: #17733f;
    color: #fff;
    font-family: inherit;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
}

.claim-create-button i {
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
}

.claim-create-button span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.claim-create-button:visited {
    color: #fff;
}

.claim-create-button:hover,
.claim-create-button:focus {
    background: #125c32;
    color: #fff;
    text-decoration: none;
}

.claim-create-button:focus-visible,
.claim-template-download:focus-visible {
    outline: 3px solid #133f64;
    outline-offset: 5px;
}

.claim-create-button:active {
    background: #10532f;
}

.claim-templates .claim-template-list {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.claim-template-list .claim-template-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 120px;
    align-items: center;
    gap: 18px;
    min-height: 104px;
    margin: 0;
    padding: 24px 0;
    border-bottom: 1px solid #dce2e7;
    background: none;
}

.claim-template-list .claim-template-row:last-child {
    border-bottom: 0;
}

.claim-template-icon {
    width: auto;
    color: #2773ae;
    font-size: 32px;
    line-height: 1;
    text-align: center;
}

.claim-template-description {
    min-width: 0;
    overflow-wrap: break-word;
}

.claim-template-description h2 {
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    color: #252d35;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.claim-template-description p {
    margin: 0;
    padding: 0;
    color: #66737e;
    font-size: 14px;
    line-height: 1.5;
}

.claim-template-download {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 120px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #2773ae;
    border-radius: 6px;
    background: #fff;
    color: #21659a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.claim-template-download i {
    font-size: 18px;
    line-height: 1;
}

.claim-template-download:visited {
    color: #21659a;
}

.claim-template-download:hover,
.claim-template-download:focus {
    background: #edf5fa;
    color: #174b74;
    text-decoration: none;
}

.claim-template-download:active {
    background: #deedf7;
}

@media (max-width: 520px) {
    .claim-templates-header {
        gap: 20px;
        margin-bottom: 16px;
    }

    .claim-templates-header h1 {
        font-size: 28px;
    }

    .claim-create-button {
        flex-basis: 100%;
        width: 100%;
        min-width: 0;
        padding: 18px 16px;
    }

    .claim-template-list .claim-template-row {
        grid-template-columns: 28px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
        padding: 22px 0;
    }

    .claim-template-icon {
        margin-top: 3px;
        font-size: 28px;
    }

    .claim-template-download {
        grid-column: 2;
        justify-self: end;
    }
}
