.action-button {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 2.5rem auto;
    border: var(--border-width) solid var(--accent-color);
    border-radius: var(--border-radius);
    color: var(--accent-color);
    font-weight: 800;
    text-decoration: none;
    padding-right: 1em;
    /* width: 20em; */
}

.action-button-icon {
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    aspect-ratio: 1/1;
    width: calc(1em + (0.75em * 2));
    height: calc(1em + (0.75em * 2));
    margin: calc(var(--border-width) * -1);
    border: var(--border-width) solid var(--accent-color);
    font-size: 130%;
    text-align: center;
}

.action-button-label {
    min-width: 0;
    padding: 0.75em 1em;
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
}

.action-button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    font-weight: 900;
    white-space: nowrap;
    overflow-wrap: normal;
}

.action-button:hover .action-button-icon {
    background: var(--accent-color);
    color: white;
}

.boat-card {
    padding: 1rem;
    width: 100%;

    * {
        text-decoration: none;
        color: unset;
    }

    article {
        display: flex;
        flex-direction: column;
        border: var(--border-width) solid var(--accent-color);
        border-radius: 30px;

        img {
            background-color: var(--accent-color);
            border-radius: 0px;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            margin: 0;
            width: auto;
            object-fit: cover;
            aspect-ratio: 2/1;
        }

        .boat-info {
            /* align-content: center; */
            align-items: center;
            justify-content: center;
            display: flex;
            flex-direction: column;
            margin: 0;
            width: 100%;

            /* box-sizing: border-box; */
        }

        .card-action-buttons {
            display: flex;
            width: 100%;
            align-items: stretch;
            flex: 1;
            justify-content: space-between;
            padding: 0.5em 1em;

            a {
                width: 40%;
                text-align: center;
                padding: 0.3em;
                border-radius: 100px;
            }
        }
    }
}