/* ===== 内页通用样式 ===== */

/* 内页主内容区域 */
.inner-main {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: calc(100vh - 140px);
}

/* 面包屑导航 */
.breadcrumb-wrapper {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3498db;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: #3498db;
}

/* 页面标题区域 */
.page-header-wrapper {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 50px 0;
    color: white;
}

.page-header {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 内容布局 */
.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* 左侧边栏 */
.sidebar-left {
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    color: #3498db;
}

/* 侧边栏菜单 */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: #555;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-menu a:hover {
    background-color: #f0f7ff;
    color: #3498db;
    padding-left: 20px;
}

.sidebar-menu a.active {
    background-color: #3498db;
    color: white;
}

.sidebar-menu .count {
    float: right;
    font-size: 0.85rem;
    color: #999;
}

/* 品牌筛选 */
.brand-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-filter li {
    margin-bottom: 8px;
}

.brand-filter a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #555;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brand-filter a:hover {
    background-color: #f0f7ff;
}

.brand-filter img {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

/* 联系咨询组件 */
.contact-widget {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.contact-widget .sidebar-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-widget .sidebar-title i {
    color: white;
}

.contact-box {
    text-align: center;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-box strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 15px;
}

.work-time {
    font-size: 0.85rem;
    margin-bottom: 20px !important;
}

.btn-primary {
    background-color: white;
    color: #3498db;
}

.btn-primary:hover {
    background-color: #f0f7ff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* 内容区域 */
.content-area {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 筛选工具栏 */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.filter-left {
    color: #666;
}

.filter-left strong {
    color: #3498db;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-select {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select label {
    color: #666;
    font-size: 0.9rem;
}

.sort-select select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background-color: #3498db;
    border-color: #3498db;
    color: white;
}

/* 产品网格 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.product-tag.hot {
    background-color: #e74c3c;
}

.product-tag.new {
    background-color: #2ecc71;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #3498db;
}

.product-brand {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 700;
}

.btn-inquire {
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.btn-inquire:hover {
    background-color: #2980b9;
}

/* 分页 */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: #3498db;
    color: #3498db;
}

.pagination a.active {
    background-color: #3498db;
    border-color: #3498db;
    color: white;
}

.pagination .prev,
.pagination .next {
    padding: 0 15px;
}

.pagination .ellipsis {
    border: none;
}

.page-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.page-info input {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.btn-go {
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-go:hover {
    background-color: #2980b9;
}

/* ===== 文章详情页样式 ===== */
.article-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2,
.article-content h3 {
    color: #2c3e50;
    margin: 30px 0 15px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* 文章内容表格样式 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.article-content table th,
.article-content table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    word-break: break-all;
}

.article-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.article-content table tr:nth-child(even) {
    background-color: #fafafa;
}

.article-content table tr:hover {
    background-color: #f0f7ff;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* 相关文章 */
.related-articles {
    margin-top: 50px;
}

.related-articles h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-item-content {
    padding: 15px;
}

.related-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-item h4 a {
    color: #2c3e50;
}

.related-item h4 a:hover {
    color: #3498db;
}

.related-item .date {
    font-size: 0.8rem;
    color: #999;
}

/* ===== 关于页面样式 ===== */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 团队介绍 */
.team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-info p {
    color: #999;
    font-size: 0.9rem;
}

/* ===== 联系页面样式 ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-text h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 联系表单 */
.contact-form-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #2980b9;
}

/* ===== 帮助中心样式 ===== */
.help-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.help-category {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.help-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon i {
    font-size: 1.8rem;
    color: white;
}

.help-category h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.help-category p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ列表 */
.faq-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h4 {
    font-size: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question h4 i {
    color: #3498db;
}

.faq-question .arrow {
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* ===== 询价页面样式 ===== */
.quote-section {
    padding: 60px 0;
}

.quote-intro {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.quote-intro h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.quote-intro p {
    color: #666;
    line-height: 1.6;
}

.quote-form {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-item input,
.product-item select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-remove {
    width: 36px;
    height: 36px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-remove:hover {
    background-color: #c0392b;
}

.btn-add-product {
    padding: 12px 24px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-add-product:hover {
    background-color: #27ae60;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left {
        order: 2;
    }
    
    .content-area {
        order: 1;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .help-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .inner-main {
        padding-top: 100px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-header-wrapper {
        padding: 35px 0;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .filter-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .related-list {
        grid-template-columns: 1fr;
    }
    
    .help-categories {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        padding: 25px;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.6rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .content-area {
        padding: 20px;
    }
}

/* ===== 荣誉展厅样式 ===== */
.honors-intro {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border-radius: 12px;
    padding: 40px;
    color: white;
    margin: 30px 0;
    text-align: center;
}

.honors-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.honors-intro p {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.honor-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.honor-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.15);
    border-color: #3498db;
}

.honor-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f8f9fa;
    cursor: pointer;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honor-item:hover .honor-image img {
    transform: scale(1.05);
}

.honor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,62,80,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.honor-item:hover .honor-overlay {
    opacity: 1;
}

.honor-overlay i {
    font-size: 2.5rem;
    color: white;
}

.honor-info {
    padding: 18px 20px;
    text-align: center;
}

.honor-title {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.honor-date {
    font-size: 0.85rem;
    color: #999;
}

.honor-date i {
    margin-right: 5px;
}

/* 图片灯箱浮窗 */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.lightbox-close {
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.lightbox-prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.lightbox-next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .honors-intro {
        padding: 25px 20px;
    }

    .honors-intro h2 {
        font-size: 1.4rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -45px;
    }
}

@media (max-width: 576px) {
    .honors-grid {
        grid-template-columns: 1fr;
    }
}
