﻿@charset "utf-8";

/* === 通用文字基底 === */
[class^="text-"] {
    font-family: "Helvetica", "Arial", "LiHei Pro", "黑體-繁", "微軟正黑體", sans-serif;
    font-kerning: normal;
    font-weight: normal;
    line-height: 1.6;
    color: inherit;
}

/* === 標題類 === */
.text-title {
    font-size: 20px;
}

.text-title-m {
    font-size: 20px;
    margin-top: 20px;
}

.text-title-c,
.text-title-mc {
    text-align: center;
}

.text-title-mc {
    margin-top: 20px;
}

/* === 內文類 === */
.text-content {
    font-size: 15px;
}

.text-content-m {
    font-size: 15px;
    margin-top: 10px;
}

.text-content-c,
.text-content-mc {
    text-align: center;
}

.text-content-mc {
    margin-top: 10px;
}

/* === 響應式微調 === */
@media (max-width: 768px) {
    .text-title,
    .text-title-m,
    .text-title-c,
    .text-title-mc {
        font-size: 18px;
    }

    .text-content,
    .text-content-m,
    .text-content-c,
    .text-content-mc {
        font-size: 14px;
    }
}