.thirds {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 0 10px;
    gap: 30px min(max(3%, 30px), 45px);
}

.third {
    width: 30%;
    min-width: min(350px, 100%);
    padding: 22px;
    background-color: rgba(var(--card-color), .66);
    flex-grow: 1;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.third>* {
    margin: 0;
}

.third>h3 {
    margin-bottom: 1em;
}

.third .button {
    display: block;
    width: max-content;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgb(var(--tag-color));
    text-decoration: none;
}

.third .button:hover {
    background: #fff;
    color: rgb(var(--tag-color));
}

.third>a {
    margin-top: 10px;
    max-width: 100%;
    word-break: break-all;
}