.news-category
を position: absolute;
で底辺を基準として配置すればいいでしょう。
scss
1/* 前略 */
2
3.news-content-card {
4 background: $WHITE;
5 border-radius: 12px;
6 max-width: 330px;
7 margin: 0 32px 32px 0;
8 box-shadow: 0px 4px 24px rgba($RICH_BLACK, 0.15);
9 transition: all 0.2s;
10 display: block;
11 position: relative; /* 追加 */
12
13/* 中略 */
14
15.news-category {
16 font-weight: bold;
17 font-size: 16px;
18 line-height: 16px;
19 color: $SPANISH_GRAY;
20 position: absolute; /* 追加 */
21 bottom: 3px; /* 追加 数値は調整してください */
22}