/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1778342180
Updated: 2026-05-10 00:56:20

*/

/* 스타일 1: 세련된 따옴표 디자인 */
blockquote {
    position: relative;
    border: none; /* 테두리 제거 */
    background: #f9f9f9; /* 아주 연한 회색 배경 */
    font-size: 22px;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    padding: 40px 30px; /* 따옴표 공간 확보를 위해 여백 증가 */
    margin: 2em 0;
    border-radius: 12px; /* 모서리를 둥글게 하여 부드러운 느낌 */
}

/* 앞쪽 따옴표 */
blockquote::before {
    content: "\201C"; /* 여는 따옴표 유니코드 */
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #ccc;
    font-family: Georgia, serif;
    line-height: 1;
}

/* 뒤쪽 따옴표 */
blockquote::after {
    content: "\201D"; /* 닫는 따옴표 유니코드 */
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 60px;
    color: #ccc;
    font-family: Georgia, serif;
    line-height: 1;
}
/* 모바일 화면에서는 글자 크기를 살짝 줄임 */
@media (max-width: 768px) {
    blockquote {
        font-size: 20px;
        padding: 30px 20px;
    }
}