/* =========================
   ARTISTIC QUOTES PAGE
========================= */

.page-quotes-artistic .quote-featured {
    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.98),
        rgba(6,6,6,1)
    );

    border: 1px solid rgba(243,211,124,0.28);

    box-shadow:
        0 12px 34px rgba(0,0,0,0.4),
        0 0 18px rgba(243,211,124,0.12);
}

/* FEATURED GLOW */
.page-quotes-artistic .quote-glow {
    text-align: center;
    color: #f3d37c;

    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.03em;

    text-shadow:
        0 0 10px rgba(243,211,124,0.35),
        0 0 20px rgba(243,211,124,0.18),
        0 0 35px rgba(243,211,124,0.10);

    animation: quotePulse 4.5s ease-in-out infinite;
}

@keyframes quotePulse {
    0%,100% {
        text-shadow:
            0 0 8px rgba(243,211,124,0.25),
            0 0 18px rgba(243,211,124,0.12);
    }
    50% {
        text-shadow:
            0 0 14px rgba(243,211,124,0.45),
            0 0 28px rgba(243,211,124,0.20);
    }
}

/* BLOCKS */
.page-quotes-artistic .quote-block {
    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    border: 1px solid rgba(255,255,255,0.08);

    transition: all 0.25s ease;
}

.page-quotes-artistic .quote-block:hover {
    border-color: rgba(243,211,124,0.28);

    box-shadow:
        0 12px 28px rgba(0,0,0,0.35),
        0 0 12px rgba(243,211,124,0.08);
}

/* CATEGORY */
.page-quotes-artistic .quote-category {
    color: #f3d37c;
    font-weight: 700;
    margin-bottom: 16px;

    text-shadow:
        0 0 6px rgba(243,211,124,0.25);
}

/* ITEMS */
.page-quotes-artistic .quote-item {
    margin-bottom: 14px;
    padding-left: 14px;

    border-left: 2px solid rgba(243,211,124,0.18);

    color: rgba(255,255,255,0.92);
    line-height: 1.6;

    transition: all 0.2s ease;
}

.page-quotes-artistic .quote-item:last-child {
    margin-bottom: 0;
}

/* HOVER EFFECT */
.page-quotes-artistic .quote-item:hover {
    border-left-color: rgba(243,211,124,0.6);

    transform: translateX(4px);

    color: #ffffff;

    text-shadow:
        0 0 6px rgba(243,211,124,0.15);
}

/* NOTE */
.page-quotes-artistic .quote-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* =========================
   SIGNATURE QUOTE
========================= */

.signature-quote{

    position:relative;

    max-width:760px;
    margin:4rem auto;

    padding:2.2rem 2rem;

    text-align:center;

    border-radius:24px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,0.96),
            rgba(8,8,8,0.98)
        );

    border:1px solid rgba(243,211,124,0.12);

    box-shadow:
        0 18px 48px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.03);

    overflow:hidden;
}

/* GOLDEN LINE */
.signature-line{

    width:90px;
    height:2px;

    margin:0 auto 1.5rem;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(243,211,124,0.95),
            transparent
        );
}

/* QUOTE */
.signature-quote blockquote{

    margin:0;

    color:#f5f1e8;

    font-size:1.5rem;
    font-weight:600;
    line-height:1.6;

    letter-spacing:.02em;

    text-shadow:
        0 2px 10px rgba(0,0,0,.55);
}

/* AUTHOR */
.signature-author{

    margin-top:1.4rem;

    color:rgba(243,211,124,0.85);

    font-size:.82rem;
    font-weight:700;

    letter-spacing:.28em;
    text-transform:uppercase;
}

/* HOVER */
.signature-quote:hover{

    transform:translateY(-2px);

    transition:
        transform .22s ease,
        box-shadow .22s ease;

    box-shadow:
        0 24px 60px rgba(0,0,0,0.48),
        0 0 18px rgba(243,211,124,0.06);
}

/* MOBILE */
@media (max-width:768px){

    .signature-quote{

        margin:3rem auto;

        padding:1.6rem 1.2rem;

        border-radius:18px;
    }

    .signature-quote blockquote{

        font-size:1.15rem;
        line-height:1.7;
    }

    .signature-author{

        letter-spacing:.18em;
    }

}