﻿.top-banner {
    height: auto;
    min-height: auto;
    padding-bottom: 50px;
}

    .top-banner h1 {
        font-size: 28px;
    }

    .top-banner p {
        font-size: 15px;
    }

.indu_left_section {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.indu_right_section {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}


.indu_category_nav {
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
    height: auto;
    overflow: auto;
}

.indu_category_nav-small {
    height: 340px;
    overflow: hidden;
}

.indu_category_title {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e5e5;
    margin-top: 20px;
}

.indu_category_title_h2 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 10px;
}

.indu_category_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.indu_category_item {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

    .indu_category_item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

    .indu_category_item a {
        color: #495057;
        text-decoration: none;
        font-size: 14px;
        display: block;
    }

        .indu_category_item a:hover {
            color: #007bff;
        }


.jb-items {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .jb-items:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

    .jb-items h2 {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 10px;
    }

        .jb-items h2 a {
            color: #2c3e50;
            text-decoration: none;
        }

            .jb-items h2 a:hover {
                color: #007bff;
            }

    .jb-items img {
        border-radius: 4px;
        margin-bottom: 10px;
    }


.indu_widget {
    margin-bottom: 25px;
}

.indu_widget_title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #007bff;
    position: relative;
}

    .indu_widget_title:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: #28a745;
    }


.indu_hot_industry ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.indu_hot_industry li {
    padding: 8px 0;
    border-bottom: 1px dashed #e5e5e5;
}

    .indu_hot_industry li:last-child {
        border-bottom: none;
    }

.indu_hot_industry a {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .indu_hot_industry a:before {
        content: '•';
        color: #007bff;
        font-weight: bold;
        margin-right: 8px;
    }

    .indu_hot_industry a:hover {
        color: #007bff;
    }


.indu_related_guests .indu_guest_item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e5e5e5;
}

    .indu_related_guests .indu_guest_item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.indu_related_guests .indu_guest_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

    .indu_related_guests .indu_guest_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.indu_related_guests .indu_guest_info h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
}

    .indu_related_guests .indu_guest_info h4 a {
        color: #2c3e50;
        text-decoration: none;
    }

        .indu_related_guests .indu_guest_info h4 a:hover {
            color: #007bff;
        }

.indu_related_guests .indu_guest_info p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}


.indu_hot_articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: hot-counter;
}

.indu_hot_articles li {
    counter-increment: hot-counter;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e5e5;
    display: flex;
    align-items: flex-start;
}

    .indu_hot_articles li:last-child {
        border-bottom: none;
    }

    .indu_hot_articles li:before {
        content: counter(hot-counter);
        width: 22px;
        height: 22px;
        background: #007bff;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .indu_hot_articles li:nth-child(1):before {
        background: #dc3545;
    }

    .indu_hot_articles li:nth-child(2):before {
        background: #fd7e14;
    }

    .indu_hot_articles li:nth-child(3):before {
        background: #ffc107;
        color: #212529;
    }

.indu_hot_articles a {
    color: #495057;
    text-decoration: none;
    flex-grow: 1;
    line-height: 1.4;
}

    .indu_hot_articles a:hover {
        color: #007bff;
    }

@media (max-width: 991px) {
    .indu_left_section, .indu_right_section {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .indu_category_list {
        gap: 8px;
    }

    .indu_category_item {
        padding: 6px 10px;
    }

    .indu_related_guests .indu_guest_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .indu_related_guests .indu_guest_img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
