/* =================================
  Subpage 1 ('Intro') Styles
  ================================= */

/* 시안(1.jpg)의 인용구 스타일 */
.quote {
    margin: 50px auto;
    padding-left: 20px;
    border-left: 4px solid var(--main-color); /* 왼쪽 테두리 */
    background-color: transparent;
}

.quote p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0; /* 출처와 간격을 위해 p 태그의 마진은 0으로 설정 */
}

/* 인용구 출처(cite) 스타일 */
cite.quote-source {
    display: block; /* <cite> 태그를 블록 요소로 만듭니다 */
    margin-top: 15px;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-style: normal; /* 기울임꼴 기본 스타일 제거 */
}

/* subpage.css의 figure 스타일보다 우선 적용되도록 
  figure.content-illust 선택자를 사용합니다. 
*/
figure.content-illust {
    max-width: 500px;
    margin: 100px 0 50px auto; /* margin-left: auto로 오른쪽 정렬 */
}