/*
Theme Name: generatepress-cafe24
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://tomusborne.com
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
*/

/* 블로그 전체 글자 크기 줄이기 */
body {
    font-size: 14px; /* 기본 글자 크기를 14px로 줄임 (원하는 크기로 수정) */
    line-height: 1.6; /* 줄 간격도 적절히 조절 */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold; /* 볼드 유지 */
    line-height: 1.2; /* 제목 간격 조정 */
}

/* 크기 조정 (필요에 따라 수정) */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }


/* 본문 텍스트 크기 */
p {
    font-size: 14px;
}

/* 기본 스타일: 연한 회색 보더와 패딩 추가 */
.link-border-effect {
    display: inline-block; /* 인라인 블록으로 설정 */
    text-decoration: none; /* 밑줄 제거 */
    color: inherit; /* 부모 요소의 글자색 유지 */
    border: 1px solid #d3d3d3; /* 연한 회색 보더 */
    border-radius: 4px; /* 둥근 모서리 */
    padding: 5px 10px; /* 보더와 텍스트 사이 간격 */
    transition: border-color 0.3s ease, background-color 0.3s ease; /* 부드러운 애니메이션 */
}

/* 호버 시 보더와 배경 강조 */
.link-border-effect:hover {
    border-color: #007BFF; /* 보더 컬러 강조 (파란색) */
    background-color: rgba(0, 123, 255, 0.1); /* 약간의 파란 배경 */
    text-decoration: none; /* 링크 밑줄 유지 방지 */
}

/* 클릭(active) 상태 스타일 */
.link-border-effect:active {
    border-color: #0056b3; /* 보더 색상 더 진하게 */
    background-color: rgba(0, 86, 179, 0.2); /* 진한 배경 */
}

