* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #667eea;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.logo h1 a {
    color: #667eea !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo h1 a:hover {
    opacity: 0.8;
}

.logo .tagline {
    display: none;
}

.nav {
    display: flex;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: #667eea;
}

.nav-item.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.2s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active::after {
    width: 100%;
}

.main {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    gap: 0;
    align-items: stretch;
    margin: 25px 0;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.article-image {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    flex-shrink: 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.2s ease;
    display: block;
}

.article-card:hover .article-image img {
    transform: scale(1.03);
}

.article-content-wrapper {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.article-category {
    display: inline-block;
    padding: 4px 10px;
    background: #eef2ff;
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-title:hover {
    color: #667eea;
}

.article-summary {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 14px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #9ca3af;
}

.author {
    color: #667eea;
    font-weight: 500;
}

.time::before {
    content: '⏱';
    margin-right: 4px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: #667eea;
}

.category-list .count {
    font-size: 12px;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f7fa;
    color: #666;
    font-size: 13px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.recent-list {
    list-style: none;
}

.recent-list li {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-list a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.recent-list a:hover {
    color: #667eea;
}

.recent-list .time {
    font-size: 12px;
    color: #999;
}

.footer {
    background: linear-gradient(135deg, #0f1117 0%, #1a1d29 100%);
    color: #fff;
    padding: 70px 0 30px;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul a:hover {
    color: #667eea;
    transform: translateX(4px);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.subscribe-form button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.subscribe-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #667eea;
}

.article-detail {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.article-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.article-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-detail-inner {
    padding: 40px;
}

.article-detail-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin: 40px 40px 30px 40px;
}

.article-detail-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-detail-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.author-details .author-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}

.author-details .author-bio {
    font-size: 13px;
    color: #999;
}

.article-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
}

.action-btn.primary:hover {
    opacity: 0.9;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 40px;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-related {
    margin: 40px 40px 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.article-related-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-article-card {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.related-article-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.related-article-category {
    font-size: 12px;
    color: #667eea;
}

.article-comments {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.article-comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    resize: vertical;
}

.comment-input:focus {
    border-color: #667eea;
}

.comment-submit {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.comment-submit:hover {
    opacity: 0.9;
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.comment-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.comment-content {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.comment-actions {
    display: flex;
    gap: 16px;
}

.comment-action {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: #667eea;
}

.page-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.page-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.page-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    color: #555;
}

.category-article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breadcrumb {
    margin-bottom: 10px;
    font-size: 14px;
    color: #999;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-page-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.category-page-title .total-count {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.load-more-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.load-more-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: auto;
    }

    .article-image img {
        min-height: 200px;
    }

    .article-detail-image {
        height: 300px;
    }

    .related-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 14px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 14px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .nav {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-item {
        font-size: 14px;
        padding: 5px 8px;
    }

    .main {
        padding: 24px 0;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .articles-list {
        width: 100%;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .all-articles-view {
        display: none;
    }

    .article-card {
        flex-direction: column;
        gap: 0;
        margin: 20px 0;
    }

    .article-image {
        width: 100%;
        min-height: 200px;
    }

    .article-image img {
        width: 100%;
        min-height: 200px;
        height: 200px;
    }

    .article-content-wrapper {
        padding: 16px;
    }

    .article-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .category-page-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .category-page-title .total-count {
        font-size: 14px;
    }

    .article-summary {
        font-size: 14px;
        line-height: 1.6;
    }

    .article-detail-image {
        height: 220px;
    }

    .article-detail-header,
    .article-content,
    .article-related {
        margin-left: 16px;
        margin-right: 16px;
    }

    .article-detail-header {
        padding-top: 20px;
    }

    .related-articles {
        grid-template-columns: 1fr;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .category-selector {
        margin-bottom: 32px;
    }

    .category-selector h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .category-grid {
        display: grid;
        gap: 20px;
    }

    .category-card {
        background: #fff;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .category-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .category-card-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a2e;
    }

    .category-card-count {
        font-size: 13px;
        color: #666;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        padding: 5px 12px;
        border-radius: 12px;
        font-weight: 600;
    }

    .category-article-item {
        display: flex;
        gap: 10px;
        padding: 10px;
        border-radius: 10px;
        transition: all 0.2s ease;
        background: #fafbfc;
    }

    .category-article-item:hover {
        background: #f0f4ff;
        transform: translateX(4px);
    }

    .category-article-item img {
        width: 96px;
        height: 72px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .category-article-item .article-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    .category-article-item .article-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a2e;
        line-height: 1.4;
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .category-article-item .article-time {
        font-size: 12px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .view-all-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        padding: 12px 24px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        width: 100%;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .view-all-btn::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.2s ease;
    }

    .view-all-btn:hover::after {
        transform: translateX(4px);
    }

    .footer {
        padding: 50px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.carousel-wrapper {
}

.category-card-more {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-card-more:hover {
    color: #764ba2;
    text-decoration: underline;
}

.carousel-container {
    position: relative;
    background: #fafbfc;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    min-height: 280px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-slide-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.carousel-slide-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.carousel-slide-time {
    font-size: 12px;
    color: #999;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 24px;
    border-radius: 4px;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}
