html {
    /* font-family: Helvetica, Arial, sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    /* background-color: yellow; */
}


body {
    padding: .8lh;
    margin: 0;
    font-weight: bold;
    font-size: clamp(.8rem, calc(-1 * 1rem + 3vw), 2rem);

    line-height: 1;
    letter-spacing: .01em;
    /* color: red; */

    @media (width < 600px) {
        padding: .5lh;
    }
}

/* tags */


a {
    color: currentColor;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
        color: black;
    }
}


/* classes */

.name {
    /* display: grid; */
    gap: 1lh;
    grid-template-columns: repeat(6, 1fr);
}

header {
    display: flex;
    align-items: flex-start;
    padding-bottom: .5lh;
    gap: .5lh;

}

#bio-wrap {
    display: flex;
    align-items: flex-start;

    gap: .5lh;
    width: 100%;
}

.max {
    width: 100%;

    & path {
        fill: currentColor;

    }
}

.battle {
    width: 100%;

    & path {
        fill: currentColor;

    }
}


header {
    width: 100%;
    overflow: hidden;
}

#logo-wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    /* height: 100px; */
    gap: .5lh;
}

#logo-wrap svg {
    height: 100%;
    flex-shrink: 0;
}

svg.max {
    width: var(--max-width, 50%);
}

svg.battle {
    width: calc(100% - var(--max-width, 50%) - 4px);
}










.bio1 {
    /* grid-column: span 3; */
    width: var(--max-width, 50%);
}

.bio2 {
    /* grid-column: span 3; */
    width: calc(100% - var(--max-width, 50%) - 4px);
}

p {
    margin: 0;
}

.clients {
    margin-top: 0;
    grid-column: span 3 / -1;
}

.clients dd {
    margin: 0;
    padding: 0;
}

.clients dt {
    padding-bottom: 1lh;
}

.press {
    grid-column: 1 / -1;

    & thead {
        grid-column: 1 / -1;

        @media (width < 600px) {
            display: none;

        }
    }

    & tbody {
        grid-column: 1 / -1;
        gap: .5lh;

    }

    & tr {
        grid-column: 1 / -1;
        display: grid;

        grid-template-columns: 1fr 1fr;

        &:hover .col-link a {
            text-decoration: underline;
        }


    }

    & th {
        text-align: left;
        padding-bottom: 1lh;
    }

    & th,
    td {
        vertical-align: top;
    }
}


.press tr {

    @media (width < 600px) {
        grid-template-columns: 1fr;

        & .col-meta {
            text-indent: 1lh;
        }

    }
}


.col-year {
    grid-column: 6;
    display: none;
}

.col-client {
    &::after {
        content: ", ";
    }
}

.col-artist {
    &::after {
        content: ", ";
    }
}

.col-outlet {
    /* grid-column: 3 / 4; */
}

.col-meta {
    padding-left: .25lh;
}

.col-link {
    text-indent: -2.5lh;
    padding-left: 2.5lh;
    grid-row: -1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: .25lh;

}

table {
    counter-reset: row-counter;
}

tbody tr {
    counter-increment: row-counter;
}

tbody tr td.col-link::before {
    content: counter(row-counter, decimal-leading-zero) " ";
}