﻿/* =========================================================
   駐站創作者頁專用 CSS
========================================================= */


/* =========================
   頁面
========================= */

.creators-page {
    position: relative;

    min-height: 100vh;

    margin: 0;

    background: #f5f0ec;

    color: #554a44;
}


/* =========================
   背景
========================= */

.rc-background {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -2;

    background-image:
        url("images/creators-bg.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


.rc-overlay {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;

    background:
        rgba(248, 244, 240, 0.88);
}


/* =========================
   主內容
========================= */

.rc-main {
    width: 90%;

    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;

    padding-top: 160px;
    padding-bottom: 130px;
}


/* =========================
   標題
========================= */

.rc-header {
    width: 100%;

    margin-bottom: 75px;

    text-align: center;
}


.rc-eyebrow {
    margin: 0 0 15px;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    letter-spacing: 0.34em;

    color: #a4958d;
}


.rc-header h1 {
    margin: 0 0 20px;

    font-size: 48px;

    font-weight: 400;

    letter-spacing: 0.12em;

    color: #574c46;
}


.rc-subtitle {
    margin: 0;

    font-size: 13px;

    line-height: 2;

    letter-spacing: 0.15em;

    color: #8d817a;
}


/* =========================================================
   每一排
========================================================= */

.rc-row {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: flex-start;
}


/* =========================
   第一排 3 人
========================= */

.rc-row-three {
    gap: 36px;

    margin-bottom: 75px;
}


.rc-row-three .rc-card {
    width: 30%;

    max-width: 340px;
}


/* =========================
   第二排 4 人
========================= */

.rc-row-four {
    gap: 26px;
}


.rc-row-four .rc-card {
    width: 22.5%;

    max-width: 280px;
}


/* =========================================================
   單張卡片
========================================================= */

.rc-card {
    display: block;

    flex-shrink: 0;

    min-width: 0;
}


/* =========================================================
   3:4 圖片
========================================================= */

.rc-photo {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    background: #ebe5e0;

    text-decoration: none;

    box-shadow:
        0 18px 46px
        rgba(62, 49, 43, 0.10);
}


/* 3:4 比例 */

.rc-photo::before {
    content: "";

    display: block;

    width: 100%;

    padding-top: 133.333%;
}


.rc-photo img {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover;

    border: 0;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* =========================================================
   TOUCHIE 文字
========================================================= */

.rc-touchie {
    position: absolute;

    left: 50%;
    bottom: 24px;

    z-index: 5;

    transform:
        translateX(-50%);

    opacity: 0;

    white-space: nowrap;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 0.22em;

    color: #ffffff;

    transition:
        opacity 0.3s ease;
}


/* 圖片暗化 */

.rc-photo:hover img {
    transform: scale(1.035);

    filter: brightness(0.72);
}


.rc-photo:hover .rc-touchie {
    opacity: 1;
}


/* =========================================================
   文字資料
========================================================= */

.rc-info {
    padding-top: 19px;
}


.rc-number {
    margin: 0 0 8px;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 0.28em;

    color: #aa9c94;
}


.rc-info h2 {
    margin: 0 0 11px;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.55;

    letter-spacing: 0.1em;

    color: #574c46;
}


.rc-description {
    margin: 0;

    font-size: 11px;

    line-height: 1.95;

    letter-spacing: 0.05em;

    color: #8b8079;
}


/* =========================================================
   平板
========================================================= */

@media screen and (max-width: 900px) {

    .rc-main {
        width: 88%;

        padding-top: 135px;
    }


    .rc-row {
        flex-wrap: wrap;

        gap: 45px 24px;
    }


    .rc-row-three {
        margin-bottom: 45px;
    }


    .rc-row-three .rc-card,
    .rc-row-four .rc-card {
        width: 46%;

        max-width: none;
    }

}


/* =========================================================
   手機
========================================================= */

@media screen and (max-width: 600px) {

    .rc-main {
        width: 90%;

        padding-top: 125px;
        padding-bottom: 100px;
    }


    .rc-header {
        margin-bottom: 48px;
    }


    .rc-header h1 {
        font-size: 34px;
    }


    .rc-subtitle {
        font-size: 11px;
    }


    .rc-row {
        gap: 38px 14px;
    }


    .rc-row-three {
        margin-bottom: 38px;
    }


    .rc-row-three .rc-card,
    .rc-row-four .rc-card {
        width: 47%;
    }


    .rc-info {
        padding-top: 13px;
    }


    .rc-info h2 {
        font-size: 13px;
    }


    .rc-description {
        font-size: 9px;
    }


    .rc-touchie {
        bottom: 12px;

        opacity: 0.85;

        font-size: 6px;

        letter-spacing: 0.16em;
    }

}