/* MODERN MASTER BLOCKQUOTE & CITE */
blockquote {
    position: relative;
    margin: 24px 0;
    padding: 20px 28px;
    background-color: #ffffff; /* Temiz beyaz arka plan */
    border: 1px solid #e2e8f0; /* master-100'e yakın ince kenarlık */
    border-left: 4px solid #3b82f6; /* master-blue vurgusu */
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Üzerine gelince master-blue derinliği artsın */
blockquote:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

/* Alıntı Metni Stili */
blockquote p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569; /* Slate-600 */
    font-style: italic;
    font-weight: 500;
}

/* Cite (Kaynak/Yazar) Stili */
blockquote cite {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a; /* master-900 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Cite içindeki linkler */
blockquote cite a {
    color: #3b82f6; /* master-blue */
    text-decoration: none;
    transition: opacity 0.2s;
}

blockquote cite a:hover {
    opacity: 0.8;
}

/* Dekoratif Tırnak İşareti Süsü (Opsiyonel) */
blockquote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #3b82f6; /* master-blue */
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}