@media screen and (min-width: 631px) {
    .columns-area {
        max-width: 100%;
    }

    .column {
        flex: 1 1 100%;
        min-width: 300px;
    }
}

/* Use underlines for links */
a.status-link:not(.mention) {text-decoration: underline;}

/* Changes the 'Show anyway' and 'Hide post' text under Content Warnings to instead be a
* 'show/hide' toggle. 
*/
.content-warning .link-button span {
 font-size:0;
}

.content-warning .link-button span::after {
  content: "Show/Hide";
  font-size: 14px;
  display: inline;
}

/* Changes the alert symbol (A ! inside a triangle) for adding a content warning to a toot to instead just read 'CW' */

.compose-form__buttons button[aria-label$="content warning"] svg {
        display: none;
}
    
.compose-form__buttons button[aria-label$="content warning"]::before {
        display: flex;
        content: 'CW';
        min-width: 20px;
        min-height: 20px;
        align-items: center;
        justify-content: center;
}

/* make content wrappers gay again */

.content-warning::before,
.content-warning::after,
.compose-form .spoiler-input__border {
    background: linear-gradient(
        to bottom,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 154, 0, 1) 10%,
        rgba(208, 222, 33, 1) 20%,
rgba(79, 220, 74, 1) 30%,
rgba(63, 218, 216, 1) 40%,
rgba(47, 201, 226, 1) 50%,
rgba(28, 127, 238, 1) 60%,
        rgba(95, 21, 242, 1) 70%,
        rgba(186, 12, 248, 1) 80%,
        rgba(251, 7, 217, 1) 90%,
        rgba(255, 0, 0, 1) 100%
    );
}

/* Removes the 'hazard' strip from the account warning notification when viewing a report */
.account-card__warning-badge {
    background: none;
}

