/*
Theme Name: Seoulous Theme
Theme URI: https://seoulous.com/
Author: Your Name
Author URI: https://seoulous.com/
Description: Seoulous | 부의 황금사다리 맞춤 제작 테마입니다.
Version: 2.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, custom-background, custom-logo, custom-menu, post-formats, threaded-comments, translation-ready
Text Domain: seoulous-theme
*/

/* Custom utility to hide scrollbars */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Card Styles */
.card-content {
    /* height 속성을 제거하여 flex-grow가 남은 공간을 모두 채우도록 함 */
    display: flex;
    flex-direction: column;
}
.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.5rem; /* 2줄 높이에 맞게 조정 */
    line-height: 1.75rem;
}
.card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 더 커진 공간에 맞게 요약 최대 4줄로 늘림 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}