/*
Theme Name: 万方DOI期刊主题
Theme URI: https://www.example.com/
Description: 万方DOI期刊网站WordPress主题，基于Tailwind CSS构建
Version: 1.0.0
Author: 开发者
Author URI: https://www.example.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanfang-doi
Tags: journal, academic, publication, responsive, tailwindcss

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Tailwind CSS utilities */
.content-auto {
    content-visibility: auto;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.gradient-bg {
    background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
}

.sidebar-link {
    padding: 0.5rem 0.75rem;
    color: #374151;
}

.sidebar-link:hover {
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
    border-radius: 0.375rem;
    transition-colors;
}

.tab-active {
    border-bottom: 2px solid #165DFF;
    color: #165DFF;
    font-weight: 500;
}

.column-tag { background-color: white; color: #374151; border-color: #d1d5db; cursor: pointer; transition: all 0.2s ease; }
.column-tag:hover { border-color: #165DFF; color: #165DFF; }
.column-tag.active { background-color: #165DFF; color: white; border-color: #165DFF; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}