
#title_s {
    display: inline-block;
    background-color: var(--dark);
    color: var(--light);
    margin-bottom: 12px;
    font-weight: 400;
    font-size: var(--fs-normal);
    padding: 0 20px;
    line-height: 35px;
}

#title_l {
    font-size: var(--fs-s-big);
    line-height: var(--fs-xl);
    text-align: center;
    margin: 3rem auto;
}

#title_date {
    color: var(--dark);
    font-weight: 400;
    font-size: var(--fs-xxs);
    text-align: right;
}

b {
    font-size: var(--fs-xxs-big);
    font-weight: 500;
    line-height: var(--fs-xxl);
}

p {
    font-size: var(--fs-normal-big);
    font-weight: var(--fw-400);
    line-height: var(--fs-l);
    /* 若是英文版請將 text-align: justify; 註解掉*/
    text-align: justify;
    margin: 0.25rem;
}

.txt-big {
    font-size: var(--fs-m);
}

.txt-xl {
    font-size: var(--fs-xs-big);
}

.txt-l {
    font-size: var(--fs-xs);
}

.txt-xs {
    font-size: var(--fs-normal);
}

.txt-xxs {
    font-size: var(--fs-xxs);
}

.txt-bold {
    font-weight: bold;
}

.txt-weight-500 {
    font-weight: var(--fw-500);
}

@media (min-width:768px) {
    #title_s {
        font-size: var(--fs-xs);
        padding: 0 28px;
        line-height: var(--fs-xxl);
    }

    #title_l {
        font-size: var(--fs-xl);
        line-height: var(--fs-big);
    }

    #title_date {
        font-size: var(--fs-normal);
    }

    .txt-big {
        font-size: var(--fs-l);
    }

    .txt-xl {
        font-size: var(--fs-m);
    }

    .txt-l {
        font-size: var(--fs-s);
    }

    .txt-xs {
        font-size: var(--fs-xs);
    }

    .txt-xxs {
        font-size: var(--fs-normal);
    }

}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.text-align-justify {
    text-align: justify;
}

.text-highlight {
  background-color: yellow;
  color: black;
}

.text-red {
  color: red;
}

.text-blue {
  color: blue;
}
